/* ===== BASE ===== */
body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    overflow-x: hidden;
    background: #070a12;
    
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(135deg, #0b1c2d 0%, #132f4c 100%);
    margin-bottom: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.3px;
}





.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: #f57c00 !important;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* fix toggler visibility */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* FORCE WHITE HAMBURGER ICON */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ===== BUTTON ===== */
.btn-orange {
    background: #f57c00;
    color: #fff;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(245, 124, 0, 0.35);
}

/* ===== FEATURES ===== */
.features {
    background: #0f172a;
    padding: 2.5rem 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.features .col-12 {
    margin-bottom: 1.2rem;
}

/* ===== PRODUCTS ===== */
.product-card {
    transition: transform .3s ease, box-shadow .3s ease;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(15, 23, 42, 0.55);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.35);
}

.product-card img {
    width: 100%;
    height: clamp(180px, 25vw, 240px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.06);
}

.product-card .card-body {
    padding: 1.1rem;
}

.product-card h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff9800;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
}

.price {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: #f57c00;
    border-color: #f57c00;
    color: #fff;
}

/* ===== CTA ===== */


.cta {
    background-image: url("../images/cta.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1rem;
    min-height: 300px;
    position: relative;
}


.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.cta .container {
    position: relative;
    z-index: 2;
}

/* ===== CLIENTS ===== */
.client {
    max-width: 100%;
    max-height: 60px;
    opacity: .85;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 992px) {
    .hero-slide {
        min-height: 55vh;
    }

    .product-card img {
        height: 220px;
    }

    .cta {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 50vh;
        text-align: center;
    }

    .hero-slide .container {
        padding: 1.8rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-orange {
        padding: 10px 16px;
        font-size: 14px;
    }

    .product-card img {
        height: 200px;
    }

    .features .col-12 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        min-height: 45vh;
    }

    .hero h1 {
        font-size: 1.35rem;
    }

    .product-card img {
        height: 170px;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .cta {
        padding: 2.5rem 1rem;
    }
}
