
        
        /* Services Hero */
        .services-hero {
            padding: 150px 0 100px;
            background: rgb(123 61 255 / 24%);
            position: relative;
            overflow: hidden;
            text-align: center;
            
        }
        
       
        .services-hero-container {
            position: relative;
            z-index: 1;
        }
        
        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .services-hero p {
            font-size: 0.9rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--gray-color);
        }
        
        /* Services Grid */
        .services-grid {
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #7b3dff;
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #7b3dff;
            opacity: 0;
            z-index: -1;
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: #7b3dff;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover .service-icon,
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p,
        .service-card:hover .service-features li {
            color: white;
        }
        
        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .service-header {
            padding: 40px 30px 20px;
            text-align: center;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #7b3dff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
        }
        
       
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            transition: all 0.4s ease;
        }
        
        .service-content p {
            color: var(--gray-color);
            margin-bottom: 25px;
            transition: all 0.4s ease;
            font-size: 0.9rem;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .service-features li {
            margin-bottom: 10px;
            color: var(--gray-color);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .service-features li i {
            margin-right: 10px;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-features li i {
            color: white;
        }
        
        .service-price {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .price-amount {
            color: white;
        }
        
        .price-period {
            color: var(--gray-color);
            transition: all 0.4s ease;
        }
        
        .service-card:hover .price-period {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .service-actions {
            text-align: center;
        }
        
        /* Process Section */
        .process {
            background-color: var(--light-color);
            position: relative;
        }
        
        .process-container {
            position: relative;
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #7b3dff;
            z-index: 0;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 15px;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid #7b3dff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #7b3dff;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .step-number {
            background: #7b3dff;
            color: white;
            transform: scale(1.1);
        }
        
        .step-content h3 {
            font-size: 1.0rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .step-content p {
            color: var(--gray-color);
            font-size: 0.8rem;
        }
        
        /* FAQ Section */
        .faq {
            background: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px 30px;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark-color);
        }
        
        .faq-icon {
            color: #7b3dff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }
        
        .faq-answer p {
            padding-bottom: 20px;
            color: var(--gray-color);
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
       
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .process-step {
                margin-bottom: 40px;
                display: flex;
                text-align: left;
                align-items: flex-start;
            }
            
            .step-number {
                margin: 0 20px 0 0;
                flex-shrink: 0;
            }
        }
        
        @media (max-width: 768px) {
            
            
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .services-hero {
                padding: 120px 0 60px;
            }
            
            .services-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .service-card {
                margin-bottom: 30px;
                outline: 2px solid rgb(123 61 255);
            }
        }
    