/* new/assets/css/landing-styles.css */

body {
    font-family: 'Inter', sans-serif; /* A clean, modern font */
}

/* Hero Section Styling */
.hero-section {
    background: linear-gradient(rgba(26, 32, 44, 0.7), rgba(26, 32, 44, 0.7)), url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
}

/* Category Title Styling */
.category-title {
    font-weight: 700;
    color: #2D3748; /* A darker gray for titles */
    border-left: 4px solid #3182CE; /* Bootstrap primary color */
    padding-left: 15px;
}

/* Service Card Styling */
.service-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #E2E8F0; /* Light gray border */
    border-radius: 0.75rem; /* Rounded corners */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card .card-title {
    color: #1A202C;
    font-weight: 600;
}

.service-card .btn-primary {
    background-color: #3182CE;
    border-color: #3182CE;
    transition: background-color 0.2s;
}

.service-card .btn-primary:hover {
    background-color: #2B6CB0;
    border-color: #2B6CB0;
}
