/* General Body Styling */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main {
    flex: 1;
    /* Add padding to avoid content touching the navbar */
    padding-top: 1rem;
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    font-size: 2.75rem;
    color: #333;
}

.hero-section {
    background: #f8f9fa;
    padding: 5rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    margin-top: -1rem; /* Pull up to navbar */
}

.hero-section h1 {
    font-weight: 700;
    color: #000;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Feature Box Styling */
.feature-box {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-box h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Card Styling for Case Studies */
.case-study-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.case-study-card .card-title {
    color: #0d6efd;
    font-weight: 600;
}

/* Contact Form */
.contact-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info p strong {
    color: #333;
}

.contact-info a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer a {
    transition: color 0.2s ease-in-out;
}

footer a:hover {
    color: #aaa !important;
}
