body {
    font-family: Arial, sans-serif;
    font-size: 14px; 
}

h1, h2, h3, h4, h5 {
    font-size: 1.2rem; 
}

#searchInput {
    max-width: 400px;
}

.custom-header {
    background-color: #ffffff !important;
}

.customer-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* আইকন ও টেক্সটের মাঝে স্পেস */
    background: linear-gradient(90deg, #25D366, #128C7E); /* WhatsApp স্টাইল গ্রেডিয়েন্ট */
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.customer-service-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #128C7E, #25D366); /* hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.news-bar {
    width: 100%;
    background-color: #222; /* blacg bg */
    color: #fff; /* whitw text */
    overflow: hidden;
    white-space: nowrap;
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ff5722; /* border line */
}

.news-content {
    display: inline-block;
    padding-left: 100%; 
    animation: scrollText 15s linear infinite; /* scroll effect */
    font-size: 16px;
    font-weight: bold;
}

@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


.search-card {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.search-card label {
    font-size: 12px;
}

.search-card input, 
.search-card select {
    border-radius: 5px;
}

.search-card button {
    border-radius: 5px;
    font-size: 12px;
    padding: 8px;
}

/* ----------- responsive table ----------- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    /* table-layout: fixed;  */
}

table thead th {
    background-color: #ffffff !important;     
    color: #000; 
    border: 1px solid #ddd; 
}


table th, table td {
    text-align: center;
    vertical-align: middle;
    padding: 6px; 
    font-size: 12px; 
    white-space: nowrap; 
}

/* column width */
table th:nth-child(1), table td:nth-child(1) { width: 10%; }
table th:nth-child(2), table td:nth-child(2) { width: 25%; }
table th:nth-child(3), table td:nth-child(3) { width: 15%; }
table th:nth-child(4), table td:nth-child(4) { width: 25%; }
table th:nth-child(5), table td:nth-child(5) { width: 25%; }

/* WhatsApp icon size */
table td a i.fab.fa-whatsapp,
.navbar a i.fab.fa-whatsapp {
    font-size: 18px !important;  
    padding: 2px !important;     
}

table td a img {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
}

.fade-row {
    animation: fadeZoomIn 0.5s ease-in-out;
}

@keyframes fadeZoomIn {
    from {
        opacity: 0;
        transform: scale(0.95); 
        background-color: transparent;
    }
    to {
        opacity: 1;
        transform: scale(1); 
        background-color: #fff9a8; 
    }
}


@keyframes fadeIn {
    from { background-color: transparent; opacity: 0; }
    to { background-color: yellow; opacity: 1; }
}


.card-title {
    color: #323232!important;   
    font-size: 18px !important; 
}

.footer-links a {
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #ff5722; /* Hover এ কমলা রঙ */
}

.otherspage-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    font-size: 15px;
}

.otherspage-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.otherspage-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.otherspage-container p {
    margin-bottom: 15px;
    color: #555;
}

.otherspage-container a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
}

.otherspage-container a:hover {
    text-decoration: underline;
}


       

/* ----------- responsive fixes ----------- */
@media (max-width: 576px) {
    table th, table td {
        font-size: 12px; 
        padding: 4px;
    }
}
