/* =========================================
   GLOBAL STYLES
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #333;
    overflow-x: hidden;
    padding-top: 90px;
    line-height: 1.6;
}

/* =========================================
   IMAGES
========================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   CONTAINERS
========================================= */

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0d6efd !important;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
}

/* =========================================
   HERO SECTION
========================================= */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-top: 15px;
}

/* =========================================
   SECTIONS
========================================= */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #0d6efd;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* =========================================
   CARDS
========================================= */

.card {
    height: 100%;
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    display: flex;
    flex-direction: column;
}

.placeholder-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* =========================================
   PRODUCT LIST
========================================= */

.product-list {
    list-style: none;
    padding-left: 0;
    font-size: 15px;
    line-height: 1.8;
}

.product-list li::before {
    content: "✔ ";
    color: #0d6efd;
    font-weight: bold;
}

/* =========================================
   BOXES
========================================= */

.why-box,
.values-box,
.contact-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.values-box {
    transition: 0.3s ease;
}

.values-box:hover {
    transform: translateY(-5px);
}

.contact-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* =========================================
   FOOTER
========================================= */

footer {
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* =========================================
   WHATSAPP FLOAT
========================================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 9999;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .placeholder-img {
        height: 280px;
    }
}

@media (max-width: 768px) {

    body {
        padding-top: 80px;
    }

    .navbar-brand {
        font-size: 15px;
    }

    .logo {
        width: 50px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 12px;
    }

    .navbar-nav .nav-link {
        border-bottom: 1px solid #eee;
        padding: 12px 10px !important;
    }

    .hero {
        min-height: auto;
        padding: 90px 15px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    section {
        padding: 50px 0;
    }

    .placeholder-img {
        height: auto;
    }

    .contact-img {
        height: auto;
    }

    .btn,
    button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    body {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .product-list {
        font-size: 14px;
    }

    .contact-box {
        padding: 20px;
    }

    .whatsapp-float {
        padding: 12px 16px;
        font-size: 14px;
    }
}
ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

ul li {
    list-style-type: none;
}
.product-list,
.navbar-nav,
.why-box ul {
    list-style: none;
    padding-left: 0;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}
