/* Custom styles for service pages */

/* Blurb Minimal Component */
.blurb-minimal {
    position: relative;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blurb-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blurb-minimal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #71c2ff;
}

.blurb-minimal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Box Icon Modern Component */
.box-icon-modern {
    position: relative;
    padding: 30px 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.box-icon-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.box-icon-modern-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #71c2ff;
    transition: all 0.3s ease;
}

.box-icon-modern-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.box-icon-modern-content {
    margin-top: 15px;
}

/* Box List Component */
.box-list-wrap {
    margin-top: 30px;
}

.box-list {
    display: flex;
    margin-bottom: 25px;
}

.box-list:last-child {
    margin-bottom: 0;
}

.box-list-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
/*    color: #71c2ff;*/
    margin-right: 20px;
    line-height: 1;
}

.box-list-content h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Box Icon Classic Component */
.box-icon-classic {
    display: flex;
    margin-bottom: 30px;
}

.box-icon-classic-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: #71c2ff;
    margin-right: 20px;
    line-height: 1;
}

.box-icon-classic-main {
    flex-grow: 1;
}

.box-icon-classic-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.box-icon-classic-content {
    margin-top: 10px;
}

/* Box CTA Component */
.box-cta {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #71c2ff;
}

.box-cta-inline {
    display: flex;
    align-items: center;
}

.box-cta-inner h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3038;
}

/* Enhanced Box-Minimal Styles for Better Look & Feel */
.box-minimal-border {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.box-minimal-border:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .blurb-minimal, 
    .box-icon-modern,
    .box-cta {
        margin-bottom: 20px;
    }
    
    .box-list-icon,
    .box-icon-classic-icon {
        font-size: 2rem;
    }
    
    .box-cta-inline {
        display: block;
    }
}

/* Animation enhancements for wow.js animations */
.wow {
    /*visibility: hidden;*/
}

/* Additional heading styles */
.heading-decorated {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

    .heading-decorated:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #FF6229;
    }

/* Center heading decoration when text is centered */
.text-center .heading-decorated:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section enhancements */
.section-lg {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    .section-lg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
