
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;
}

/* =========================================
   BOX CONDENSERS PAGE CSS
========================================= */

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

/* BODY */
body{
    background:#f6f9fc;
    color:#0b2c4d;
}

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

:root{
    --section-gap: 45px;
}

section{
    padding: var(--section-gap) 0;
}
.tech-box1{
    background:#fff;
    color: #969696;
}


/* ================= BASE HERO BANNER ================= */

.hero-banner.anfd::before{
    background-image: url("../images/products/anfdbanner.webp");
}

.hero-banner{
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

/* DARK OVERLAY */
.hero-banner .hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
    z-index: 2;
}

/* CONTENT */
.hero-banner .hero-content{
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.hero-banner h1{
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
	color:white;
}

.hero-banner p{
    font-size: 18px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.hero-banner .breadcrumb{
    font-size: 14px;
    opacity: 0.85;
}

/* ================= ZOOM SYSTEM ================= */

.hero-banner::before{
    content: "";
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.05);
    animation: zoomHero 10s ease-in-out infinite alternate;

    z-index: 1;
}

/* ZOOM ANIMATION */
@keyframes zoomHero{
    from{
        transform: scale(1.05);
    }
    to{
        transform: scale(1.15);
    }
}

/* =========================================
   HERO SECTION
========================================= */

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

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

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

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

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

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

.btn-primary1{
    background:#ff7a00;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn-primary1:hover{
    background:#e86b00;
    transform:translateY(-3px);
}

.btn-primary2{
    background:#0b2c4d;
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary2:hover{
    background:#133a63;
}

/* IMAGE SLIDER */

.slide-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.05);
    transition:all 1s ease;
}

.slide-img.active{
    opacity:1;
    transform:scale(1);
}

.product-image-slider{
    position:relative;
    width:100%;
    height:460px;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    background:#fff;
	
	   background:linear-gradient(#fff,#f7f9fc);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* IMPORTANT FIX */
.product-image-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
/* =========================================
   SECTION HEADING
========================================= */

.section{
    padding:50px 0;
}

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

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

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

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

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

/* =========================================
   FEATURES
========================================= */

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

.feature-box{
    background:#fff;
    padding:28px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.12);
}

.feature-box i{
    font-size:38px;
    color:#ff7a00;
    margin-bottom:12px;
}

/* =========================================
   APPLICATIONS
========================================= */

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

.product-list li{
    background:#fff;
    padding:12px 18px;
    border-radius:10px;
    position:relative;
    padding-left:38px;
    box-shadow:0 3px 10px rgba(0,0,0,0.06);
}

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

/* =========================================
   TECH GRID
========================================= */

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

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

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

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

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

.cta-section h2{
    font-size:36px;
    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;
    }
}