
img{
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

body{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ==========================================
   PRODUCT PAGE HERO
========================================== */

.product-hero{
    padding:80px 0;
    background:#f8fafc;
}

.product-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.product-hero-text span{
    color:#00A8E8;
    font-weight:700;
    letter-spacing:2px;
}

.product-hero-text h1{
    font-size:3rem;
    margin:15px 0;
    color:#0A2540;
}

.product-hero-text p{
    line-height:1.8;
    color:#64748B;
}

/* IMAGE */
.product-hero-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.1);
}

/* BUTTONS */
.product-buttons{
    margin-top:25px;
    display:flex;
    gap:15px;
}

/* ==========================================
   SECTIONS
========================================== */

.product-section{
    padding:70px 0;
    background:#fff;
}

.product-section.alt{
    background:#f8fafc;
}

/* FEATURES */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}


/* ==========================================
   FEATURE ICONS
========================================== */

.feature-box{
    background:#fff;
    padding:30px 20px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

/* ICON STYLE */
.feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:linear-gradient(135deg,#00A8E8,#0077B6);
    color:#fff;
    font-size:26px;

    transition:all 0.3s ease;
}

/* HOVER EFFECT */
.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.feature-box:hover .feature-icon{
    transform:scale(1.1) rotate(5deg);
    background:linear-gradient(135deg,#0077B6,#00A8E8);
}


.feature-box:hover{
    transform:translateY(-8px);
}



/* LIST */
.product-list{
    list-style:none;
    padding:0;
}

.product-list li{
    padding:12px 0;
    border-bottom:1px solid #e5e7eb;
    color:#334155;
}



/* ==========================================
   APPLICATIONS SECTION (MODERN)
========================================== */

.applications-section{
    background:#f8fafc;
    padding:80px 0;
}

/* GRID */
.applications-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
}

/* CARD */
.app-card{
    background:#fff;
    padding:25px 30px;
    border-radius:14px;

    display:flex;
    align-items:center;
    gap:20px;

    box-shadow:0 10px 25px rgba(0,0,0,0.06);

    transition:all 0.3s ease;
    position:relative;
    overflow:hidden;
}

/* ICON */
.app-card i{
    font-size:28px;
    color:#00A8E8;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,168,232,0.1);
    border-radius:50%;
}

/* TEXT */
.app-card h3{
    font-size:16px;
    color:#0A2540;
    margin:0;
}

/* HOVER EFFECT */
.app-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* subtle left glow line */
.app-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#00A8E8;
    transform:scaleY(0);
    transition:0.3s;
}

.app-card:hover::before{
    transform:scaleY(1);
}

/* RESPONSIVE */
@media(max-width:768px){
    .applications-grid{
        grid-template-columns:1fr;
    }

    .app-card{
        flex-direction:row;
    }
}

/* ================================
   PRODUCT IMAGE SLIDER
================================ */

.product-image-slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
    border-radius:15px;
}

/* ALL IMAGES */
.slide-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transform:scale(1.05);

    transition:opacity 1.2s ease-in-out,
               transform 6s ease-in-out;
}

/* ACTIVE IMAGE */
.slide-img.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}


/* TECH GRID */
.tech-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.tech-box{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.tech-box h3{
    color:#00A8E8;
}

/* CTA */
.cta-section{
    background:#0A2540;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-section h2{
    font-size:2.5rem;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:25px;
    color:#cbd5e1;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .product-hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .feature-grid,
    .tech-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .feature-grid,
    .tech-grid{
        grid-template-columns:1fr;
    }

    .product-hero-text h1{
        font-size:2.2rem;
    }

    .product-buttons{
        flex-direction:column;
    }
}