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;
}
/* =========================================
   STORAGE TANKS - PREMIUM DESIGN
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f8fc;
    color:#0b2c4d;
}

/* CONTROL ALL SECTION GAPS */
section{
    padding:60px 0;
}

/* Reduce extra heading spacing */
.section-heading{
    margin:40px 0 25px;
}

/* Reduce paragraph spacing in overview */
.product-section p{
    margin-bottom:0;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

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

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

/* LEFT TEXT */
.product-hero-text{
    z-index:2;
}

.product-hero-text span{
    color:#00aaff;
    font-weight:600;
    font-size:13px;
    letter-spacing:1px;
}

.product-hero-text h1{
    font-size:48px;
    margin:15px 0;
    color:#0b2c4d;
}

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

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

/* RIGHT IMAGE SLIDER FIX */
.product-image-slider{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    background:#fff;
}

/* IMPORTANT FIX: NO TRANSPARENCY GLITCH */
.slide-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:0;
    transform:scale(1.10);

    transition:opacity 1s ease, transform 6s ease;
}

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

/* PREVENT OVERLAP ISSUE */
.product-hero-grid > div{
    position:relative;
}


/* =========================================
   SECTION TITLE
========================================= */

.section-heading{
    text-align:center;
    margin:20px 0 20px;
}

.section-heading h2{
    font-size:38px;
}

/* =========================================
   OVERVIEW
========================================= */

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

.product-section p{
    max-width:850px;
    margin:auto;
    text-align:center;
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* =========================================
   FEATURES (IMPROVED CARDS)
========================================= */

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

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* ICON CIRCLE (IMPORTANT FIX) */
.feature-box i{
    width:60px;
    height:60px;
    line-height:60px;
    background:#eef6ff;
    border-radius:50%;
    font-size:24px;
    color:#ff7a00;
    margin-bottom:15px;
    transition:.3s;
}

.feature-box:hover i{
    background:#ff7a00;
    color:#fff;
    transform:rotate(10deg);
}

.feature-box h3{
    font-size:20px;
    margin-bottom:10px;
}

/* =========================================
   APPLICATIONS (CLEAN CARDS)
========================================= */

.product-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    list-style:none;
    max-width:900px;
    margin:auto;
}

.product-list li{
    background:#fff;
    padding:14px 20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.06);
    position:relative;
    padding-left:40px;
}

.product-list li::before{
    content:"✔";
    position:absolute;
    left:15px;
    color:#ff7a00;
    font-weight:bold;
}

/* =========================================
   TECH SPEC (CARD STYLE FIX)
========================================= */

.tech-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:900px;
    margin:auto;
}

.tech-box{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:.3s;
}

.tech-box1{
    background:#fff;
    color: #969696;
}

.tech-box:hover{
    transform:translateY(-6px);
}

/* =========================================
   CTA
========================================= */

.cta-section{
    background:#0b2c4d;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.cta-section h2{
    font-size:38px;
    margin-bottom:10px;
}

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

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

@media(max-width:992px){

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

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

@media(max-width:768px){

    .product-hero-text h1{
        font-size:32px;
    }

    .product-buttons{
        justify-content:center;
    }
}