.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-slider,
.hero .swiper-slide{

    height:100%;

}

.hero-image{

    position:absolute;

    inset:0;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero .container{

    position:relative;

    height:100%;

    display:flex;

    align-items:center;

}

.hero-content{

    max-width:700px;

    color:#fff;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    margin-bottom:20px;

    padding:8px 16px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    border-radius:999px;

    font-size:14px;

    font-weight:600;

}

.hero h1{

    font-size:var(--h1);

    line-height:1.1;

    margin-bottom:24px;

    font-weight:700;

}

.hero p{

    font-size:18px;

    color:rgba(255,255,255,.9);

    max-width:600px;

    margin-bottom:36px;

}

.hero-buttons{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border:2px solid #fff;

    color:#fff;

    border-radius:8px;

    transition:.3s;

}

.btn-outline:hover{

    background:#fff;

    color:#222;

}

.swiper-button-next,
.swiper-button-prev{

    color:#fff;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.6;

}

.swiper-pagination-bullet-active{

    opacity:1;

    background:var(--color-primary);

}

.hero-content{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.swiper-slide-active .hero-content{

    opacity:1;

    transform:translateY(0);

}


/* ==========================
   HOME ABOUT
========================== */

.home-about {
    padding:var(--section-space-small) 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size:var(--h2);
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--color-black);
}

.section-description {
    margin-bottom: 32px;
    color: var(--color-text);
}

.section-description p {
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }
}

/*=============================
PRODUCT CATEGORIES
=============================*/

.product-categories{

    padding:var(--section-space-small) 0;

    background:#fff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.category-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.category-image{

    aspect-ratio:4/3;

    overflow:hidden;

    background:#f7f7f7;

}

.category-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.5s;

    padding:30px;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{

    padding:30px;

}

.category-content h3{

    font-size:var(--h3);

    margin-bottom:12px;

}

.product-count{

    color:#666;

    font-size:15px;

}

.category-arrow{

    margin-top:auto;

    padding:0 30px 30px;

    font-size:26px;

    color:var(--color-primary);

}

.section-button{

    margin-top:60px;

    text-align:center;

}

@media(max-width:991px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.category-grid{

grid-template-columns:1fr;

}

}

/*==================================
FEATURED PRODUCTS
==================================*/

.featured-products{
    padding:var(--section-space-small) 0;
    background:#f8fafc;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #ececec;
    transition:.35s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.product-image{
    display:block;
    background:#fff;
    aspect-ratio:1/1;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:30px;
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-content{
    padding:28px;
}

.product-content h3{
    margin:12px 0;
    font-size:var(--h3);
}

.product-content p{
    margin:20px 0;
    color:#666;
    line-height:1.7;
}

.product-link{
    color:var(--color-primary);
    font-weight:600;
}

/*==================================
INDUSTRIES
==================================*/

.industries{
    padding:var(--section-space) 0;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.industry-image{
    aspect-ratio:4/5;
}

.industry-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.industry-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    color:#fff;

}

.industry-card:hover img{

    transform:scale(1.08);

}

.industry-overlay h3{

    margin-bottom:12px;
    font-size:var(--h3);
}

.industry-overlay p{

    margin-bottom:20px;

    opacity:.9;

}

.industry-overlay span{

    font-weight:600;

}


.industries-footer{
    text-align:center;
    margin-top:50px;
}

.industries-footer .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
}

/*==================================
INDUSTRIES
==================================*/

.industries-section{
    padding:var(--section-space-small) 0;
    background:#fff;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    transition:.35s;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.industry-image{
    aspect-ratio:4/3;
    overflow:hidden;
}

.industry-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.industry-card:hover img{
    transform:scale(1.06);
}

.industry-content{
    padding:28px;
}

.industry-content h3{
    margin-bottom:15px;
    font-size:var(--h3);
}


.industry-content p{
    color:#666;
    margin-bottom:20px;
    line-height:1.7;
}

.industry-link{
    color:var(--color-primary);
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:0.3s ease;
}

.industry-link:hover{
    gap:14px;
}

@media(max-width:991px){

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:640px){

    .industries-grid{
        grid-template-columns:1fr;
    }

}

/*==================================
WHY CHOOSE
==================================*/

.why-choose{
    padding:var(--section-space) 0;
    background:#f8fafc;
}

.why-choose-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.why-features{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.why-feature{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.why-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    background:var(--color-primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}

.why-feature h3{
    margin-bottom:8px;
    font-size:var(--h3);
}

.why-feature p{
    color:#666;
    line-height:1.7;
}

.company-stats{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:#fff;
    padding:32px;
    border-radius:18px;
    text-align:center;
    border:1px solid #e8e8e8;
}

.stat-card h3{
    font-size:42px;
    color:var(--color-primary);
    margin-bottom:10px;
}

.stat-card span{
    color:#666;
    font-weight:500;
}

@media (max-width:991px){

    .why-choose-grid{
        grid-template-columns:1fr;
    }

    .company-stats{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .company-stats{
        grid-template-columns:1fr;
    }

}

/*==================================
CONTACT CTA
==================================*/

.contact-cta{
    position:relative;
    overflow:hidden;
    padding:var(--section-space) 0;
    color:#fff;
}

.cta-background{
    position:absolute;
    inset:0;
}

.cta-background img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,40,80,.88),
        rgba(0,60,120,.90)
    );
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:760px;
}

.cta-content h2{
    font-size:clamp(2.4rem,5vw,4rem);
    margin:20px 0;
    line-height:1.2;
    color:#fff;
}

.cta-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.95;
    margin-bottom:40px;
}

.cta-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:40px;
}

.cta-benefits li{
    font-weight:500;
}

.cta-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.contact-cta .btn-outline{
    border-color:#fff;
    color:#fff;
}

.contact-cta .btn-outline:hover{
    background:#fff;
    color:var(--color-primary);
}

@media(max-width:768px){

    .cta-benefits{
        grid-template-columns:1fr;
    }

}


.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

@media (prefers-reduced-motion: reduce){

    .fade-up{

        opacity:1;

        transform:none;

        transition:none;

    }

}