:root{
    --bg: #f5f6f7;
    --primary: #1F4B3F;
    --primary-dark: #163730;
    --accent: #E08E45;
    --accent-2: #C44536;
    --text: #2B2B2B;
    --muted: #7A766F;
    --card-bg: #FFFFFF;
}

*{ font-family: 'Hind Siliguri', sans-serif; }
h1,h2,h3{ font-family: 'Hind Siliguri', serif; }

body{
    background: var(--bg);
    color: var(--text);
}

a{ text-decoration: none; }

/* ===== Top bar ===== */
.topbar{
    background-color: var(--primary);
    color: var(--primary);
    font-size: .92rem;
}
.logo img{
    width: auto;
    height: 85px;
}


/* ===== Notice bar (scrolling marquee) ===== */
.notice-bar{
    background: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.notice-track{
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: notice-scroll 10s linear infinite;
    padding: 6px 0;
}
.notice-track span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    padding-right: 50px;
}
.notice-track span i{ color: var(--accent) }

@keyframes notice-scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

.topbar-main{
    background: var(--bg);
    padding: 10px;
}

.phone-box{
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}
.phone-box i{
    font-size: 1.3rem;
    color: var(--accent);
}
.phone-box .num{
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1;
}
.phone-box small{
    display: block;
    color: var(--primary);
    font-size: 14px;
    font-weight: bold;
}

/* ===== Hero / Slider ===== */
.carousel-item{
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;

    border: 1px solid var(--primary);
    border-radius: 16px;
}


.carousel-indicators [data-bs-target]{
    background-color: var(--accent);
}
.carousel-control-prev-icon, .carousel-control-next-icon{
    filter: drop-shadow(0 0 2px rgba(0,0,0,.4));
}

/* ===== Products ===== */
.section-title{
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.section-sub{
    color: var(--muted);
    margin-bottom: 32px;
}

.product-card{
    background: var(--card-bg);
    border: 1px solid #eee2d3;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(31,75,63,.12);
}
.product-card img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #f1e7d8;
}
.product-card .card-body{
    padding: 14px;
    text-align: center;
}
.product-card .p-name{
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 12px;
    min-height: 2.4em;
}
.btn-more{
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 30px;
    transition: .2s ease;
}
.btn-more:hover{
    background: var(--primary);
    color: #fff;
}

/* ===== Footer ===== */
footer{
    background: var(--primary-dark);
    color: rgba(255,255,255,.85);
    padding: 40px 0 18px;
    margin-top: 25px;
}
footer h6{
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}
footer a{
    color: rgba(255,255,255,.7);
    display: block;
    margin-bottom: 8px;
    font-size: .92rem;
    transition: color .15s ease;
}
footer a:hover{ color: var(--accent); }
footer .social a{
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 0;
}
footer .social a:hover{ background: var(--accent); color: #fff; }
footer .copy{
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 24px;
    padding-top: 16px;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.5);
}
footer .copy a{
    display: unset;
}

@media (max-width: 768px){
    .carousel-item{ height: 220px; }
    .carousel-caption-custom h2{ font-size: 1.8rem; }
    .logo img{
        height: 40px;
    }
    .phone-box .num{ font-size: .85rem; }
    .phone-box small{ font-size: .62rem; }
    .phone-box i{ font-size: 1.1rem; }
    .notice-track span{ font-size: .78rem; padding-right: 36px; }
}
