/* Products Page Styles */

/* Page Header */
/* .page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services-overview.jpg') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-header .breadcrumb-item a {
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: white;
} */

/* Products Overview Section */
.products-overview .features-list {
    margin-top: 2rem;
}

.products-overview .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.products-overview .feature-item i {
    color: var(--bs-primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Detailed Products Section */
.product-detailed-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.product-detailed-card:hover {
    transform: translateY(-5px);
}

.product-info {
    text-align: center;
    padding: 2rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-type {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-features-detailed {
    padding: 1rem;
}

.feature-group {
    margin-bottom: 1.5rem;
}

.feature-group h4 {
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-group h4 i {
    margin-right: 0.5rem;
}

.feature-group ul {
    list-style: none;
    padding-left: 0;
}

.feature-group ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-group ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    opacity: 0.5;
}

.product-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Common Features Section */
.common-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.common-feature-card:hover {
    transform: translateY(-5px);
}

.common-feature-card i {
    font-size: 2.5rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.common-feature-card h4 {
    margin-bottom: 1rem;
    color: var(--bs-primary);
}

.common-feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.common-feature-card ul li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--bs-primary), #2980b9);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-info {
        margin-bottom: 2rem;
    }
    
    .product-cta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .common-feature-card {
        margin-bottom: 1rem;
    }
}
