/* EgyptServers CRM Public Styles */
.es-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.es-service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.es-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.es-service-card h3 {
    margin: 0 0 1rem;
    color: #1a73e8;
}

.es-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.es-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1a73e8;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.es-btn:hover {
    background: #1557b0;
}
