.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-fccfe59 *//* ==========================================
   SERVICES SECTION CONTAINER
========================================== */

.sf-services-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fffdf9;
    box-sizing: border-box;
}

.sf-services-container {
    max-width: 1320px;
    margin: 0 auto;
    background-color: #fcf9f2;
    border: 1px solid #e2d5bd;
    border-radius: 24px;
    padding: 40px 30px 45px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* ==========================================
   HEADER STYLE (OUR SERVICES)
========================================== */

.sf-services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.sf-services-header h2 {
    color: #053b2d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.sf-header-line {
    width: 80px;
    height: 2px;
    position: relative;
}

.sf-header-line.left {
    background: linear-gradient(90deg, transparent, #c88a22);
}

.sf-header-line.right {
    background: linear-gradient(90deg, #c88a22, transparent);
}

.sf-header-line::after {
    content: "◆";
    position: absolute;
    top: 50%;
    font-size: 8px;
    color: #c88a22;
    transform: translateY(-50%);
}

.sf-header-line.left::after { right: 0; }
.sf-header-line.right::after { left: 0; }

/* ==========================================
   SERVICES GRID (6 COLUMNS DESKTOP)
========================================== */

.sf-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 35px;
    position: relative;
}

/* ==========================================
   CARD & BORDERS
========================================== */

.sf-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.sf-service-card:hover {
    transform: translateY(-3px);
}

/* Vertical Divider Lines */
.sf-service-card:not(:nth-child(6n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5%;
    height: 90%;
    width: 1px;
    background-color: #e5dccb;
}

/* Horizontal Divider ONLY for the First Row (Cards 1 to 6) */
.sf-service-card:nth-child(-n+6)::before {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #e5dccb;
}

/* Clear any unintended border on bottom row */
.sf-service-card:nth-child(n+7)::before {
    display: none !important;
}

/* ==========================================
   ICONS & TEXT
========================================== */

.sf-service-icon {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 38px;
    color: #053b2d;
}

.sf-service-icon.gold-icon {
    color: #c88a22;
}

.sf-service-card h3 {
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 8px 0;
}

.sf-service-desc {
    color: #666666;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* Tablet (3 Columns) */
@media (max-width: 1024px) {
    .sf-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sf-service-card::after,
    .sf-service-card::before {
        display: none !important;
    }

    /* Vertical Dividers for 3 Columns */
    .sf-service-card:not(:nth-child(3n))::after {
        display: block !important;
    }

    /* Horizontal Dividers for Rows 1, 2, 3 (not last row) */
    .sf-service-card:nth-child(-n+9)::before {
        display: block !important;
        bottom: -18px;
    }
}

/* Mobile (2 Columns) */
@media (max-width: 650px) {
    .sf-services-container {
        padding: 30px 15px;
    }

    .sf-services-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .sf-service-card::after,
    .sf-service-card::before {
        display: none !important;
    }

    /* Vertical Divider */
    .sf-service-card:nth-child(odd)::after {
        display: block !important;
    }

    /* Horizontal Divider for all except last 2 */
    .sf-service-card:nth-child(-n+10)::before {
        display: block !important;
        bottom: -12px;
    }

    .sf-service-card h3 {
        font-size: 13.5px;
    }

    .sf-service-icon {
        font-size: 32px;
        height: 42px;
    }

    .sf-service-desc {
        font-size: 11.5px;
    }
}/* End custom CSS */