/* --- GLOBAL (Synced with Homepage) --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

body { 
    overflow-x: hidden; 
    color: #1a1a1a; 
    background: #fff; 
    line-height: 1.6; 
    /* Matches the 100px navbar height to prevent content overlap */
    padding-top: 100px; 
}



/* --- SERVICES HERO --- */
.services-hero {
padding: 80px 8% 60px;
    text-align: center;
}

.services-grid-section {
    background-color: #ffffff;
    padding: 60px 8% 120px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- SERVICE CARDS --- */
.service-card {
    position: relative;
    padding: 80px 45px 50px; 
    background: #ffffff;
    border-radius: 40px; 
    border: 1px solid #f0f0f0;
    border-bottom: 10px solid #82b436; 
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

/* The Ghost Number (01, 02, etc) */
.service-card::before {
    content: attr(data-number);
    position: absolute;
    top: 10px;
    left: 40px;
    font-size: 8rem;
    font-weight: 900;
    color: #f1f1f1; 
    z-index: -1;
    line-height: 1;
    transition: color 0.4s ease;
}

.service-card .icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.4s ease;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: color 0.4s ease;
}

/* Hover Transformation */
.service-card:hover {
    transform: translateY(-20px);
    background-color: #82b436; 
    border-color: #82b436;
    box-shadow: 0 40px 80px rgba(130, 180, 54, 0.35);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-list li {
    color: #ffffff !important;
}

.service-card:hover::before {
    color: rgba(255, 255, 255, 0.15);
}

.service-list {
    list-style: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
    margin-top: auto;
}

.service-list li {
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: #333;
    transition: color 0.4s ease;
}

.service-list li::before {
    content: '✓';
    color: #82b436;
    margin-right: 12px;
    font-weight: 900;
}

.service-card:hover .service-list {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .service-list li::before {
    color: #ffffff;
}






