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

/* 1. HERO SLIDER CORE WRAPPER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh; 
    min-height: 520px;
    background-color: #111; 
    overflow: hidden;
}

/* 2. INDIVIDUAL SLIDE LAYER */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 0 10%; 
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 3. SMOOTH BACKGROUND ZOOM LAYER */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    
    /* Force baseline state when inactive */
    transform: scale(1) !important; 
    transition: transform 6s ease-out, opacity 0.8s ease;
}

/* Explicitly trigger zoom ONLY when active container matches */
.slide.active .slide-bg {
    transform: scale(1.12) !important;
}

/* Dark tint overlay to guarantee readability */
.slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 0;
}

/* 4. CONTENT ALIGNMENT & TYPOGRAPHY */
.slide-content {
    position: relative;
    z-index: 5; 
    max-width: 750px; 
    color: #ffffff; 
    font-family: sans-serif;
    text-align: left;
}

.slide-content span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f37021; 
    margin-bottom: 15px;
}

.slide-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: #ffffff;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px 0;
    color: #e0e0e0;
}

/* 5. BUTTON STYLING & SPACING */
.slide-content div {
    display: flex;
    gap: 15px; 
}

.btn-primary1, .btn-primary2 {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary1 {
    background-color: #f37021;
    color: #ffffff;
}
.btn-primary1:hover {
    background-color: #d65d14;
}

.btn-primary2 {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
.btn-primary2:hover {
    background-color: #ffffff;
    color: #111111;
}

/* ==========================================
   COMPANY SECTION
========================================== */

.company-section{
    background:#ffffff;
}

.company-content{
    text-align:center;
    max-width:950px;
    margin:auto;
}

.company-content p{
    font-size:1.05rem;
    color:#64748B;
    margin-bottom:20px;
    line-height:1.9;
}


/* ==========================================
   STATS SECTION
========================================== */

.stats-section{
    background:#0A2540;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
}

.stat-box h3{
    font-size:3.5rem;
    color:#00A8E8;
    margin-bottom:10px;
}

.stat-box p{
    color:#ffffff;
    font-size:1rem;
}



.stat-box h3{

    font-size:4rem;

    color:#f37021;

    margin-bottom:15px;

    transition:all .3s ease;
}

.stat-box{

    transition:.3s;
}

.stat-box:hover{

    transform:translateY(-8px);
}




.clients-section{
    background:#ffffff;
    padding:80px 0;
}

.client-logos{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));

    gap:30px;

    align-items:center;
}

.client-logo{

    background:#fff;

    border:1px solid #e8eef5;

    border-radius:12px;

    padding:25px;

    height:140px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:all .4s ease;

    box-shadow:
    0 5px 15px rgba(0,0,0,.04);
}

.client-logo img{

    max-width:100%;

    max-height:70px;

    width:auto;

    height:auto;

    transition:all .4s ease;

    object-fit:contain;
}

/* HOVER EFFECT */

.client-logo:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.10);

    border-color:#00A8E8;
}

.client-logo:hover img{

    transform:scale(1.08);
}


.client-logo{

    position:relative;
    overflow:hidden;
}

.client-logo::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(0,168,232,.15),
        transparent
    );

    transition:.6s;
}

.client-logo:hover::before{

    left:100%;
}



/* ==========================================
   INDUSTRIES
========================================== */

.industries-section{
    background:#F8FAFC;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.industry-card{
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

    /* ⭐ KEY FIX */
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.industry-card:hover{
    transform:translateY(-8px);
}

.industry-card img{
    width:120px;
    height:120px;
    object-fit:contain;

    /* ⭐ KEY FIX */
    display:block;
    margin-top:25px;
}

.industry-card img{
    transition:transform .3s ease;
}

.industry-card:hover img{
    transform:scale(1.08);
}

.industry-content{
    padding:25px;
}

.industry-content h3{
    margin-bottom:10px;
}

.industry-content p{
    color:#64748B;
    font-size:15px;
}


/* ==========================================
   PRODUCTS
========================================== */

/* ==========================================
   PRODUCT GRID FIX
========================================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

/* PRODUCT CARD */
.product-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;

    /* ⭐ KEY FIX */
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:25px 20px;

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

    transition:all 0.4s ease;
    position:relative;
}

/* IMAGE CENTER FIX */
.product-card img{
    width:100%;
    max-width:220px;
    height:220px;
    object-fit:contain;

    display:block;
    margin:0 auto;

    transition:transform 0.4s ease;
}

/* TITLE */
.product-card h3{
    margin-top:15px;
    font-size:18px;
    color:#696966;
}

/* ==========================================
   ⭐ PREMIUM HOVER EFFECT
========================================== */

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* image zoom on hover */
.product-card:hover img{
    transform:scale(1.12);
}

/* subtle glow border effect */
.product-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:16px;
    padding:2px;
    background:linear-gradient(135deg,#FFF8F0,transparent);
    opacity:0.25;
    transition:0.6s;
}

.product-card:hover::before{
    opacity:1;
}


/* ==========================================
   WHY SECTION
========================================== */

.why-section{
    background:#F8FAFC;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#ffffff;

    padding:35px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.why-card:hover{
    transform:translateY(-5px);
}

.why-card h3{
    margin-bottom:15px;
}

.why-card p{
    color:#64748B;
}


.testimonials-section{
    background:#F8FAFC;
}

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

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:15px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.testimonial-card p{
    font-style:italic;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#0A2540;
}

.testimonial-card span{
    color:#64748B;
    font-size:14px;
}


/* ==========================================
   PROCESS SECTION
========================================== */

.process-section{
    padding:90px 0;
    background:#fff;
}

/*=========================
Timeline
=========================*/

.process-timeline{
    display:flex;
    flex-direction:column;
    gap:50px;
}

/* First Row */

.process-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

/* Second Row */

.process-row-bottom{
    width:60%;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

/*=========================
Card
=========================*/

.process-card{

    position:relative;

    background:#fff;

    min-height:430px;

    padding:70px 30px 35px;

    border-radius:20px;

    border:1px solid #e9eef5;

    text-align:center;

    overflow:visible;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.process-card:hover{

    transform:translateY(-8px);

    border-color:#0d99ff;

    box-shadow:0 20px 50px rgba(13,110,253,.18);
}

/*=========================
Step Number
=========================*/

.step-no{

    position:absolute;

    top:-24px;

    left:50%;

    transform:translateX(-50%);

    width:58px;

    height:58px;

    border-radius:12px;

    background:#fff;

    border:2px solid #0d99ff;

    color:#0f172a;

    font-size:22px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

/*=========================
Icon
=========================*/

.process-icon{

    width:180px;

    height:180px;

    margin:5px auto 05px;

    background:#eef6ff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;
}

.process-card:hover .process-icon{

    transform:scale(1.08);

    background:#dbeeff;
}

.process-icon img{

    width:180px;

    height:180px;

    object-fit:contain;
}

/*=========================
Heading
=========================*/

.process-card h3{

    font-size:28px;

    font-weight:700;

    color:#0f172a;

    line-height:1.3;

    margin-bottom:15px;

    min-height:70px;
}

.process-card h3::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    background:#0d99ff;

    margin:15px auto;

    border-radius:5px;
}

/*=========================
Description
=========================*/

.process-card p{

    color:#64748b;

    font-size:16px;

    line-height:1.8;
}

/*=========================
Arrow
=========================*/

.process-row .process-card::after{

    content:"➜";

    position:absolute;

    top:50%;

    right:-26px;

    transform:translateY(-50%);

    font-size:36px;

    color:#0d99ff;

    font-weight:bold;

    z-index:5;
}

.process-row .process-card:last-child::after{
    display:none;
}

.process-row-bottom .process-card::after{

    content:"➜";

    position:absolute;

    top:50%;

    right:-26px;

    transform:translateY(-50%);

    font-size:36px;

    color:#0d99ff;

    font-weight:bold;

    z-index:5;
}

.process-row-bottom .process-card:last-child::after{
    display:none;
}

/*=========================
Responsive
=========================*/

@media(max-width:1200px){

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

    .process-row-bottom{
        width:100%;
    }

    .process-card::after{
        display:none;
    }

}

@media(max-width:768px){

    .process-row,
    .process-row-bottom{

        grid-template-columns:1fr;

        width:100%;
    }

    .process-card{

        min-height:auto;
    }

}
/* ==========================================
   QUALITY
========================================== */

.quality-section{
    background:
    linear-gradient(
    135deg,
    #0A2540,
    #143D66
    );

    color:#ffffff;
}

.quality-section .section-heading h2{
    color:#ffffff;
}

.quality-section p{
    max-width:900px;

    margin:auto;

    text-align:center;

    font-size:1.05rem;

    line-height:1.9;

    color:#dbe6f0;
}


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

.cta-section{
    background:#F97316;

    text-align:center;

    color:#ffffff;
}

.cta-section h2{
    color:#ffffff;

    margin-bottom:20px;

    font-size:3rem;
}

.cta-section p{
    max-width:800px;

    margin:0 auto 30px;

    line-height:1.9;

    color:#fff;
}


/* ==========================================
   ANIMATION
========================================== */

.industry-card,
.product-card,
.why-card{
    transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.industry-card:hover,
.product-card:hover,
.why-card:hover{

    box-shadow:
    0 20px 40px rgba(0,0,0,.12);
}


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

@media(max-width:1200px){

    .industry-grid,
    .product-grid,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-timeline{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){

    .hero-content h1{
        font-size:3.2rem;
    }

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

@media(max-width:768px){

    .hero-section{
        height:80vh;
    }

    .hero-content{
        text-align:center;
        align-items:center;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

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

    .stats-grid,
    .industry-grid,
    .product-grid,
    .why-grid,
    .process-timeline{
        grid-template-columns:1fr;
    }

    .cta-section h2{
        font-size:2rem;
    }
}