                .hero-banner {
            background: linear-gradient(120deg, #0078d7 60%, #e3f0fc 100%);
            color: #fff;
            padding: 80px 20px 60px 20px;
            text-align: center;
            position: relative;
        }
        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        .hero-banner h1 {
            font-size: 2.8em;
            margin-bottom: 18px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .hero-banner p {
            font-size: 1.3em;
            margin-bottom: 18px;
        }
        .hero-btn {
            display: inline-block;
            background: #ffd700;
            color: #0078d7;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .hero-btn:hover {
            background: #fff;
            color: #0078d7;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        footer {
            margin-top: 40px;
            text-align: center;
            color: #888;
        }

/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f9f9f9;
    color: #222;
}
/* Card section styles */
.cards-section {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}
.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    width: 300px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-6px) scale(1.03);
}
.card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
}

/* Image section styles */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 32px;
}
.image-section img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Container card styles */
.container-card {
    background: #e3f0fc;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
}
.image-description-container {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px;
    max-width: 900px;
    margin: 40px auto;
}
.image-description-container img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.image-description-container .description {
    flex: 1;
}
    .hero-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 32px;
    }
    .hero-nav a {
        color: #fff;
        background: transparent;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        padding: 10px 28px;
        border-radius: 24px;
        transition: background 0.2s, color 0.2s;
        display: inline-block;
    }
    .hero-nav a:hover {
        background: #ffd700;
        color: #0078d7;
    }
    

    #checkout {
  margin-top: 40px;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 2px solid #ccc;
}
#checkout h2 {
  margin-bottom: 10px;
}
#checkout ul {
  list-style: none;
  padding-left: 0;
}
#checkout li {
  padding: 6px 0;
}
#checkout button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: teal;
  color: white;
  border: none;
  cursor: pointer;
}

/* Contact page styles (moved from Contactus.php) */
.contacts { max-width:1000px; margin:26px auto; padding: 0 18px 48px; display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.contacts .card { background:#fff; border-radius:12px; box-shadow:0 8px 22px rgba(8,30,50,0.06); padding:16px 18px; width:320px; display:flex; gap:14px; align-items:center; }
.icon { width:64px; height:64px; flex:0 0 64px; display:flex; align-items:center; justify-content:center; border-radius:10px; }
.icon.email { background: linear-gradient(180deg, rgba(0,120,215,0.12), rgba(0,120,215,0.04)); }
.icon.whatsapp { background: linear-gradient(180deg, rgba(37,211,102,0.12), rgba(37,211,102,0.04)); }
.icon.pobox { background: linear-gradient(180deg, rgba(255,140,0,0.12), rgba(255,140,0,0.04)); }
.contacts h2 { font-size:1.05rem; margin:0 0 6px 0; }
.contacts p { margin:0; color:#234; }
.contact-link { color:#0078d7; font-weight:600; text-decoration:none; }

@media (max-width:700px){ .contacts .card{ width:100%; } }

/* Floating checkout button (site-wide). Added to ensure visibility on all pages.
   We keep rules specific and use !important sparingly to override inline/page-local styles
   if they hide or reposition the button. We'll de-duplicate page-level anchors later. */
.fab-checkout {
    position: fixed !important;
    right: 24px !important;
    bottom: 24px !important;
    background: #ffd700 !important;
    color: #0078d7 !important;
    font-weight: bold !important;
    font-size: 1.05rem !important;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18) !important;
    text-decoration: none !important;
    z-index: 2147483647 !important; /* effectively top-most */
    transition: background 0.15s, color 0.15s !important;
    display: inline-block !important;
    pointer-events: auto !important;
}
.fab-checkout:hover {
    background: #0078d7 !important;
    color: #ffd700 !important;
}

@media (max-width:480px) {
    .fab-checkout { right: 12px !important; bottom: 12px !important; padding: 10px 14px !important; font-size: 1rem !important; }
}
