/*=========================================================
    HERO SECTION
=========================================================*/

.hero-section{
    position: relative;
    overflow: hidden;
}

.heroSwiper{
    width:100%;
    height:100vh;
}

.heroSwiper .swiper-slide{
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
    transform:scale(1);
    transition:8s ease;
}

.swiper-slide-active .hero-bg{
    transform:scale(1.08);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.78),
        rgba(0,0,0,.45),
        rgba(0,0,0,.15)
    );
    z-index:2;
}

.hero-section .container{
    position:relative;
    z-index:3;
}

/*=========================================================
    HERO CONTENT
=========================================================*/

.hero-subtitle{

    display:inline-block;

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-title{

    color:#fff;

    font-size:68px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-title span{

    color:#198754;

}

.hero-text{

    color:#e5e5e5;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:40px;

}

/*=========================================================
    BUTTONS
=========================================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    background:#198754;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    background:#146c43;

    color:#fff;

    transform:translateY(-3px);

}

.hero-btn-outline{

    border:2px solid #fff;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    transition:.35s;

}

.hero-btn-outline:hover{

    background:#fff;

    color:#212529;

    transform:translateY(-3px);

}

/*=========================================================
    SWIPER ARROWS
=========================================================*/

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    color:#fff;

    transition:.3s;

}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover{

    background:#198754;

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after{

    font-size:18px;

    font-weight:bold;

}

/*=========================================================
    PAGINATION
=========================================================*/

.heroSwiper .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#fff;

    opacity:.5;

}

.heroSwiper .swiper-pagination-bullet-active{

    width:30px;

    border-radius:30px;

    background:#198754;

    opacity:1;

}

/*=========================================================
    FLOATING STATISTICS
=========================================================*/

.hero-stats{

    position:relative;

    margin-top:-70px;

    z-index:50;

}

.stat-card{

    background:#fff;

    padding:35px 20px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.3s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h2{

    color:#198754;

    font-size:42px;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    margin:0;

    font-weight:500;

}

/*=========================================================
    RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .hero-title{

        font-size:44px;

    }

    .hero-text{

        font-size:16px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-btn,
    .hero-btn-outline{

        width:100%;

        text-align:center;

    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev{

        display:none;

    }

    .hero-stats{

        margin-top:40px;

    }

    .stat-card{

        margin-bottom:20px;

    }

}

@media(max-width:576px){

    .hero-title{

        font-size:34px;

    }

    .hero-subtitle{

        font-size:13px;

        letter-spacing:2px;

    }

}

/*=========================================
    Floating Trust Card
=========================================*/

.hero-floating-card{

    position:absolute;

    right:8%;

    bottom:14%;

    width:300px;

    padding:25px;

    border-radius:20px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.20);

    color:#fff;

    z-index:20;

    box-shadow:0 15px 40px rgba(0,0,0,.20);

}

.hero-rating{

    margin-bottom:15px;

}

.hero-rating i{

    color:#FFD700;

    font-size:18px;

    margin-right:2px;

}

.hero-floating-card h5{

    margin-bottom:10px;

    font-weight:600;

    color:#fff;

}

.hero-floating-card p{

    margin:0;

    color:#f1f1f1;

    line-height:1.7;

    font-size:15px;

}



/*=========================================================
    ABOUT SECTION
=========================================================*/

.about-section{

    padding:100px 0;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    object-fit:cover;

}

.experience-box{

    position:absolute;

    bottom:25px;

    right:25px;

    background:#198754;

    color:#fff;

    padding:20px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:42px;

    margin:0;

}

.experience-box span{

    font-size:14px;

}

.section-subtitle{

    color:#D4AF37;

    letter-spacing:3px;

    font-weight:600;

}

.section-title{

    font-size:46px;

    font-weight:700;

    line-height:1.3;

}

.section-title span{

    color:#198754;

}

.section-description{

    color:#6c757d;

    line-height:1.9;

    font-size:17px;

}

.about-feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:500;

}

.about-feature i{

    color:#198754;

    font-size:20px;

}




/*=========================================================
    SERVICES
=========================================================*/

.services-section{

    padding:100px 0;

    background:#f8f9fa;

}

.service-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#198754;

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#198754;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    margin-bottom:25px;

}

.service-card h4{

    margin-bottom:15px;

    font-weight:700;

}

.service-card p{

    color:#6c757d;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#198754;

    text-decoration:none;

    font-weight:600;

}

.service-card a i{

    transition:.3s;

}

.service-card:hover a i{

    transform:translateX(6px);

}

/*=========================================================
    PRODUCTS
=========================================================*/

.products-section{

    padding:100px 0;

}

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-image{

    position:relative;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#198754;

    color:#fff;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

}

.product-content{

    padding:25px;

}

.product-content h5{

    font-weight:700;

    margin-bottom:12px;

}

.product-content p{

    color:#6c757d;

    font-size:15px;

    line-height:1.7;

}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:20px;

}

.price{

    font-size:20px;

    font-weight:700;

    color:#198754;

}

/*==========================================
    PORTFOLIO
==========================================*/

.portfolio-section{

    padding:100px 0;

    background:#f8f9fa;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    grid-auto-rows:220px;

    gap:20px;

}

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.portfolio-item.large{

    grid-column:span 2;

    grid-row:span 2;

}

.portfolio-item.tall{

    grid-row:span 2;

}

.portfolio-item.wide{

    grid-column:span 2;

}

.portfolio-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.portfolio-item:hover img{

    transform:scale(1.1);

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.10)
    );

    color:#fff;

    opacity:0;

    transition:.35s;

}

.portfolio-item:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-overlay span{

    color:#D4AF37;

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

}

.portfolio-overlay h3{

    margin:10px 0;

    font-size:26px;

    font-weight:700;

}

.portfolio-overlay p{

    margin:0;

    color:#e9ecef;

}

/*========================
    Mobile
========================*/

@media(max-width:991px){

    .portfolio-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .portfolio-grid{

        grid-template-columns:1fr;

    }

    .portfolio-item,
    .portfolio-item.large,
    .portfolio-item.tall,
    .portfolio-item.wide{

        grid-column:span 1;

        grid-row:span 1;

        height:300px;

    }

}

/*==========================================
    TESTIMONIALS
==========================================*/

.testimonials-section{

    padding:100px 0;

    background:#ffffff;

}

.testimonial-card{

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#ffc107;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-text{

    color:#6c757d;

    line-height:1.9;

    font-size:16px;

    margin-bottom:30px;

}

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h5{

    margin:0;

    font-weight:700;

}

.client-info span{

    color:#198754;

    font-size:14px;

}

/*==========================================
    CONTACT
==========================================*/

.contact-section{

    padding:100px 0;

    background:#f8f9fa;

}

.cta-banner{

    background:linear-gradient(135deg,#198754,#146c43);

    border-radius:25px;

    padding:60px;

    color:#fff;

}

.contact-card{

    background:#fff;

    padding:35px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:38px;

    color:#198754;

    margin-bottom:20px;

}

.contact-card h5{

    margin-bottom:10px;

    font-weight:700;

}

.contact-card p{

    color:#6c757d;

    margin:0;

}

.map-section iframe{

    border-radius:20px;

    overflow:hidden;

}
/*==============================
    Page Banner
==============================*/

.page-banner{
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
                url("../images/hero/hero-2.jpg") center center/cover no-repeat;
    padding: 120px 0;
    color:#fff;
    text-align:center;
}

.page-title{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.page-subtitle{
    font-size:18px;
    color:#e9ecef;
    max-width:700px;
    margin:auto;
}

.breadcrumb{
    background:transparent;
}

.breadcrumb-item,
.breadcrumb-item a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
}

.breadcrumb-item.active{
    color:#7ed957;
}

@media (max-width:768px){

    .page-banner{
        padding:80px 0;
    }

    .page-title{
        font-size:36px;
    }

    .page-subtitle{
        font-size:16px;
    }

}