.elementor-28948 .elementor-element.elementor-element-81ac2e9{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-28948 .elementor-element.elementor-element-d8a578f{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-d8a578f */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: rgb(240, 133, 29);
    --secondary: rgb(255, 165, 0);
    --black: #111;
    --white: #fff;
    --gray: #f5f5f5;
}

body {
    background-color: var(--white);
    color: var(--black);
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 8%;
    background-color: var(--white);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.section-header h1 span {
    color: var(--primary);
}

.section-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SERVICE CATEGORY */
.service-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.service-category.reverse {
    flex-direction: row-reverse;
}

/* TEXT SIDE */
.category-text {
    flex: 1;
    min-width: 300px;
}

.category-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.category-text h2 span {
    color: var(--primary);
}

.category-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 133, 29, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 133, 29, 0.5);
}

/* ICONS SIDE */
.category-icons {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.icon-box {
    background-color: var(--white);
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.icon-box i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.icon-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

.icon-box:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(240, 133, 29, 0.3);
}

.icon-box:hover i,
.icon-box:hover h3 {
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .category-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 60px 5%;
    }

    .section-header h1 {
        font-size: 32px;
    }

    .category-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .icon-box {
        padding: 20px 10px;
    }

    .icon-box i {
        font-size: 28px;
    }

    .icon-box h3 {
        font-size: 12px;
    }
}/* End custom CSS */