﻿:root {
    --corporate-blue: #0b1329;
    --industrial-yellow: #f59e0b;
}

.bg-corporate-blue {
    background-color: var(--corporate-blue) !important;
}

/* Pro Hero Section with Real High-Resolution Industrial Manufacturing Plant Background */
.pro-hero {
    background: url('/images/img1.jpg') no-repeat center center;
    background-size: cover;
    min-height: 85vh;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 41, 0.92) 0%, rgba(15, 23, 42, 0.82) 100%);
    z-index: 1;
}

/* Typography Enhancements */
.fw-extrabold {
    font-weight: 800;
}

.tracking-wide {
    letter-spacing: 1px;
}

/* Product Cards Pro Styling */
.product-card {
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 1.5rem 3rem rgba(11, 19, 41, 0.15) !important;
    }

.hover-warning:hover {
    color: #f59e0b !important;
    transition: color 0.2s ease;
}

/* Pro Heading Enhancements */
.tracking-tight {
    letter-spacing: -0.5px;
}

.text-glow {
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
}

.bg-warning-subtle {
    background-color: rgba(245, 158, 11, 0.1) !important;
}

/* --- Carousel Specific Styles --- */
.product-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.product-carousel-item {
    flex: 0 0 33.3333%; /* Default Desktop: 3 cards visible */
}

@media (max-width: 992px) {
    .product-carousel-item {
        flex: 0 0 50%; /* Tablet: 2 cards visible */
    }
}

@media (max-width: 576px) {
    .product-carousel-item {
        flex: 0 0 100%; /* Mobile: 1 card visible */
    }
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--corporate-blue);
    color: var(--industrial-yellow);
    border: 2px solid var(--industrial-yellow);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    .carousel-nav-btn:hover {
        background-color: var(--industrial-yellow);
        color: var(--corporate-blue);
        transform: translateY(-50%) scale(1.05);
    }

.prev-btn {
    left: -5px;
}

.next-btn {
    right: -5px;
}
