/* Hero Section */
        .service-hero {
            background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
                radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .service-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
                radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent),
                radial-gradient(1px 1px at 25% 80%, rgba(13, 159, 232, 0.06), transparent),
                radial-gradient(1px 1px at 70% 70%, rgba(237, 131, 33, 0.1), transparent);
            background-size: 400px 300px;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(-10px) translateY(-5px); }
            50% { transform: translateX(5px) translateY(-10px); }
            75% { transform: translateX(-5px) translateY(5px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 20px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            font-size: 14px;
            color: var(--dark-text-secondary);
        }

        .breadcrumb a {
            color: var(--dark-text-secondary);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--brand-orange-light);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50px;
            padding: 8px 20px;
            margin-bottom: 24px;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-text-secondary);
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 400;
            color: var(--dark-text-primary);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-highlight {
            font-weight: 500;
            background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-orange-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 18px;
            color: var(--dark-text-secondary);
            margin-bottom: 40px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 600;
            color: var(--brand-orange-light);
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--dark-text-secondary);
        }

        .hero-visual {
            position: relative;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(13, 159, 232, 0.1) 0%, rgba(237, 131, 33, 0.1) 100%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .visual-icon {
            font-size: 8rem;
            color: var(--brand-blue-light);
            position: relative;
            z-index: 2;
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Features Section */
        .features-section {
            background: #ffffff;
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .process-section h2.section-title {
    color: var(--dark-text-primary);
}

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .process-section .section-subtitle{
            color: var(--dark-text-secondary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            background: #ffffff;
            border: 1px solid #f1f3f4;
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-orange-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 24px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Process Section */
        .process-section {
            background: radial-gradient(ellipse at top left, rgb(13 143 208 / 15%) 0%, transparent 40%),
                radial-gradient(ellipse at top right, rgb(217 111 13 / 18%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom left, rgb(11 101 147 / 12%) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgb(131 67 6 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 25%, #1a2030 50%, var(--dark-bg-secondary) 75%, var(--dark-bg-primary) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .process-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(1px 1px at 15% 20%, rgba(13, 159, 232, 0.1), transparent),
                radial-gradient(1px 1px at 85% 30%, rgba(237, 131, 33, 0.08), transparent);
            background-size: 400px 300px;
            animation: float 20s ease-in-out infinite;
            pointer-events: none;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

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

        .process-step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-blue-light) 0%, var(--brand-orange-light) 100%);
        }

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

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
            margin: 0 auto 24px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-text-primary);
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 14px;
            color: var(--dark-text-secondary);
            line-height: 1.6;
        }

        /* Technology Stack Section */
        .tech-stack-section {
            background: #f8f9fa;
            padding: 100px 0;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .tech-item {
            background: white;
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #f1f3f4;
            transition: all 0.3s ease;
        }

        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .tech-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
            color: var(--brand-blue-text);
        }

        .tech-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        

        /* FAQ Section */
        .faq-section {
            background: #f8f9fa;
            padding: 100px 0;
        }

        .faq-grid {
            display: grid;
            gap: 20px;
            margin-top: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            overflow: hidden;
        }

        .faq-question {
            background: none;
            border: none;
            padding: 24px 32px;
            width: 100%;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8f9fa;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: var(--brand-orange-text);
        }

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

        .faq-answer {
            padding: 0 32px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 0 32px 24px;
        }

        .faq-answer-content {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Final CTA Section */
        .final-cta-section {
            /* background: linear-gradient(135deg, var(--dark-bg-primary) 0%, var(--dark-bg-secondary) 100%); */
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .cta-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            background: var(--brand-orange-text);
            color: white;
            padding: 20px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--brand-orange-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(214, 116, 22, 0.4);
            color: white;
            text-decoration: none;
        }

        .cta-button-secondary {
            background: transparent;
            color: var(--text-primary) !important;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-button-secondary:hover {
            border-color: var(--text-primary);
            background: transparent;
            color: var(--text-primary) !important;
            box-shadow: none;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-step::after {
                display: none;
            }

            .tech-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .case-study-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .case-study {
                min-width: 100%;
                width: 100%;
            }

            .case-study-image {
                height: 200px;
                margin-bottom: 20px;
            }

            .case-study-results {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: none;
            }

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

        @media (max-width: 767px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .case-study-results {
                grid-template-columns: 1fr;
                gap: 12px;
            }

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

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-button-large,
            .cta-button-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
.final-cta-section {
	padding: 50px 0 120px;
}

.main-content > section:first-of-type {
  padding-top: 110px;
}

@media (max-width: 765px) {
  .main-content > section:first-of-type {
    padding-top: 100px;
  }
}
@media (max-width: 450px) { 
	.tech-grid {
		gap: 12px;
	}
	.tech-item {
		padding: 20px 12px;
	}
	.tech-icon {
		width: 40px;
		height: 40px;
		margin: auto auto 12px;
		font-size: 2rem;
	}
}