/* Start custom CSS for html, class: .elementor-element-31bff17 */* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--dark);
            padding: 12px 30px;
            margin-top: 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: #e0b42f;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: rgb(151, 150, 226);
            position: relative;
        }
        
        h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            color: rgb(132, 132, 229);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .service-content ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .service-content li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .service-content li:before {
            content: '✓';
            color: var(--secondary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        .why-us {
            background-color: var(--primary);
            color: white;
        }
        
        .why-us h2 {
            color: rgb(105, 112, 211);
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .benefit {
            background: rgba(0, 0, 0, 0.562);
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .benefit:hover {
            background: rgb(87, 109, 231);
            transform: translateY(-5px);
        }
        
        .benefit i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 20px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.164);
            color: rgb(38, 0, 252);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            margin-bottom: 15px;
            color: rgb(109, 109, 228);
        }
        
       
        
        @media (max-width: 768px) {
            header {
                padding: 60px 0;
            }
            
            header h1 {
                font-size: 2rem;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .step {
                margin-bottom: 40px;
            }
            
            .step:not(:last-child):after {
                content: '↓';
                position: absolute;
                bottom: -30px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 2rem;
                color: var(--primary);
            }
        }/* End custom CSS */