body { font-family: 'Segoe UI', sans-serif; }

.hero {
height: 90vh;
background: url('../images/hero.jpg') center/cover no-repeat;
}

.section-padding { padding:80px 0; }

.section-title {
font-weight:700;
margin-bottom:40px;
}

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

.whatsapp-btn {
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:#fff;
padding:12px 18px;
border-radius:50px;
text-decoration:none;
font-weight:600;
box-shadow:0 5px 15px rgba(0,0,0,.3);
}
.brand-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.navbar {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.about-img {
    border-radius: 15px;
    transition: transform .4s ease;
}

.about-img:hover {
    transform: scale(1.03);
}
.about-img {
    border-radius: 15px;
    transition: transform .4s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.stat-box {
    background: linear-gradient(135deg, #b30000, #e60000);
    color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.stat-text {
    font-size: 16px;
    margin-top: 10px;
}
<style>
footer a:hover {
  color: #dc3545 !important;
  transition: 0.3s;
}

footer h5 {
  border-left: 4px solid #dc3545;
  padding-left: 10px;
}
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card img {
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

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

.swiper {
    padding-bottom: 40px;
}
</style>
.swiper {
    width: 100%;
}

.swiper-slide {
    width: auto;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card img {
    max-height: 180px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-8px);
}


.products-title-band {
    background: #dc3545;
    padding: 50px 0;
    position: relative;
}

.products-title-band::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: white;
}


.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.contact-hero {
    background: linear-gradient(135deg, #111, #333);
    padding: 100px 0;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-box {
    border-radius: 15px;
    overflow: hidden;
}
.social-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon.instagram { background: #E4405F; }
.social-icon.facebook { background: #1877F2; }
.social-icon.linkedin { background: #0A66C2; }
.social-icon.youtube { background: #FF0000; }

.social-icon:hover {
    transform: translateY(-5px);
    opacity: 0.85;
}