/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6fa;
}

/* ========================= */
/* 🔥 BOOTSTRAP NAVBAR FIX */
/* ========================= */

.navbar {
    background: #4b0082 !important;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* LOGO */
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: white !important;
}

.navbar-brand img {
    border-radius: 5px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
    color: white !important;
    font-size: 15px;
    margin-left: 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #00d2ff !important;
}

/* MOBILE MENU */
.navbar-collapse {
    background: #4b0082;
    padding: 10px;
}

/* TOGGLER BUTTON */
.navbar-toggler {
    border: none;
}

/* ========================= */
/* 🔥 HERO */
/* ========================= */

.hero {
    background: #470971;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #00d2ff;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services {
    padding: 60px 20px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ========================= */
/* COMMON SECTIONS */
/* ========================= */

.corporate, .sell, .contact, .refurbished {
    padding: 60px 20px;
    text-align: center;
}

/* ========================= */
/* PRODUCT SECTION */
/* ========================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.product {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.product .price {
    font-size: 18px;
    margin-top: auto;
    font-weight: bold;
    color: green;
}

.btn-small {
    margin-top: 10px;
    padding: 10px;
    background: #00ff45;
    text-decoration: none;
    color: black;
    border-radius: 4px;
    font-weight: bold;
}

/* ========================= */
/* TRUST SECTION */
/* ========================= */

.trust {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.trust h2 {
    color: #470971;
}

.trust ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
    padding: 0;
}

.trust li {
    background: #f5f6fa;
    margin: 12px 0;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust li::before {
    content: "✔";
    color: #00c853;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
    background: #470971;
    color: white;
    padding: 15px;
    text-align: center;
}

.footer-content a {
    color: #00d2ff;
}
