* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #fff;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
    width: 250px;
    background-color: #1a1a1a;
    padding: 10px;
    border-right: 1px solid #333;
}

.logo {
    font-size: 48px;
    font-weight: bold;
    color: #e5e5e5;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.1);
    margin-bottom: 40px;
}

.sidebar ul { list-style: none; }
.sidebar li {
    padding: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.sidebar li.active, .sidebar li:hover {
    background: #2a2a2a;
    color: #ffb400; /* Golden color */
    border-radius: 5px;
}

/* Main Content Styling */
.main-content {
    flex: 1;
    padding: 30px;
}

header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.banner {
    background: linear-gradient(45deg, #1a1a1a, #000);
    height: 200px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    border: 1px solid #222;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.card {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border: 1px solid #ffb400;
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.card h3 {
    margin: 10px 0;
    font-size: 16px;
    color: #eee;
}
img {
  width: 100%;       /* প্যারেন্ট ডিভের পুরো প্রস্থ নিবে */
  height: 200px;     /* আপনার পছন্দমতো একটি ফিক্সড হাইট দিন */
  object-fit: cover; /* ইমেজ কেটে পারফেক্টলি বক্সের ভেতর ফিট হবে */
}







css.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  margin-top: 20px;
}

.btn-nav, .page-num {
  padding: 8px 14px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-nav:hover:not(:disabled), .page-num:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.page-num.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  font-weight: bold;
}

.btn-nav:disabled {
  background-color: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
  border-color: #ddd;
}

.parent-container {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center;     /* Vertically center (Lagle use korben) */
}
.pagination-container { /* Apnar real container class ba ID er naam diben */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Projon hole ektu space baranor jonno */
}

/* Slider Base Style */
.slider-container {
    position: relative;
    max-width: 100%;
    height: 400px; /* Apnar pochondo mto height dite paren */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Chobi jeno kete na jay ba vitre thik moto thake */
}

/* Caption Style */
.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ff9900; /* Apnar logo-r yellow/orange color er sathe match kore */
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
}

/* Next & Previous Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: #ff9900;
    color: black;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }


/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active-dot, .dot:hover {
    background: #ff9900;
    transform: scale(1.2);
}