﻿
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #f8f9fa;
}

.background-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    animation: gradientMove 10s ease-in-out infinite;
    pointer-events: none;
    opacity:0.6;
}

@keyframes gradientMove {
    0%, 100% {
        background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,123,255,0.2));
    }

    50% {
        background: linear-gradient(225deg, rgba(30,30,30,0.6), rgba(0,123,255,0.3));
    }
}
.mainTitle {
    color: #00bfff;
}
.main-content {
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.3);
}

.nav-link {
    color: #d0e8ff !important;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: #00bfff !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #00bfff;
        transition: width 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Full width carousel */
#mainCarousel {
    width: 100%;
    margin-left: 0;
    max-height: 600px;
    overflow: hidden;
    border-radius: 0;
}

.carousel-item img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 123, 255, 0.3);
    border-radius: 50%;
    padding: 6px;
    width: 30px;
    height: 30px;
    background-size: 60% 60%;
}

.product-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
    height: 100%;
    text-align:center;
}

    .product-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 16px rgba(0, 123, 255, 0.3);
    }
    .product-box img {
        max-width: 90%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
h5 {
    font-weight: 600;
    color: #00bfff;
}

footer {
    background: linear-gradient(to right, #000, #001f33);
    border-top: 1px solid rgba(0,123,255,0.15);
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

    footer a {
        color: #00bfff;
    }
