/*==================================================
PRODUCT PAGE
Only for products.php
==================================================*/

.product-page{
    background:#f7faff;
    overflow:hidden;
    position:relative;
    padding-bottom:70px;
}

/*==================================================
HERO SECTION
==================================================*/

.product-hero{

    position:relative;
    overflow:hidden;
    padding:70px 0 60px;

    background:
    linear-gradient(rgba(255,255,255,.75),rgba(255,255,255,.75)),
    url("../images/products/banner-bg.jpg")
    center center/cover no-repeat;

}

.product-hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    top:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,#d9ecff 0%,transparent 70%);

}

.product-hero::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    right:-250px;
    bottom:-250px;

    border-radius:50%;

    background:
    radial-gradient(circle,#d9ecff 0%,transparent 70%);

}

.product-hero .container{

    position:relative;

    z-index:5;

}

/*==================================================
BADGE
==================================================*/

.product-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:30px;

    background:#eaf2ff;

    color:#1565ff;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

/*==================================================
HEADING
==================================================*/

.product-hero-content h1{

    font-size:74px;

    line-height:82px;

    font-weight:800;

    color:#082c78;

    margin-bottom:25px;

}

.product-hero-content h1 span{

    display:block;

    color:#1565ff;

}

.product-hero-content p{

    font-size:23px;

    line-height:38px;

    color:#556274;

    max-width:620px;

}

/*==================================================
TITLE LINE
==================================================*/

.product-title-line{

    display:block;

    width:90px;

    height:4px;

    background:#1565ff;

    border-radius:50px;

    margin-top:25px;

}

/*==================================================
BANNER IMAGE
==================================================*/

.product-banner-image{

    max-height:470px;

    animation:productFloat 4s ease-in-out infinite;

}

@keyframes productFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
FEATURES
==================================================*/

.product-feature{

    text-align:center;

    transition:.35s;

}

.product-feature-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    box-shadow:0 12px 25px rgba(0,0,0,.06);

}

.product-feature-icon i{

    font-size:32px;

    color:#1565ff;

}

.product-feature:hover .product-feature-icon{

    background:#1565ff;

    transform:rotateY(180deg);

}

.product-feature:hover .product-feature-icon i{

    color:#fff;

    transform:rotateY(-180deg);

}

.product-feature h6{

    margin-top:18px;

    font-size:20px;

    font-weight:700;

    color:#082c78;

}

.product-feature small{

    display:block;

    margin-top:5px;

    color:#6d7785;

    font-size:15px;

}

/*==================================================
SECTION TITLE
==================================================*/

.product-section-title{

    font-size:48px;

    font-weight:800;

    color:#082c78;

    position:relative;

}

.product-section-subtitle{

    font-size:20px;

    color:#6d7785;

    margin-top:12px;

}

/*==================================================
PRODUCT CARD
==================================================*/

.product-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:30px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.14);

}

/*==================================================
SIZE BADGE
==================================================*/

.product-size-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:8px;

    background:#1565ff;

    color:#fff;

    font-size:15px;

    font-weight:700;

}

.product-green{

    background:#14a085;

}

/*==================================================
PRODUCT IMAGE
==================================================*/

.product-image-box{

    text-align:center;

    margin:25px 0;

}

.product-image-box img{

    max-height:230px;

    transition:.4s;

}

.product-card:hover .product-image-box img{

    transform:translateY(-10px) scale(1.06);

}

/*==================================================
CARD CONTENT
==================================================*/

.product-card h3{

    text-align:center;

    font-size:32px;

    color:#082c78;

    font-weight:700;

    margin-bottom:15px;

}

.product-card p{

    text-align:center;

    color:#6b7684;

    font-size:17px;

    line-height:30px;

    margin-bottom:20px;

}

.product-card ul{

    list-style:none;

    padding:0;

    margin:25px 0;

}

.product-card ul li{

    position:relative;

    padding-left:30px;

    margin-bottom:12px;

    color:#556274;

    font-size:16px;

}

.product-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#1565ff;

    font-weight:700;

}

/*==================================================
GET A QUOTE BUTTON
==================================================*/

.product-btn{

    width:100%;

    height:56px;

    border-radius:12px;

    background:linear-gradient(90deg,#1565ff,#0d47d9);

    color:#fff;

    font-size:18px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:.35s;

    border:none;

}

.product-btn i{

    transition:.35s;

}

.product-btn:hover{

    background:linear-gradient(90deg,#0d47d9,#1565ff);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(21,101,255,.30);

}

.product-btn:hover i{

    transform:translateX(8px);

}

/*==================================================
BOTTOM BLUE BAR
==================================================*/

.product-bottom-bar{

    background:linear-gradient(135deg,#0a2f82,#1565ff);

    border-radius:22px;

    padding:35px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    color:#fff;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-bottom-item{

    display:flex;

    align-items:center;

    gap:18px;

    border-right:1px solid rgba(255,255,255,.15);

    padding-right:15px;

}

.product-bottom-item:last-child{

    border-right:none;

}

.product-bottom-item i{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.15);

    font-size:30px;

    transition:.35s;

}

.product-bottom-item:hover i{

    background:#fff;

    color:#1565ff;

    transform:rotate(360deg);

}

.product-bottom-item h5{

    font-size:21px;

    font-weight:700;

    margin-bottom:6px;

}

.product-bottom-item p{

    margin:0;

    font-size:15px;

    line-height:24px;

    opacity:.95;

}

/*==================================================
BULK SUPPLY CARD
==================================================*/

.product-bulk-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.product-bulk-card::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-150px;

    bottom:-150px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(21,101,255,.08) 0%,
    transparent 70%);

}

.product-bulk-card h2{

    font-size:42px;

    font-weight:700;

    color:#082c78;

    margin-bottom:20px;

}

.product-bulk-card p{

    font-size:18px;

    color:#5c6776;

    line-height:30px;

    margin-bottom:30px;

}

/*==================================================
CONTACT BUTTON
==================================================*/

.product-contact-btn{

    padding:15px 34px;

    border-radius:12px;

    background:#1565ff;

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.product-contact-btn:hover{

    background:#0d47d9;

    color:#fff;

    transform:translateY(-3px);

}

/*==================================================
BULK FEATURES
==================================================*/

.product-bulk-feature{

    text-align:center;

    transition:.35s;

    position:relative;

}

.product-bulk-feature::after{

    content:"";

    position:absolute;

    top:10px;

    right:0;

    width:1px;

    height:90px;

    background:#e9eef7;

}

.product-bulk-feature:last-child::after{

    display:none;

}

.product-bulk-feature i{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#1565ff;

    font-size:34px;

    transition:.35s;

}

.product-bulk-feature:hover i{

    background:#1565ff;

    color:#fff;

    transform:rotate(360deg);

}

.product-bulk-feature h5{

    font-size:22px;

    color:#082c78;

    font-weight:700;

    margin-bottom:10px;

}

.product-bulk-feature p{

    font-size:16px;

    line-height:26px;

    color:#5f6c7b;

}

/*==================================================
DECORATION
==================================================*/

.product-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:rgba(21,101,255,.04);

}

.product-card::after{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    left:-60px;

    bottom:-60px;

    border-radius:50%;

    background:rgba(21,101,255,.03);

}

/*==================================================
COMMON TRANSITION
==================================================*/

.product-card,
.product-feature,
.product-bottom-item,
.product-bulk-feature{

    transition:all .35s ease;

}

/*==================================================
RESPONSIVE DESIGN
==================================================*/

/* Large Desktop */

@media (max-width:1400px){

    .product-hero-content h1{

        font-size:64px;
        line-height:72px;

    }

    .product-banner-image{

        max-height:400px;

    }

}

/* Laptop */

@media (max-width:1200px){

    .product-hero-content h1{

        font-size:56px;
        line-height:64px;

    }

    .product-hero-content p{

        font-size:20px;
        line-height:34px;

    }

    .product-card{

        padding:25px;

    }

    .product-card h3{

        font-size:28px;

    }

    .product-bottom-bar{

        grid-template-columns:repeat(2,1fr);

    }

}

/* Tablet */

@media (max-width:991px){

    .product-hero{

        text-align:center;
        padding:60px 0;

    }

    .product-banner-image{

        margin-top:40px;
        max-height:320px;

    }

    .product-feature{

        margin-bottom:25px;

    }

    .product-section-title{

        font-size:38px;

    }

    .product-bottom-bar{

        grid-template-columns:1fr;
        gap:20px;

    }

    .product-bottom-item{

        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.20);
        padding-bottom:20px;

    }

    .product-bottom-item:last-child{

        border-bottom:none;

    }

    .product-bulk-card{

        padding:30px;

    }

    .product-bulk-feature{

        margin-top:30px;

    }

    .product-bulk-feature::after{

        display:none;

    }

}

/* Mobile */

@media (max-width:767px){

    .product-page{

        padding-bottom:50px;

    }

    .product-hero{

        padding:50px 0;

    }

    .product-hero-content h1{

        font-size:42px;
        line-height:50px;

    }

    .product-hero-content p{

        font-size:17px;
        line-height:28px;

    }

    .product-banner-image{

        max-height:230px;

    }

    .product-badge{

        font-size:13px;
        padding:8px 18px;

    }

    .product-feature-icon{

        width:65px;
        height:65px;

    }

    .product-feature-icon i{

        font-size:28px;

    }

    .product-feature h6{

        font-size:18px;

    }

    .product-section-title{

        font-size:30px;

    }

    .product-section-subtitle{

        font-size:16px;

    }

    .product-card{

        padding:22px;

    }

    .product-image-box img{

        max-height:180px;

    }

    .product-card h3{

        font-size:24px;

    }

    .product-card p{

        font-size:15px;
        line-height:26px;

    }

    .product-card ul li{

        font-size:15px;

    }

    .product-btn{

        height:52px;
        font-size:16px;

    }

    .product-bottom-bar{

        padding:25px;

    }

    .product-bottom-item{

        flex-direction:column;
        text-align:center;
        padding-right:0;

    }

    .product-bottom-item i{

        margin-bottom:12px;

    }

    .product-bulk-card{

        text-align:center;

    }

    .product-bulk-card h2{

        font-size:32px;

    }

    .product-contact-btn{

        width:100%;

    }

}

/* Small Mobile */

@media (max-width:576px){

    .product-hero-content h1{

        font-size:34px;
        line-height:42px;

    }

    .product-hero-content p{

        font-size:16px;

    }

    .product-banner-image{

        max-height:180px;

    }

    .product-feature{

        margin-bottom:20px;

    }

    .product-feature-icon{

        width:58px;
        height:58px;

    }

    .product-feature-icon i{

        font-size:24px;

    }

    .product-card{

        padding:20px;

    }

    .product-size-badge{

        font-size:13px;
        padding:6px 14px;

    }

    .product-card h3{

        font-size:22px;

    }

    .product-card ul li{

        font-size:14px;

    }

    .product-bottom-item h5{

        font-size:18px;

    }

    .product-bottom-item p{

        font-size:14px;

    }

    .product-bulk-feature{

        margin-bottom:25px;

    }

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.product-fade{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.product-fade.product-show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
COMMON ANIMATION
==================================================*/

.product-card,
.product-feature,
.product-bottom-item,
.product-bulk-feature{

    transition:all .35s ease;

}

/*==================================================
BUTTON RIPPLE
==================================================*/

.product-btn,
.product-contact-btn{

    position:relative;

    overflow:hidden;

}

.product-ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.45);

    animation:productRipple .6s linear;

    pointer-events:none;

}

@keyframes productRipple{

    to{

        transform:scale(4);

        opacity:0;

    }

}

/*==================================================
UTILITY CLASSES
==================================================*/

.product-shadow{

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.product-radius{

    border-radius:22px;

}

.product-transition{

    transition:all .35s ease;

}

.product-text-primary{

    color:#1565ff;

}

.product-bg-primary{

    background:#1565ff;

}

.product-fw-600{

    font-weight:600;

}

.product-fw-700{

    font-weight:700;

}

.product-fw-800{

    font-weight:800;

}