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



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

/* Zoomed background layer */
.hero-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: url("../images/fermentersbanner.webp") no-repeat center center;
    background-size: cover;

    transform: scale(1.08);   /* 🔥 zoom level (adjust 1.05 to 1.15) */
    transition: transform 0.8s ease;
    z-index: 1;
}

/* Dark overlay for readability */
.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* Content stays above image */
.hero-content{
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

/* Text styling */
.hero-content h1{
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 700;
	color:white;
}

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

.breadcrumb{
    font-size: 14px;
    opacity: 0.9;
}

.hero-banner::before{
    animation: zoomInBanner 8s ease-in-out infinite alternate;
}

@keyframes zoomInBanner{
    from{
        transform: scale(1.05);
    }
    to{
        transform: scale(1.12);
    }
}


/* =========================================
   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;
}

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


.product-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(10,37,64,.75);
}

.product-hero .container{
    position:relative;
    z-index:2;
}

.product-hero h1{
    font-size:48px;
    margin-bottom:10px;
}

.breadcrumb{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:10px;
    font-size:14px;
}

.breadcrumb li{
    color:#cbd5e1;
}

.breadcrumb li a{
    color:#fff;
    text-decoration:none;
}


.product-card{
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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


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

.features-section{
    padding: 70px 0;
    background: #f8fafc;
}

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

.feature{
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #0d6efd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature h3{
    margin-bottom: 6px;
    font-size: 18px;
    color: #0A2540;
}

.feature p{
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Button alignment */
.features-action{
    text-align: center;
    margin-top: 30px;
}

h4{
    font-size: 18px;
    font-weight: 600;
    color: #0A2540;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Blue underline accent like your feature cards */
h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 60%;
    height: 3px;

    background: linear-gradient(90deg, #0d6efd, #00bfff);
    border-radius: 3px;
}

/* Optional hover effect (premium feel) */
h4:hover::after{
    width: 100%;
    transition: 0.3s ease;
}


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

.applications{
    background:#f1f5f9;
    padding:70px 0;
    text-align:center;
}

.applications h2{
    margin-bottom:35px;
    font-size:32px;
    color:#0A2540;
}

/* GRID */
.app-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* CARD STYLE */
.app-card{
    background:#fff;
    padding:25px 20px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    transition:0.3s ease;
    border:1px solid #eef2f7;
}

/* ICON */
.app-card i{
    font-size:28px;
    color:#0d6efd;
}

/* TEXT */
.app-card span{
    font-size:16px;
    font-weight:600;
    color:#0A2540;
}

/* HOVER EFFECT */
.app-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    border-color:#0d6efd;
}

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

/* ================= PRODUCT SECTION ================= */

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

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

/* IMAGE */

.product-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-top:15px;
}

.thumbs img{
    width:100%;
    border-radius:8px;
    cursor:pointer;
    border:2px solid transparent;
}

.thumbs img:hover{
    border-color:#0d6efd;
}

/* CONTENT */

.product-content h2{
    font-size:36px;
    color:#0A2540;
}

.product-content h4{
    margin:10px 0 20px;
    color:#0d6efd;
}

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

/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:30px 0;
}

.feature{
    background:#f8fafc;
    padding:20px;
    border-radius:12px;
    border-left:4px solid #0d6efd;
}

.feature h3{
    margin-bottom:5px;
    font-size:18px;
}

.feature p{
    font-size:14px;
    color:#666;
}

/* BUTTON */

.btn-primary{
    display:inline-block;
    padding:14px 30px;
    background:#0d6efd;
    color:#fff;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
}

.btn-primary:hover{
    background:#0A2540;
}

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

.applications{
    background:#f1f5f9;
    padding:70px 0;
    text-align:center;
}

.applications h2{
    margin-bottom:30px;
    font-size:32px;
}

.app-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.app-grid div{
    background:#fff;
    padding:18px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
    font-weight:500;
    color:#0A2540;
}

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

@media(max-width:992px){

.product-grid{
    grid-template-columns:1fr;
}

.features{
    grid-template-columns:1fr;
}

.app-grid{
    grid-template-columns:1fr;
}

}