﻿/* ================= ROOT ================= */

html {
    font-size: 14px;
}

@media (min-width:768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter,system-ui;
    background: #f5f7fa;
    color: #2f3f4f;
}


/* ================= BRAND COLORS ================= */

/*
Primary Blue : #2f3f4f
Accent Red : #e14b3b
Soft Grey : #cfd3d7
Light BG : #f5f7fa
*/


/* ================= TOP BAR ================= */

.top-bar {
    background: #f1f3f5;
    font-size: 13px;
    color: #6c757d;
    letter-spacing: .3px;
}


/* ================= NAVBAR ================= */

.main-navbar {
    background: #fff;
    padding: 18px 0;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #2f3f4f;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 12px;
    transition: all .3s ease;
}

    .navbar-nav .nav-link:hover {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: #fff !important;
    }

    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: #fff !important;
    }

@media(max-width:991px) {

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 6px;
    }
}


/* ================= BRAND ================= */

.brand-logo {
    height: 48px;
    width: 88px;
    border-radius: 8px;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg,#e53935,#29466f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tag {
    font-size: 12px;
    color: #888;
}

.brand-wrap {
    align-items: center;
}


/* ================= HERO SLIDER ================= */

.premium-slider {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
}

.hero-slide {
    height: 650px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

    .hero-slide .row {
        min-height: 650px;
    }

    .hero-slide .col-lg-6 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.carousel-item {
    height: 650px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(47,63,79,.85),rgba(47,63,79,.35));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .hero-content h1 {
        font-size: 46px;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 18px;
        opacity: .9;
    }


/* ================= HERO BUTTON ================= */

.hero-btn {
    background: #e14b3b;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    transition: .3s;
}

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,.25);
    }


/* ================= PRODUCT IMAGE FLOAT ================= */

.hero-product-img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.35));
    animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}


/* ================= SECTION ================= */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f3f4f;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #e14b3b;
    margin: 15px auto;
}

.section-desc {
    max-width: 650px;
    margin: auto;
    color: #6c757d;
}


/* ================= CARDS ================= */

.welcome-card,
.product-card,
.service-card,
.contact-card,
.blog-card,
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

    .welcome-card:hover,
    .product-card:hover,
    .service-card:hover,
    .contact-card:hover,
    .blog-card:hover {
        transform: translateY(-6px);
    }


/* ================= PRODUCTS ================= */

.products-section {
    background: #f7f9fc;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    transition: .3s;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.product-img-box {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

    .product-img-box img {
        height: 150px;
        object-fit: contain;
    }

.product-body {
    padding: 20px;
    text-align: center;
}

    .product-body h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .product-body p {
        font-size: 14px;
        color: #666;
        min-height: 50px;
    }

    .product-body .btn {
        margin-top: 10px;
        background: linear-gradient(90deg,#e53935,#29466f);
        border: none;
        font-weight: 600;
    }

        .product-body .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }


/* ================= PAGE HERO ================= */

.page-hero {
    width: 100%;
    height: 420px;
    background-image: url('/images/abouthero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .page-hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 420px;
        background: rgba(0,0,0,0.35);
    }

.hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width:768px) {

    .page-hero {
        height: 280px;
    }
}


/* ================= MODAL ================= */

.modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.modal-header {
    position: relative;
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
}

    .modal-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,#e53935,#29466f);
    }

.modal-body img {
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.modal-body .btn {
    display: block;
    margin-left: auto;
    margin-top: 20px;
    background: linear-gradient(90deg,#e53935,#29466f);
    border: none;
    font-weight: 600;
}

    .modal-body .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }


/* ================= CTA ================= */

.cta-section {
    background: linear-gradient(120deg,#0d6efd,#0a58ca);
    color: #fff;
}


/* ================= FOOTER ================= */

.footer-cta {
    background: linear-gradient(90deg,#e14b3b,#2f3f4f);
    color: #fff;
    padding: 16px 0;
    font-weight: 600;
}

.footer-dark {
    background: #1f2933;
    color: #cfd3d7;
}

.footer-bottom {
    background: #111827;
    padding: 14px;
    font-size: 14px;
    text-align: center;
    color: #9ca3af;
}


/* ================= CHAT ================= */

.chat-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg,#e14b3b,#2f3f4f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    z-index: 999;
}

.chat-box {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
}

.chat-header {
    background: #2f3f4f;
    color: #fff;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    flex: 1;
    padding: 15px;
    background: #f5f7fa;
    overflow: auto;
}


/* ================= SCROLLBAR ================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #e14b3b;
    border-radius: 20px;
}

/* ================= TRENDING MEDICINES ================= */

.trending-section {
    background: #fff;
}

    .trending-section .product-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        transition: 0.3s;
        height: 100%;
    }

        .trending-section .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .trending-section .product-card img {
            height: 140px;
            object-fit: contain;
            margin-bottom: 10px;
        }

        .trending-section .product-card h6 {
            font-weight: 600;
            margin-top: 10px;
        }

    .trending-section .price {
        color: #e14b3b;
        font-size: 14px;
        font-weight: 600;
    }

    /* BUTTON SAME AS PRODUCTS */

    .trending-section .btn {
        background: linear-gradient(90deg,#e53935,#29466f);
        border: none;
        font-weight: 600;
        padding: 6px 14px;
    }

        .trending-section .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

/* ================= FOOTER CTA ================= */

.footer-cta {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: #fff;
    padding: 18px 0;
    font-weight: 500;
}

    .footer-cta span {
        font-size: 16px;
    }

    .footer-cta .btn {
        border: 1px solid #fff;
        color: #fff;
        padding: 6px 16px;
        font-weight: 600;
        transition: 0.3s;
    }

        .footer-cta .btn:hover {
            background: #fff;
            color: #29466f;
        }


/* ================= DARK FOOTER ================= */

.footer-dark {
    background: #1f2d3d;
    color: #cfd3d7;
}

    .footer-dark h5,
    .footer-dark h6 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 15px;
    }


/* LOGO */

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}


/* PARAGRAPH */

.footer-dark p {
    font-size: 14px;
    line-height: 1.7;
}


/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        font-size: 14px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: 0.3s;
    }

        .footer-links li:hover {
            color: #e53935;
            padding-left: 6px;
        }


/* RECENT POSTS */

.post {
    font-size: 14px;
    margin-bottom: 8px;
    cursor: pointer;
}

    .post:hover {
        color: #e53935;
    }


/* COPYRIGHT */

.footer-bottom {
    background: #0d1b2a;
    color: #9ca3af;
    padding: 14px;
    font-size: 14px;
    margin-top: 20px;
}


/* RESPONSIVE */

@media(max-width:768px) {

    .footer-cta .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.footer-social i {
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
}

    .footer-social i:hover {
        color: #e53935;
    }
/* PRODUCT CARD */

.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

/* IMAGE */

.product-img {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

    .product-img img {
        height: 150px;
        object-fit: contain;
    }

/* INFO */

.product-info {
    padding: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .product-info h6 {
        font-weight: 600;
        margin-bottom: 6px;
    }

/* CATEGORY */

.price {
    color: #e14b3b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* BUTTON FULL WIDTH */

.product-btn {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(90deg,#e53935,#29466f);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    transition: 0.3s;
}

    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
/* SECTION */

.trending-section {
    background: #f8fbff;
}


/* CARD */

.medicine-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
    position: relative;
}

    .medicine-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }


/* IMAGE */

.medicine-img {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

    .medicine-img img {
        height: 150px;
        object-fit: contain;
    }


/* BODY */

.medicine-body {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}


/* TITLE */

.medicine-title {
    font-weight: 600;
    margin-bottom: 6px;
}


/* CATEGORY */

.medicine-category {
    display: inline-block;
    font-size: 13px;
    color: #e14b3b;
    margin-bottom: 15px;
    font-weight: 600;
}


/* BADGE */

.medicine-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}


/* BUTTON */

.medicine-btn {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(90deg,#e53935,#29466f);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    transition: 0.3s;
}

    .medicine-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

/* MEDICINE MODAL DESIGN */
.medicine-modal {
    padding: 10px 0;
}

/* IMAGE CARD */

.medicine-img-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

    .medicine-img-card img {
        max-height: 240px;
        object-fit: contain;
    }

/* DESCRIPTION */

.medicine-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* FEATURE LIST */

.medicine-features {
    list-style: none;
    padding: 0;
}

    .medicine-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .medicine-features i {
        color: #e53935;
        font-size: 18px;
    }

/* BUTTON */

.medicine-btn {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    margin-top: 15px;
}

    .medicine-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.modal-header {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: #fff;
    border: none;
}

    .modal-header .btn-close {
        filter: invert(1);
    }
/* HERO SLIDER */

.hero-slider {
    position: relative;
}

/* SLIDE */

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(15,43,70,0.75), rgba(15,43,70,0.55) );
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
}

/* CARD */

.hero-card {
    max-width: 520px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    padding: 35px;
    border-radius: 10px;
    color: white;
}

    /* TITLE */

    .hero-card h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    /* TEXT */

    .hero-card p {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

/* BUTTON */

.hero-btn {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

/* INDICATORS */

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    opacity: .5;
}

.carousel-indicators .active {
    opacity: 1;
    background: #e53935;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .hero-slide {
        height: 70vh;
    }

    .hero-card h1 {
        font-size: 28px;
    }

    .hero-card {
        padding: 20px;
    }
}
/* TOP BAR */

.top-brand-bar {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    font-size: 13px;
    padding: 6px 0;
}

.brand-message {
    font-weight: 500;
}

.brand-contact {
    opacity: .9;
}


/* NAVBAR */

.main-navbar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* LOGO */

.brand-logo {
    height: 45px;
    width: auto;
    border-radius: 4px;
}

.brand-title {
    font-weight: 700;
    font-size: 16px;
    color: #1b2a4e;
    line-height: 1;
}

.brand-tag {
    font-size: 12px;
    color: #777;
}


/* NAV LINKS */

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin-left: 15px;
    padding: 6px 12px;
    border-radius: 5px;
    transition: .3s;
}

    /* HOVER */

    .navbar-nav .nav-link:hover {
        background: #f4f8fc;
        color: #e53935;
    }

    /* ACTIVE */

    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: white;
    }


/* MOBILE */

@@media(max-width:991px) {

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 6px;
    }
}
/* NAVBAR BASE */

.main-navbar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    z-index: 1000;
}


/* MENU LINKS */

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 16px;
    border-radius: 6px;
    transition: .3s;
}


    /* HOVER */

    .navbar-nav .nav-link:hover {
        background: #f4f8fc;
        color: #e53935;
    }


    /* ACTIVE */

    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: white;
    }


/* MOBILE MENU */

@@media(max-width:991px) {

    /* make menu full width */

    .navbar-collapse {
        background: #ffffff;
        margin-top: 10px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }


    /* stack menu items */

    .navbar-nav {
        width: 100%;
    }


        /* full width links */

        .navbar-nav .nav-item {
            width: 100%;
        }


        /* spacing */

        .navbar-nav .nav-link {
            display: block;
            width: 100%;
            margin-bottom: 8px;
            padding: 12px 15px;
            border-radius: 6px;
        }


        /* divider line */

        .navbar-nav .nav-item:not(:last-child) {
            border-bottom: 1px solid #eee;
            padding-bottom: 6px;
            margin-bottom: 6px;
        }
}
/* BRAND TITLE */

.brand-title {
    font-weight: 800;
    font-size: 22px; /* bigger text */
    color: #1b2a4e;
    line-height: 1.1;
    position: relative;
}

    /* UNDERLINE */

    .brand-title::after {
        content: "";
        display: block;
        width: 65px;
        height: 4px; /* thicker underline */
        background: linear-gradient(90deg,#e53935,#29466f);
        margin-top: 4px;
        border-radius: 2px;
    }

/* TAGLINE */

.brand-tag {
    font-size: 12px;
    color: #777;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: #ffffff;
        padding-left: 4px;
    }
/* GRADIENT TEXT */

.brand-gradient {
    position: relative;
    background: linear-gradient(90deg,#e53935,#29466f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    cursor: pointer;
}


    /* UNDERLINE */

    .brand-gradient::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg,#e53935,#29466f);
        transition: width .35s ease;
        border-radius: 3px;
    }


    /* HOVER EFFECT */

    .brand-gradient:hover::after {
        width: 100%;
    }


    /* SUBTLE HOVER SCALE */

    .brand-gradient:hover {
        transform: translateY(-1px);
        transition: all .3s ease;
    }
/* ================= GLOBAL ================= */

body {
    font-family: 'Segoe UI',sans-serif;
    color: #333;
    background: #ffffff;
}

.section-space {
    padding: 80px 0;
}

@media(max-width:768px) {
    .section-space {
        padding: 50px 0;
    }
}


/* ================= BRAND ================= */

.brand-gradient {
    background: linear-gradient(90deg,#e53935,#29466f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

    .brand-gradient::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg,#e53935,#29466f);
        transition: .3s;
    }

    .brand-gradient:hover::after {
        width: 100%;
    }


/* ================= HEADER ================= */

.top-brand-bar {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    font-size: 14px;
    padding: 6px 0;
}

.brand-logo {
    height: 45px;
    border-radius: 4px;
}

.brand-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b2a4e;
}

.brand-tag {
    font-size: 12px;
    color: #777;
}

.main-navbar {
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 15px;
    color: #333;
}

    .navbar-nav .nav-link.active {
        color: #e53935;
    }

    .navbar-nav .nav-link:hover {
        color: #29466f;
    }


/* ================= HERO ================= */

.hero-slide {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-box {
    max-width: 550px;
}

    .hero-box h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .hero-box p {
        font-size: 16px;
        margin-bottom: 25px;
    }


/* ================= BUTTONS ================= */

.hero-btn,
.product-btn,
.btn-primary {
    background: linear-gradient(90deg,#e53935,#29466f);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: .3s;
}

    .hero-btn:hover,
    .product-btn:hover,
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        color: white;
    }


/* ================= SECTION TITLES ================= */

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: auto;
}


/* ================= WELCOME CARDS ================= */

.welcome-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
    height: 100%;
}

    .welcome-card:hover {
        transform: translateY(-6px);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    border-radius: 50%;
    font-size: 24px;
}


/* ================= PRODUCT CARDS ================= */

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-img {
    padding: 20px;
    text-align: center;
}

    .product-img img {
        max-height: 120px;
        object-fit: contain;
    }

.product-info {
    padding: 20px;
    text-align: center;
}

    .product-info h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

.price {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}


/* ================= ABOUT PAGE ================= */

.about-img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

    .about-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    .about-list i {
        color: #e53935;
        font-size: 18px;
    }


/* ================= VISION / WHY CARDS ================= */

.vision-card,
.why-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
    height: 100%;
}

    .vision-card:hover,
    .why-card:hover {
        transform: translateY(-5px);
    }

.vision-icon,
.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    margin: auto;
    margin-bottom: 15px;
}


/* ================= STATS ================= */

.about-stats {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    padding: 70px 0;
}

    .about-stats h2 {
        font-size: 40px;
        font-weight: 700;
    }

    .about-stats p {
        opacity: .9;
    }


/* ================= CERTIFICATION ================= */

.cert-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

    .cert-card:hover {
        transform: translateY(-5px);
    }

    .cert-card i {
        font-size: 35px;
        color: #e53935;
        margin-bottom: 10px;
    }


/* ================= DISTRIBUTION ================= */

.dist-card {
    background: #f8fbff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

    .dist-card h3 {
        font-size: 36px;
        font-weight: 700;
        color: #e53935;
    }

    .dist-card p {
        font-size: 16px;
        margin-top: 8px;
    }


/* ================= FOOTER ================= */

.footer-cta {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    padding: 20px 0;
}

.footer-dark {
    background: #1b2a4e;
    color: #ccc;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-logo-img {
    height: 40px;
}

.footer-bottom {
    background: #16213a;
    padding: 10px;
    color: #aaa;
    font-size: 14px;
}


/* ================= CHAT BOT ================= */

.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 999;
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(90deg,#e53935,#29466f);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.chat-body {
    height: 200px;
    overflow: auto;
    padding: 10px;
    font-size: 14px;
}

.chat-footer {
    display: flex;
    border-top: 1px solid #eee;
}

    .chat-footer input {
        flex: 1;
        border: none;
        padding: 10px;
    }

    .chat-footer button {
        border: none;
        background: #e53935;
        color: white;
        padding: 0 15px;
    }


/* ================= RESPONSIVE ================= */

@media(max-width:768px) {

    .hero-box h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .navbar-nav {
        text-align: center;
    }
}
/* ================= PRODUCT FILTER ================= */

.product-filter {
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 22px;
    margin: 6px;
    border-radius: 25px;
    border: 2px solid transparent;
    background: #fff;
    color: #1b2a4e;
    font-weight: 500;
    transition: .3s;
}

    /* ACTIVE BUTTON */

    .filter-btn.active {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: white;
        border: none;
    }

    /* HOVER EFFECT */

    .filter-btn:hover {
        background: linear-gradient(90deg,#e53935,#29466f);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }