.elementor-16 .elementor-element.elementor-element-a717c79{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16 .elementor-element.elementor-element-2c65c31{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.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-f966ffe *//* Helpnature Services Styling - No Yellow Used */
.hn-services-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Ubuntu', sans-serif;
    color: #333;
    line-height: 1.6;
}

.hn-services-header {
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border-bottom: 5px solid #064578; /* Updated to Dark Blue */
}

.hn-section-main-title {
    color: #064578; /* Updated to Dark Blue */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hn-intro-text {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
}

/* Grid: 2 cards per row */
.hn-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hn-service-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #4CAF50; /* Green Top Border */
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

/* Icon Circle Styling - Inside the card */
.hn-icon-circle {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #4CAF50; /* Green Circle border */
    color: #064578; /* Dark Blue Icon */
    font-size: 28px;
    transition: all 0.3s ease;
}

/* Hover effect */
.hn-service-card:hover {
    transform: translateY(-8px);
    border-top: 5px solid #064578; /* Switches to Dark Blue on Hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.hn-service-card:hover .hn-icon-circle {
    border-color: #064578;
    color: #4CAF50;
    transform: scale(1.05);
}

.hn-service-card h3 {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.hn-service-card p {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .hn-services-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */