/*==================================================
KOTI PRODUCTS
PRODUCT PAGE CSS
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#222;
    overflow-x:hidden;
}

/*=========================================
CONTAINER
=========================================*/

.product-container{

    width:90%;
    max-width:1300px;
    margin:auto;

}

/*=========================================
HERO
=========================================*/

.product-hero{

    position:relative;
    padding:20px 0 0px;
    overflow:hidden;
    text-align:center;
    background:linear-gradient(180deg,#ffffff,#eef6ff);

}

.hero-circle{

    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.25;

}

.circle1{

    width:280px;
    height:280px;
    background:#0d6efd;
    top:-80px;
    left:-80px;

}

.circle2{

    width:280px;
    height:280px;
    background:#ffc107;
    right:-80px;
    bottom:-80px;

}

.hero-tag{

    display:inline-block;
    padding:10px 24px;
    background:#e8f1ff;
    color:#0d6efd;
    border-radius:40px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;

}

.product-hero h1{

    font-size:32px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;

}

.product-hero p{

    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;

}

/*=========================================
PRODUCT SECTION
=========================================*/

.product-wrapper{

    width:90%;
    max-width:1300px;
    margin:-7px auto;

}

/*=========================================
PRODUCT ROW
=========================================*/

.product-row{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;

    margin-bottom:90px;

    background:#fff;

    padding:40px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    transition:.4s;

}

.product-row:hover{

    transform:translateY(-10px);

}

/*=========================================
IMAGE
=========================================*/

.product-image{

    width:42%;

}

.image-box{

    background:#f5f8ff;

    border-radius:25px;

    padding:35px;

    overflow:hidden;

}

.image-box img{

    width:100%;
    display:block;
    transition:.6s;

}

.product-row:hover img{

    transform:
    scale(1.08)
    rotate(-2deg);

}

/*=========================================
CONTENT
=========================================*/

.product-content{

    width:50%;

}

.product-no{

    display:block;

    font-size:60px;

    font-weight:800;

    color:#dbe8ff;

    margin-bottom:8px;

}

.product-content h2{

    font-size:32px;

    color:#111;

    margin-bottom:18px;

}

.line{

    width:90px;
    height:4px;

    background:#0d6efd;

    border-radius:50px;

    margin-bottom:22px;

}

.product-content p{

    color:#000;

    line-height:1.9;

    margin-bottom:25px;

    font-size:16px;

}

.product-content ul{

    list-style:none;

    margin-bottom:35px;

}

.product-content li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:15px;

    color:#444;

}

.product-content li i{

    color:#0d6efd;

    font-size:20px;

}
/*==================================================
VIEW MORE BUTTON
==================================================*/

.view-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 34px;

    background:#0d6efd;
    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:.35s;

    overflow:hidden;
    position:relative;

}

.view-btn::before{

    content:"";

    position:absolute;

    width:0;
    height:100%;

    left:0;
    top:0;

    background:rgba(255,255,255,.18);

    transition:.5s;

}

.view-btn:hover::before{

    width:100%;

}

.view-btn:hover{

    background:#83cbd4;

    transform:translateY(-5px);

}

.view-btn i{

    transition:.35s;

}

.view-btn:hover i{

    transform:translateX(8px);

}

/*==================================================
CTA SECTION
==================================================*/

.product-cta{

    width:90%;
    max-width:1300px;

    margin:100px auto;

    background:linear-gradient(135deg,#0d6efd,#2563eb);

    color:#fff;

    text-align:center;

    padding:80px 50px;

    border-radius:30px;

    overflow:hidden;

    position:relative;

}

.product-cta::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;
    right:-120px;

}

.product-cta span{

    display:inline-block;

    letter-spacing:2px;

    font-size:15px;

    font-weight:700;

    opacity:.9;

}

.product-cta h2{

    font-size:46px;

    margin:20px 0;

}

.product-cta p{

    max-width:700px;

    margin:auto;

    line-height:1.9;

    font-size:17px;

    opacity:.95;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:35px;

    padding:18px 42px;

    background:#fff;

    color:#0d6efd;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-6px);

    background:#111827;

    color:#fff;

}

/*==================================================
HOVER EFFECTS
==================================================*/

.product-row:hover .product-no{

    color:#0d6efd;

}

.product-row:hover .line{

    width:150px;

    transition:.4s;

}

.product-content li{

    transition:.3s;

}

.product-content li:hover{

    transform:translateX(10px);

    color:#111;

}

.image-box{

    perspective:1200px;

}

.image-box img{

    transform-style:preserve-3d;

}

.image-box:hover img{

    transform:

    rotateY(-12deg)

    rotateX(6deg)

    scale(1.08);

}

/*==================================================
SCROLL ANIMATION
==================================================*/

.product-row{

    opacity:0;

    transform:translateY(70px);

    transition:1s ease;

}

.product-row.show{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .product-row{

        flex-direction:column;

        text-align:center;

    }

    .product-image,
    .product-content{

        width:100%;

        margin-bottom: 60px;

    }

    .product-content ul{

        display:inline-block;

        text-align:left;

    }

}

@media(max-width:768px){

    .product-hero{

        padding:30px 0 50px;

    }

    .product-hero h1{

        font-size:40px;

    }

    .product-content h2{

        font-size:30px;

    }

    .product-no{

        font-size:48px;

    }

    .product-row{

        padding:25px;

        gap:35px;

    }

    .product-cta{

        padding:55px 25px;

    }

    .product-cta h2{

        font-size:32px;

    }

}

@media(max-width:480px){

    .product-wrapper{

        width:94%;

    }

    .product-row{

        border-radius:20px;

    }

    .image-box{

        padding:20px;

    }

    .view-btn,
    .cta-btn{

        width:100%;

        justify-content:center;

    }

    .product-hero h1{

        font-size:30px;

    }

    .hero-tag{

        font-size:13px;

    }

    .product-content h2{

        font-size:24px;

    }

}