:root {
    --primary: #ee3239;
    --accent: #0d6efd;
    --secondary: #000342;
    --white: #fff;
    --dark: #111;
    --radius: 12px;
    --container-max: 1260px;
}

* {
    font-family: "IBM Plex Sans", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    color: var(--dark);
    background-color: #fff;
}

a {
    text-decoration: none !important;
    color: inherit;
}

/* Header */
.header-container,
.navigation-bar-container {
    max-width: var(--container-max);
    margin: auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-bar {
    background: #fff;
    padding: 0;
    transition: all .3s;
}

.navigation-bar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

nav ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    padding: 8px 10px;
    transition: border .2s;
}

nav ul li a:hover {
    border-bottom: 2px solid var(--primary);
}

.msafe-btn {
    background: var(--accent);
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius);
    border: none;
    transition: .3s;
}

.msafe-btn:hover {
    background: #0b5cd6;
}

/* Hero */
.dark-section {
    background: url(img/dark-section-bg.webp);
    background-size: cover;
    color: #fff;
    padding: 64px 0;
}

.dark-hero-wrap {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.hero-heading {
    font-size: 36px;
    line-height: 1.05;
    font-weight: 700;
}

.hero-sub {
    font-size: 18px;
    margin-top: 12px;
    opacity: 0.95;
}



.trust-badges {
    margin-top: 18px;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.9;
}

section {
    padding: 56px 0;
}

.feature-title {
    margin-bottom: 18px;
}

.feature-card-section {
    padding-bottom: 0px;
}

.feature-card-section .card {
    width: 100%;
    height: 100%;
}

/* Product Card */
.product-card {
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #fbfbfe 100%);
    padding: 12px;
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.product-card ul {
    list-style: decimal;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.product-card img {
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 46px rgba(20, 20, 40, 0.12);
}

.product-card h6 {
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
}

/* Table enhanced */
.table-enhanced {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.table-enhanced .table thead th {
    background: var(--secondary);
    color: #fff;
    border: 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .6px;
}

.table-enhanced .table tbody tr {
    transition: background .25s ease, transform .25s ease;
    background: linear-gradient(180deg, #fff, #fbfbff);
}

.table-enhanced .table tbody tr:hover {
    transform: translateY(-4px);
    background: linear-gradient(180deg, #f6fbff, #ffffff);
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.06);
}

.table-enhanced .table td,
.table-enhanced .table th {
    vertical-align: middle;
    border-top: 0;
}

.table-enhanced .table td {
    text-align: left;
    padding-left: 5rem;
}

/* Use & Delivery cards */
.use-card,
.delivery-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.use-card:hover,
.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.use-card:hover .icon-wrap,
.delivery-card:hover .icon-wrap {
    background: linear-gradient(135deg, #ee3239, #000342);
    color: #fff;
    transform: scale(1.1);
}

/* Trust logos */
#trust img {
    filter: grayscale(0.05);
    opacity: 0.95;
    transition: transform .3s ease;
}

#trust img:hover {
    transform: translateY(-6px);
}

/* enquiry sidebar */
#enquirySidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 340px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, .3);
    padding: 20px;
    transition: right .3s;
    z-index: 1052;
    overflow-y: auto;
}

#enquirySidebar.open {
    right: 0;
}

/* floating enquiry */
#floating-fixed-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.enquiry-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: background .3s, transform .2s;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

.enquiry-btn:hover {
    transform: translateY(-3px);
}

.enquiry-btn.bounce {
    animation: bounce 2.8s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.enquiry-btn.whatsapp {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.08);
}

/* Footer */
#footer {
    font-size: 15px;
    color: #ddd;
    position: relative;
    background: linear-gradient(180deg, var(--secondary) 0%, #000220 100%);
    padding-top: 60px;
}

#footer h5 {
    font-size: 16px;
}

#footer a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer a:hover {
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a::before {
    content: "›";
    color: var(--primary);
    margin-right: 6px;
    transition: margin 0.3s ease;
}

.footer-links li a:hover::before {
    margin-right: 10px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Scroll-to-top */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn:hover {
    background: #c91d24;
    transform: translateY(-3px);
}

/* Floating Mobile Buttons */
.floating-btns {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: floatPulse 2.5s infinite ease-in-out;
}

.call-btn {
    background: #ee3239;
}

.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}


/* Owl overrides to keep items equal height */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #000342;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ee3239;
}

/* small visual niceties */
.why-msafe-box {
    border-left: 5px solid var(--primary);
}

.why-msafe-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (min-width: 768px) {
    .floating-btns {
        display: none !important;
    }
}

/* Responsive tweaks */
@media (max-width: 991px) {



    .hero-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .header-container {
        flex-direction: column;
        gap: 8px;
    }

    .hero-heading {
        font-size: 22px;
    }

    .navigation-bar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navigation-bar-container a img {
        height: 50px !important;
    }

    .navigation-bar-container a.btn-success {
        padding: 8px;
        font-size: 14px;
    }

    .table-enhanced .table td {
        padding-left: 10px;
        font-size: 14px;
    }
}