/*!
Theme Name: lovinghands
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: lovinghands
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

lovinghands is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 .contact-socialS {
    margin-top: 20px;
}
.social a {
    background: #eecbeb;
    margin: 10px;
    padding: 7px;
    border-radius: 20px;
    color: #6A1B9A;
    list-style: none;
    text-decoration: none;
    padding-top: 5px 10px 5px;
    text-align: center;
    /* margin: auto; */
}

.search-form input.search-field {
    padding: 8px;
    border-radius: 20px;
    

}

input.search-submit:hover {
    background: linear-gradient(135deg, #FF6FB5, #9C27B0);
    transform: translateY(-2px);
}
input.search-submit {
    padding: 8px;
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #FF6FB5, #9C27B0);
    border: 1px solid ;
}
input.search-field {
    border: 1px solid #a318aa;
}

.post-views.content-post.entry-meta.load-static {
    margin-left: -15px !important;
}


/* ========== SERVICE CARD FIXED HEIGHT WITH BOTTOM BUTTON ========== */

.service-card {
    display: flex;
    flex-direction: column;
    height: 550px; /* Fixed height */
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(156,39,176,0.1);
}

/* Icon circle - fixed size */
.service-card .icon-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #F3E5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Title - fixed */
.service-card h3 {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 700;
    color: #5A1670;
    margin-bottom: 15px;
}

/* Description - takes remaining space (pushes button down) */
.service-card p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #4B4453;
    margin-bottom: 0;
    overflow: hidden;
}

/* Button - always at bottom */
.service-card .service-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #9C27B0, #6A1B9A);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    margin-top: 20px;
    width: fit-content;
    align-self: center;
}

.service-card .service-btn:hover {
    background: linear-gradient(135deg, #FF6FB5, #9C27B0);
    gap: 12px;
    transform: translateY(-2px);
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(156,39,176,0.15);
}