/*==================================================
HOME PAGE
==================================================*/


/*==================================================
Hero
==================================================*/

.hero{

    background:
        linear-gradient(
            rgba(75,33,122,.88),
            rgba(75,33,122,.88)
        ),
        url("../images/hero/hero-bg.jpg")
        center center / cover;

    min-height:90vh;

    display:flex;
    align-items:center;

    color:#fff;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:20px;

}

.hero h1{

    color:#fff;

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    color:#f2f2f2;

    font-size:18px;

    margin-bottom:35px;

}

.hero-buttons .btn{

    margin-right:15px;
    margin-bottom:15px;

}

.hero-image{

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}


/*==================================================
Why Choose Us
==================================================*/

.why-us{

    background:#fafafa;

}


/*==================================================
Featured Products
==================================================*/

.products{

    background:#fff;

}

.product-card{

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.product-card img{

    height:230px;

    object-fit:cover;

}

.product-card h5{

    padding:20px;

    margin:0;

    color:var(--primary);

    font-weight:700;

}


/*==================================================
Testimonials Section
==================================================*/

.testimonials{

    background:var(--light);

}


/*==================================================
Call To Action
==================================================*/

.cta-section{

    background:
        linear-gradient(
            rgba(75,33,122,.95),
            rgba(75,33,122,.95)
        ),
        url("../images/hero/cta-bg.jpg")
        center/cover;

    color:#fff;

}

.cta-section h2{

    color:#fff;

    font-size:42px;

    font-weight:700;

}

.cta-section p{

    color:#eee;

    font-size:18px;

}


/*==================================================
Contact Preview
==================================================*/

.contact-preview{

    background:#fff;

}


/*==================================================
Floating WhatsApp Button
==================================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:var(--shadow-lg);

    z-index:999;

    transition:var(--transition);

}

.whatsapp-btn:hover{

    transform:scale(1.1);

    color:#fff;

}


/*==================================================
Back To Top
==================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:var(--gold);

    color:#fff;

    display:none;

    cursor:pointer;

    font-size:20px;

    transition:var(--transition);

    z-index:998;

}

#backToTop:hover{

    background:var(--primary);

}


/*==================================================
Homepage Animations
==================================================*/

.feature-box,
.product-card,
.contact-box,
.testimonial-card{

    animation:fadeUp .8s ease;

}