/* Start custom CSS for html, class: .elementor-element-eb49706 */:root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --text: #333;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
            --radius: 10px;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
      
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560448076-3f6f44b6b4a4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            color: white;
            padding: 12rem 0 8rem;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: white;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        
        /* Section Styles */
        .section {
            padding: 6rem 0;
        }
        
        .section-light {
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .benefit-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: var(--secondary);
            transition: var(--transition);
        }
        
        .benefit-card:hover:before {
            height: 100%;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-card h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
        }
        
        .service-header {
            background: var(--gradient);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
        }
        
        .service-header i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .service-body {
            padding: 2rem;
        }
        
        .service-body ul {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .service-body li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }
        
        .service-body li:before {
            content: '✓';
            color: var(--secondary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Process */
        .process-container {
            position: relative;
            margin-top: 4rem;
        }
        
        .process-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            z-index: 1;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .step {
            flex: 1;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: white;
            border: 3px solid var(--primary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 1.8rem;
            position: relative;
            transition: var(--transition);
        }
        
        .step:hover .step-number {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .step h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }
        
        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            font-size: 6rem;
            color: var(--secondary);
            opacity: 0.1;
            position: absolute;
            top: 20px;
            left: 20px;
            line-height: 1;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            margin-bottom: 1.8rem;
            font-style: italic;
            line-height: 1.8;
            color: #555;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .testimonial-role {
            color: var(--secondary);
            font-size: 0.9rem;
        }
        
        /* FAQ */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }
        
        .faq-item {
            margin-bottom: 2rem;
            background: white;
            padding: 1.8rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .faq-question i {
            color: var(--secondary);
            margin-right: 12px;
            font-size: 1.2rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 6rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 2.8rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            position: relative;
            z-index: 2;
        }
          
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .process-steps {
                flex-direction: column;
            }
            
            .process-line {
                display: none;
            }
            
            .step {
                margin-bottom: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 0.8rem 0.8rem;
            }
            
            .hero {
                padding: 9rem 0 5rem;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .benefit-card, .service-card, .testimonial-card {
                padding: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }/* End custom CSS */