/* =========================================================
   ENTERPRISE HERO SECTION
========================================================= */

.hero-section{
    position:relative;
    background:#000;
    overflow:hidden;
}

.slider-wrap{
    position:relative;
}

.hero-slide{

    position:relative;

    display:none;

    align-items:center;

    min-height:760px;

    overflow:hidden;
}

.hero-slide.active{
    display:flex;
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.hero-slide img{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;
}

/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.72) 38%,
        rgba(0,0,0,.35) 100%
    );
}

/* =========================================================
   CONTENT WRAPPER
========================================================= */

.hero-content{

    position:relative;

    z-index:5;

    width:100%;

    max-width:1400px;

    margin:auto;

    padding:
    140px
    80px
    180px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    color:#fff;
}

/* =========================================================
   TAG
========================================================= */

.hero-content span{

    display:inline-block;

    color:#22c55e;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;
}

/* =========================================================
   TITLE
========================================================= */

.hero-content h1{

    max-width:650px;

    font-size:76px;

    line-height:1.02;

    margin-bottom:26px;

    font-weight:700;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.hero-content p{

    max-width:620px;

    font-size:18px;

    line-height:1.9;

    color:#e5e7eb;

    margin-bottom:36px;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;
}

/* =========================================================
   CONTROLS WRAPPER
========================================================= */

.hero-controls{

    position:absolute;

    left:80px;

    bottom:48px;

    display:flex;

    align-items:center;

    gap:18px;

    z-index:30;
}

/* =========================================================
   NAVIGATION
========================================================= */

.hero-nav{

    width:56px;
    height:56px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:20px;

    display:flex;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.3s ease;
}

.hero-nav:hover{

    background:#15B012;

    transform:scale(1.05);
}

/* =========================================================
   DOTS
========================================================= */

.hero-dots{

    display:flex;

    align-items:center;

    gap:10px;
}

.hero-dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    cursor:pointer;

    transition:.3s ease;
}

.hero-dot.active{

    width:34px;

    border-radius:20px;

    background:#15B012;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .hero-slide{
        min-height:700px;
    }

    .hero-content{

        padding:
        120px
        60px
        170px;
    }

    .hero-content h1{
        font-size:58px;
    }

    .hero-controls{
        left:60px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .hero-slide{
        min-height:760px;
    }

    .hero-content{

        padding:
        110px
        24px
        180px;
    }

    .hero-content h1{

        font-size:44px;

        line-height:1.12;

        margin-bottom:22px;
    }

    .hero-content p{

        font-size:16px;

        line-height:1.8;

        margin-bottom:30px;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:flex-start;

        gap:14px;
    }

    /* CONTROLS */

    .hero-controls{

        left:24px;

        bottom:34px;

        width:calc(100% - 48px);

        justify-content:space-between;
    }

    .hero-nav{

        width:48px;
        height:48px;

        font-size:16px;
    }

}

/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section{
    padding:90px 0;
    background:#f5f7fb;
    overflow:visible;
}

.section-head{
    margin-bottom:45px;
}

.section-head span{
    display:inline-block;
    color:#15B012;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
}

.section-head h2{
    font-size:46px;
    line-height:1.2;
    color:#111827;
    max-width:760px;
}

.product-slider-wrap{
    position:relative;
    overflow:visible;
}

.product-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding:10px 20px;
}

.product-slider::-webkit-scrollbar{
    display:none;
}

.product-card{
    flex:0 0 calc(33.333% - 16px);
    min-width:calc(33.333% - 16px);
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
}

.product-image{
    overflow:hidden;
    background:#fff;
}

.product-image img{
    width:100%;
    height:320px;
    object-fit:contain;
    padding:12px;
    display:block;
    transition:.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.03);
}

.product-content{
    padding:24px;
}

.product-content h3{
    font-size:24px;
    line-height:1.4;
    color:#111827;
    margin-bottom:12px;
}

.product-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:22px;
}

.black-btn,
.white-btn{
    width:100%;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.black-btn{
    background:#111827;
    color:#fff;
    margin-bottom:12px;
}

.black-btn:hover{
    background:#15B012;
}

.white-btn{
    background:#fff;
    border:1px solid #d1d5db;
    color:#111827;
}

.white-btn:hover{
    background:#111827;
    color:#fff;
}

.product-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:20;
    transition:.3s ease;
}

.product-nav:hover{
    background:#15B012;
}

.prev-product{
    left:-5px;
}

.next-product{
    right:-5px;
}

/* =========================================================
   TECHNOLOGY
========================================================= */

.tech-section{
    padding:90px 0;
    background:#fff;
}

.tech-title{
    font-size:44px;
    margin-bottom:35px;
    color:#111827;
}

.tech-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.tech-card{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.tech-card img{
    width:100%;
    display:block;
}

/* =========================================================
   WHY SECTION
========================================================= */

/* =========================================================
   WHY CHOOSE SECTION
========================================================= */
/* =========================================================
   WHY SECTION
========================================================= */

.why-section{

    padding:100px 0;

    background:#f5f5f5;
}

.why-head{

    text-align:center;

    margin-bottom:60px;
}

.why-head span{

    display:block;

    color:#15B012;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:14px;
}

.why-head h2{

    font-size:48px;

    color:#111827;

    font-weight:700;
}

/* =========================================================
   GRID
========================================================= */

.why-grid{

    display:grid;

    grid-template-columns:
    460px
    1fr;

    gap:26px;

    align-items:stretch;
}

/* =========================================================
   LEFT IMAGE
========================================================= */

.why-image{

    height:100%;

    min-height:640px;

    overflow:hidden;

    border-radius:28px;
}

.why-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    border-radius:28px;
}

/* =========================================================
   RIGHT BOXES
========================================================= */

.why-boxes{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:24px;
}

/* =========================================================
   CARD
========================================================= */

.why-card{

    background:#666;

    color:#fff;

    padding:50px 36px;

    min-height:308px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

    transition:.3s ease;
}

.why-card:hover{

    background:#15B012;

    transform:translateY(-4px);
}

/* =========================================================
   ICON
========================================================= */

.why-icon{

    width:44px;
    height:44px;

    background:#fff;

    color:#111;

    display:flex;

    align-items:center;
    justify-content:center;

    margin-bottom:22px;

    font-size:18px;
}

/* =========================================================
   CONTENT
========================================================= */

.why-card h3{

    font-size:22px;

    line-height:1.4;

    margin-bottom:16px;

    font-weight:600;
}

.why-card p{

    font-size:16px;

    line-height:1.9;

    color:rgba(255,255,255,.92);
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .why-grid{

        grid-template-columns:1fr;

        gap:24px;
    }

    .why-image{

        min-height:500px;
        
        border-radius:22px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .why-section{
        padding:70px 0;
    }

    .why-head{
        margin-bottom:40px;
    }

    .why-head h2{

        font-size:34px;
    }

    .why-boxes{

        grid-template-columns:1fr;

        gap:18px;
    }

     .why-image{

        min-height:340px;

        border-radius:22px;
    }

    .why-image img{

        border-radius:22px;
    }

    .why-card{

        min-height:auto;

        padding:40px 24px;
    }

    .why-card h3{

        font-size:20px;
    }

    .why-card p{

        font-size:15px;
    }

}

/* =========================================================
   STATS
========================================================= */

.stats-section{
    background:#15B012;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    text-align:center;
}

.stat-box h2{
    font-size:58px;
    color:#fff;
    margin-bottom:10px;
}

.stat-box p{
    color:#fff;
    font-size:17px;
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section{
    padding:90px 0;
    background:#f5f7fb;
}

.testimonial-head{
    text-align:center;
    margin-bottom:45px;
}

.testimonial-head span{
    color:#15B012;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.testimonial-head h2{
    font-size:44px;
    margin-top:12px;
    color:#111827;
}

.testimonial-slider-wrap{
    position:relative;
    overflow:visible;
}

.testimonial-slider{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px 20px;
}

.testimonial-slider::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    flex:0 0 calc(33.333% - 16px);
    min-width:calc(33.333% - 16px);
    background:#fff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.testimonial-card p{
    line-height:1.9;
    color:#4b5563;
    margin-bottom:24px;
}

.testimonial-card h4{
    font-size:22px;
    color:#111827;
}

.testimonial-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#111827;
    color:#fff;
    cursor:pointer;
    z-index:20;
    transition:.3s ease;
}

.testimonial-nav:hover{
    background:#15B012;
}

.prev-testimonial{
    left:-5px;
}

.next-testimonial{
    right:-5px;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:992px){

    .hero-slide{
        min-height:580px;
    }

    .hero-content h1{
        font-size:54px;
    }

    .product-card,
    .testimonial-card{
        flex:0 0 calc(50% - 12px);
        min-width:calc(50% - 12px);
    }

    .tech-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    .hero-slide{

    min-height:560px;

    height:560px;

    padding:90px 0 70px;
}

    .hero-slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;

    transform:none;
}

    .hero-content h1{
        font-size:38px;
        line-height:1.18;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .product-section,
    .tech-section,
    .why-section,
    .testimonial-section{
        padding:70px 0;
    }

    .product-card,
    .testimonial-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .product-image img{
        height:250px;
    }

    .section-head h2,
    .tech-title,
    .why-head h2,
    .testimonial-head h2{
        font-size:30px;
    }

    .why-boxes{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-nav{
        width:44px;
        height:44px;
        font-size:18px;
        left:auto;
        right:auto;
        z-index:20;
    }

    .product-nav,
    .testimonial-nav{
        width:42px;
        height:42px;
        font-size:16px;
        z-index:20;
    }

    body.menu-open .hero-nav,
    body.menu-open .product-nav,
    body.menu-open .testimonial-nav{
        opacity:0 !important;
        visibility:hidden !important;
        pointer-events:none !important;
    }

    #whatsappFloating{
        position:fixed !important;
        z-index:99999 !important;
    }

    .mobile-menu{
        z-index:999999 !important;
    }

}


