body{
    background:#f5f7f6;
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    padding:18px 0;
}

.navbar-brand{
    font-size:30px;
}

.nav-link{
    margin-left:10px;
    font-weight:500;
}

/* HERO BANNER */

.hero-banner{
    position:relative;
    height:85vh;
    background:url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-box{
    max-width:600px;
    background:rgba(0,0,0,0.45);
    padding:40px;
    border-radius:24px;
    backdrop-filter:blur(4px);
}

.hero-badge{
    background:#198754;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    color:#fff;
    font-size:54px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text{
    color:#f3f4f6;
    font-size:20px;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    border-radius:14px;
    padding:14px 28px;
    font-weight:600;
}

/* BUTTONS */

.btn{
    transition:0.3s;
    border-radius:12px;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-success{
    background:#198754;
    border:none;
}

/* CARDS */

.card{
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.card img{
    height:250px;
    object-fit:cover;
}

/* FEATURES */

.feature-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box h3{
    margin-bottom:20px;
}

/* PRODUCTS */

.product-card{
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.product-card img{
    height:300px;
    object-fit:cover;
}

.section-title{
    font-size:42px;
}

/* NEWSLETTER */

.newsletter-section{
    background:#fff;
}

.newsletter-form{
    max-width:600px;
}

.newsletter-form .form-control{
    height:60px;
    border-radius:12px 0 0 12px;
}

.newsletter-form .btn{
    border-radius:0 12px 12px 0;
}

/* FOOTER */

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
}

.footer-links a:hover{
    color:#198754;
}

/* GALLERY */

.gallery-thumb{
    transition:0.3s;
}

.gallery-thumb:hover{
    transform:scale(1.05);
    border:2px solid #198754;
}

#mainImage{
    transition:0.3s;
}
/* FLOATING CONTACT BUTTONS */

.floating-contact-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-btn{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:all .3s ease;
}

.floating-btn:hover{
    transform:scale(1.1);
    color:#fff;
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#22c55e;
}
/* MOBILE */

@media(max-width:768px){

    .hero-banner{
        height:70vh;
    }

    .hero-box{
        padding:25px;
    }

    .hero-title{
        font-size:36px;
    }

    .hero-text{
        font-size:16px;
    }

    .navbar-brand{
        font-size:24px;
    }

    .section-title{
        font-size:32px;
    }

}