body {
    background-color: #f8f9fa;
}

.product-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 5rem;
    background-color: white;
    transition: transform 0.3s ease;
}

.product-card h3 a {
    color: #ffffff !important;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Fix anchor scroll position so product header text is visible */
.product-card {
    scroll-margin-top: 90px;
    /* adjust this to your navbar/header height */
}

.product-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    position: relative;
}

.product-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-body {
    padding: 2rem;
}

.product-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.carousel-inner {
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 15px;
}

.tech-badge {
    border: 1px solid var(--color-white);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-size: 0.85rem;
    color: var(--complement-color);
}

.divider {
    height: 5px;
    width: 50px;
    background: var(--complement-color);
    margin: 2rem auto;
    border-radius: 5px;
}

.section-heading {
    margin-bottom: 3rem;
    position: relative;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--complement-color);
    border-radius: 2px;
}

.catalogue_button {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 25px;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 70%, #60a5fa 100%);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.catalogue_button:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
}

.catalogue_button i {
    margin-right: 8px;
}