﻿/* === Default Site Styles === */

/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

/* === Services Section Styles === */
.services-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

    .services-section .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

.service-box {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 200px;
    transition: transform 0.3s ease;
}

    .service-box:hover {
        transform: translateY(-5px);
    }

    .service-box .icon {
        font-size: 36px;
        color: #007bff;
        margin-bottom: 15px;
    }

    .service-box .title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .service-box .description {
        font-size: 14px;
        color: #666;
    }

.container h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-top: 10px;
}

.container p {
    font-size: 0.95rem;
}
