:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --secondary: #ff6b00;
    --secondary-light: #ff8c33;
    --dark: #222;
    --dark-light: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    /* Account for fixed header */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header & Navigation */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.navbar {
    padding: 10px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.8rem;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 8px;
    transition: color 0.3s;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: -80px;
    /* Compensate for fixed header */
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: revert;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonial_bg.avif');
}

.slide-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slider_2.avif');
}

.slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slider_3.avif');
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Stats Section */
.stats-section {
    background-color: #34485d;
    color: white;
    padding: 80px 0;
    position: relative;
}

.stats-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/sec_bg.avif');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    padding-right: 30px;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.expertise-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Advanced Packaging Solutions Section */
.packaging-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.packaging-solutions:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/packaging_sec.svg');
    background-size: cover;
    background-position: bottom;
    z-index: 0;
}

.product-tabs {
    position: relative;
    z-index: 1;
}

.nav-pills {
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.nav-pills .nav-link {
    background: white;
    color: var(--dark);
    margin: 0 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.product-card.featured:before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/boxes-svg.svg');
    background-size: cover;
    background-position: bottom;
}

.product-img i {
    font-size: 5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img i {
    transform: scale(1.1) rotate(5deg);
}

.product-card .card-body {
    padding: 30px;
    position: relative;
}

.product-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.product-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.spec-item {
    text-align: center;
    flex: 1;
}

.spec-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.spec-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* Product Showcase */
.product-showcase {
    margin-top: 80px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-content {
    padding: 50px;
}

.showcase-image {
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bigbox-svg.svg');
    background-size: cover;
    background-position: bottom;
}

.showcase-image i {
    font-size: 8rem;
    color: white;
    z-index: 2;
    position: relative;
}

/* Industries Section */
.industries-section {
    background-color: var(--light);
}

.industry-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/testimonial_bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    margin: 15px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text:before {
    content: "";
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--secondary);
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
}

.client-logo {
    text-align: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 150px;
    max-height: 70px;
}

/* Contact Section */
.contact-section {
    background-color: var(--light);
}

.contact-info {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.quick-contact-form {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-control {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

.footer-heading {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary);
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .nav-pills .nav-link {
        margin-bottom: 10px;
    }

    .showcase-content {
        padding: 30px;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }

    .hero-slider {
        height: 50vh;
        margin-top: -70px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .packaging-solutions {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-specs {
        flex-direction: column;
    }

    .spec-item {
        margin-bottom: 10px;
    }
}

/* Images section Start  */
:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --secondary: #28a745;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
}

.packaging-solutions .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: unset !important;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.packaging-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

.packaging-solutions:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom;
    z-index: 0;
}

.product-tabs {
    position: relative;
    z-index: 1;
}

.nav-pills {
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.nav-pills .nav-link {
    background: white;
    color: var(--dark);
    margin: 0 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-pills .nav-link.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid var(--secondary);
    position: relative;
}

.product-card.featured:before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.product-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230056b3"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="%23004494" stroke-width="1"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.product-img i {
    font-size: 5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img i {
    transform: scale(1.1) rotate(5deg);
}

.product-card .card-body {
    padding: 30px;
    position: relative;
}

.product-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 700;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.product-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.spec-item {
    text-align: center;
    flex: 1;
}

.spec-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.spec-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* Product Carousel Styles - Scoped to avoid conflicts */
.product-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-carousel-inner {
    border-radius: 0;
    height: 100%;
}

.product-carousel-item {
    height: 100%;
    position: relative;
}

.product-carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.product-carousel-control-prev,
.product-carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-carousel-control-prev,
.product-card:hover .product-carousel-control-next {
    opacity: 1;
}

.product-carousel-indicators {
    bottom: 10px;
}

.product-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 3px;
}

/* Product Showcase */
.product-showcase {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.showcase-content {
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-image i {
    font-size: 8rem;
    color: white;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Images section End */