
        :root {
            --primary: #ff6b35;
            --primary-dark: #e55a2b;
            --secondary: #fbbf24;
            --accent: #00d9ff;
            --bg-black: #000000;
            --bg-dark: #0a0a0a;
            --surface: #1a1a1a;
            --surface-light: #252525;
            --border: #2a2a2a;
            --text: #ffffff;
            --text-muted: #d0d0d0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-black);
            color: var(--text);
            overflow-x: hidden;
        }
        
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
         /* Navbar */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
            padding-top: 20px;
            padding-bottom: 20px;
        }
        
        .navbar-custom.scrolled {
            box-shadow: 0 4px 30px rgba(255, 107, 53, 0.1);
            border-bottom-color: var(--primary);
        }
        
        .navbar-brand-custom {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--text);
            text-decoration: none;
        }
        
        .logo-box {
            width: 200px;
            height: 70px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 1.3rem;
           
        }


        .logo-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
        }
        
        .nav-link-custom {
            color: black !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-link-custom:hover,
        .nav-link-custom.active {
            color: var(--primary) !important;
        }
        
        .nav-link-custom:hover::after,
        .nav-link-custom.active::after {
            width: 80%;
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
            color: white;
        }
        
        /* Hero Section */
        .services-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
                        var(--bg-black);
            margin-top: 80px;
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.3;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .hero-glow-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            left: -200px;
        }
        
        .hero-glow-2 {
            width: 700px;
            height: 700px;
            background: #dc2626;
            bottom: -250px;
            right: -250px;
            animation-delay: 2s;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.1); }
        }
        
        .badge-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.3);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 7vw, 6rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: var(--text);
            text-shadow: 0 0 80px rgba(255, 107, 53, 0.3);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text);
            margin-bottom: 3rem;
            max-width: 700px;
            line-height: 1.6;
        }
        
        /* Stats Grid */
        .stats-grid {
            margin-top: 5rem;
            padding: 3rem;
            background: rgba(26, 26, 26, 0.5);
            border: 1px solid var(--border);
            border-radius: 24px;
            backdrop-filter: blur(20px);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--text);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Section Commons */
        .section-dark {
            background: var(--bg-dark);
            padding: 100px 0;
        }
        
        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(255, 107, 53, 0.1);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--text);
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text);
            margin-bottom: 4rem;
            max-width: 700px;
            line-height: 1.8;
        }
        
        /* Service Cards */
        .service-card {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 28px;
            padding: 3rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            cursor: pointer;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: translateX(-100%);
            transition: transform 0.5s ease;
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: var(--primary);
            box-shadow: 0 30px 70px rgba(255, 107, 53, 0.3);
            background: var(--surface-light);
        }
        
        .service-card:hover::before {
            transform: translateX(0);
        }
        
        .service-card:hover::after {
            opacity: 1;
        }
        
        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
        }
        
        .service-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
            position: relative;
            z-index: 1;
        }
        
        .service-description {
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }
        
        .feature-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text);
            font-size: 1rem;
        }
        
        .feature-check {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.75rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        
        /* Process Steps */
        .process-step {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            height: 100%;
        }
        
        .process-step:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
            background: var(--surface-light);
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            transition: transform 0.3s ease;
        }
        
        .process-step:hover .step-number {
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }
        
        .step-description {
            color: var(--text);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Interactive Feature Cards */
        .feature-card-wrapper {
            perspective: 1000px;
            height: 400px;
        }
        
        .feature-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .feature-card-wrapper:hover .feature-card-inner {
            transform: rotateY(180deg);
        }
        
        .feature-card-front,
        .feature-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 24px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .feature-card-front {
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            color: white;
        }
        
        .feature-card-back {
            background: var(--surface);
            border: 2px solid var(--primary);
            color: var(--text);
            transform: rotateY(180deg);
        }
        
        .card-icon-large {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 28px;
            padding: 3rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            border-color: var(--primary);
        }
        
        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            color: white;
            border: none;
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 35px 70px rgba(255, 107, 53, 0.5);
        }
        
        .featured-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            color: var(--primary);
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.75rem;
            letter-spacing: 2px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .price {
            font-size: 4rem;
            font-weight: 900;
            color: var(--text);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .pricing-card.featured .price {
            color: white;
        }
        
        .price-period {
            color: var(--text);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .pricing-card.featured .price-period {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .pricing-card.featured .feature-list li {
            color: white;
        }
        
        .pricing-card.featured .feature-check {
            background: white;
        }
        
        .pricing-card.featured .feature-check i {
            color: var(--primary);
        }
        
        /* FAQ Section */
        .faq-item {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 16px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
        }
        
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
        }
        
        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.5rem;
            color: var(--text);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 24px;
            padding: 3rem;
            display: none;
            transition: all 0.5s ease;
        }
        
        .testimonial-card.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }
        
        .author-info {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .author-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
            flex-shrink: 0;
        }
        
        .author-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.25rem;
        }
        
        .author-role {
            color: var(--text);
            margin-bottom: 0.5rem;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .slider-btn {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .slider-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
        }
        
        .slider-dots {
            display: flex;
            gap: 0.75rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: var(--border);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary);
            width: 30px;
            border-radius: 6px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
            padding: 120px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-pattern {
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 35px,
                rgba(255, 255, 255, 0.05) 35px,
                rgba(255, 255, 255, 0.05) 70px
            );
        }
        
        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1.2rem 2.5rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-white:hover {
            background: #f8f8f8;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--primary);
        }
        
        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 1.2rem 2.5rem;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-outline-white:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            color: white;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-dark);
            border-top: 1px solid var(--border);
            padding: 5rem 0 2rem;
        }
        
        .footer-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        
        .footer-link {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-link:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .stat-value {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .service-card,
            .process-step,
            .pricing-card {
                padding: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .stats-grid {
                padding: 2rem;
            }
            
            .feature-card-wrapper {
                height: auto;
            }
        }


        
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}

/* Pulsing Animation Effect */
.whatsapp-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: rgba(37, 211, 102, 0.6);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-pulse {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
  
  .whatsapp-pulse {
    width: 50px;
    height: 50px;
  }
}

/* Accessibility - Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-pulse {
    animation: none;
  }
  
  .whatsapp-float:hover {
    transform: none;
  }
}
/* closing Floating WhatsApp Button */
