/* Bouquet of Services Stylesheet - Left-Aligned Premium Redesign */

.bos-services-container {
    width: 100%;
    box-sizing: border-box;
}

.bos-services-grid {
    display: grid;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0;
    box-sizing: border-box;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

@media (min-width: 1200px) {
    .bos-services-grid {
        grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns as requested */
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .bos-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .bos-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Service Card Design - Left Aligned Corporate Premium */
.bos-service-card {
    background: #ffffff;
    border: 1px solid rgba(25, 39, 48, 0.07);
    border-radius: 24px;
    padding: 32px 28px;
    text-align: left; /* Left-aligned content */
    box-shadow: 0 8px 30px rgba(25, 39, 48, 0.015);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align flex items to the left */
    box-sizing: border-box;
    position: relative;
}

.bos-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(25, 39, 48, 0.05);
    border-color: rgba(0, 137, 228, 0.25); /* Brand blue highlight on hover */
}

/* Icon Wrapper Design - Small Top-Left Circle */
.bos-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px; /* Rounded square icon wrapper */
    background-color: rgba(0, 137, 228, 0.08); /* Soft blue tint */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: #0089e4;
}

.bos-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.bos-service-card:hover .bos-icon-wrapper {
    background-color: #0089e4;
    color: #ffffff;
    transform: scale(1.05);
}

/* Service Title Styling - Left Aligned */
.bos-service-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #192730; /* Dark Navy matching branding */
    margin: 0 0 12px 0;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.bos-service-card:hover .bos-service-title {
    color: #0089e4; /* Brand Blue on hover */
}

/* Service Sub-heading (Sub-services List) - Left Aligned */
.bos-service-subheading {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important; /* Normal regular weight */
    font-style: normal !important;
    line-height: 1.65 !important;
    color: #5c6469 !important; /* Balanced neutral grey */
    margin: 0 0 24px 0 !important;
    text-align: left !important;
    flex-grow: 1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Service Link Styling (Learn More) - Bottom Right Aligned */
.bos-service-link {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0089e4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Push to bottom */
    align-self: flex-end; /* Align to bottom-right of the card */
    padding-bottom: 2px;
}

.bos-service-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.bos-service-card:hover .bos-service-link {
    color: #006db4;
}

.bos-service-card:hover .bos-service-link svg {
    transform: translateX(4px);
}

.bos-no-services {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #6c757d;
    padding: 30px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px dashed #dee2e6;
}
.bos-no-services a {
    color: #0089e4;
    text-decoration: none;
}
.bos-no-services a:hover {
    text-decoration: underline;
}
