/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

/* Hero Section */
.hero {
    background-color: #007bff;
    color: white;
    padding: 100px 0;
    text-align: center; /* Centers the text and button */
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px; /* Adds space between text and button */
}

/* Service Cards */
.service-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}
.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}
.service-card .card-title i {
    font-size: 1.5rem;
    color: #007bff;
    margin-right: 0.5rem;
}
.service-card .card-text {
    margin-bottom: 1rem;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Buttons */
.btn-primary, .btn-outline-primary {
    transition: background-color 0.3s, color 0.3s;
}
.btn-primary:hover, .btn-outline-primary:hover {
    background-color: #0056b3;
    color: white;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}