/*====================================================
PRODUCTS PAGE
====================================================*/

/* Hero Section */

.page-hero {
    position: relative;
    background: linear-gradient(rgba(2, 25, 47, .85),
            rgba(2, 25, 47, .85)),
        url("../images/products/products-banner.jpg") center center/cover no-repeat;
    padding: 240px 0 140px;
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero p {
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
    opacity: .9;
}

.breadcrumb {
    justify-content: center;
    margin-top: 25px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffc107;
}

/*=========================================
INTRO
=========================================*/

.products-intro {
    padding: 100px 0;
}

.products-intro img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

/*=========================================
CATEGORY CARDS
=========================================*/

.product-categories {
    padding-bottom: 80px;
}

.category-card {

    background: #fff;

    border-radius: 18px;

    text-align: center;

    padding: 40px 25px;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

    height: 100%;
}

.category-card:hover {

    transform: translateY(-10px);

    background: #0d6efd;

    color: #fff;

}

.category-card i {

    font-size: 48px;

    margin-bottom: 20px;

}

/*=========================================
PRODUCT GRID
=========================================*/

.products-grid,
.marine-products {

    padding: 100px 0;

}

.product-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    transition: .35s;

    height: 100%;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.product-card:hover {

    transform: translateY(-10px);

}

.product-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

}

.product-content {

    padding: 30px;

}

.product-content h4 {

    margin-bottom: 15px;

    font-weight: 600;

}

.product-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

}

.product-content .btn {

    border-radius: 50px;

    padding: 10px 25px;

}

/*=========================================
WHY PRODUCTS
=========================================*/

.why-products {

    background: #f8fafc;

    padding: 100px 0;

}

/*=========================================
FAQ
=========================================*/

.faq-section {

    background: #f8fafc;

    padding: 100px 0;

}

.accordion-item {

    border: none;

    margin-bottom: 15px;

    border-radius: 12px !important;

    overflow: hidden;

}

.accordion-button {

    font-weight: 600;

    padding: 20px;

}

.accordion-button:not(.collapsed) {

    background: #0d6efd;

    color: #fff;

}

/*=========================================
CTA
=========================================*/

.cta-section {

    padding: 100px 0;

}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px) {

    .page-hero {

        padding: 190px 0 110px;

    }

    .product-content {

        padding: 25px;

    }

}

@media (max-width:768px) {

    .page-hero h1 {

        font-size: 2.4rem;

    }

    .category-card,
    .product-card {

        margin-bottom: 20px;

    }

}


/*=========================================
ANIMATIONS
=========================================*/

.product-hidden{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.show-product{

    opacity:1;

    transform:translateY(0);

}

.category-hidden{

    opacity:0;

    transform:scale(.9);

    transition:.6s ease;

}

.show-category{

    opacity:1;

    transform:scale(1);

}

/*=========================================
BUTTON RIPPLE
=========================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    width:12px;

    height:12px;

    background:rgba(255,255,255,.6);

    border-radius:50%;

    transform:translate(-50%,-50%) scale(0);

    animation:ripple .6s linear;

}

@keyframes ripple{

    to{

        transform:translate(-50%,-50%) scale(25);

        opacity:0;

    }

}


/* ==========================
PAGE HERO
========================== */

.page-hero{
    position: relative;
    padding: 180px 0 120px;
    background: url("../images/banner/about-banner.jpeg") center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:1;
}

/* Optional blue gradient for a corporate look */

.page-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(5,35,65,.65),
        rgba(0,0,0,.45)
    );
    z-index:2;
}

/* Keep content above overlays */

.page-hero .container{
    position:relative;
    z-index:3;
}

/* Text */

.page-hero h1{
    color:#fff;
    font-size:3.2rem;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero p{
    color:rgba(255,255,255,.88);
    font-size:1.15rem;
    max-width:760px;
    margin:auto;
    line-height:1.8;
}

.page-hero .breadcrumb{
    margin-top:30px;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active{
    color:#ddd;
}

.page-hero .breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before{
    color:#ccc;
}

@media(max-width:768px){

    .page-hero{
        padding:140px 0 90px;
    }

    .page-hero h1{
        font-size:2.2rem;
    }

    .page-hero p{
        font-size:1rem;
    }

}