:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-db8443c */.services-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    background: url('https://images.unsplash.com/photo-1604335399105-a0c585fd81a1') center/cover no-repeat;
    border-radius: 30px;
    overflow: hidden;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,0.9),
        rgba(30,41,59,0.75)
    );
}

.services-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: white;
}

.services-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.services-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.services-btn {
    display: inline-block;
    padding: 15px 28px;
    background: white;
    color: #0f172a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
}

@media (max-width:768px){
    .services-content h1{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9ed6d66 */.all-services {
    padding: 100px 7%;
    background: #f8fafc;
}

.all-services-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.all-services-label {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    font-size: 14px;
}

.all-services-header h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
}

.all-services-header p {
    color: #64748b;
    line-height: 1.8;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.service-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 15px;
}

.service-box p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

/* Responsive */
@media (max-width:991px){
    .all-services-grid{
        grid-template-columns:1fr;
    }

    .all-services-header h2{
        font-size:34px;
    }
}/* End custom CSS */