* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #f8f8f8;
  color: #222;
  overflow-x: hidden;
}
a {
    text-decoration: none;
    color:#222;
}

/* ✅ Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
#loadMore {
    display: block;
    margin: 40px auto;
    padding: 12px 30px;
    font-size: 16px;
    font-family: "Noto Sans Bengali", sans-serif;
    color: #fff;
    background-color: #e60000; /* red */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 0, 0, 0.3);
  }

  #loadMore:hover {
    background-color: #cc0000; /* darker red */
    box-shadow: 0 6px 14px rgba(204, 0, 0, 0.4);
    transform: scale(1.05);
  }

  #loadMore:active {
    transform: scale(0.95);
  }

.preloader-content img {
  width: 350px;
  height: auto;
  animation: fadeIn 2.5s ease-in-out infinite alternate;
}

@keyframes fadeIn {
  from { opacity: 0.4; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.menu-icon {
  position: absolute;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
}

.logo img {
  width: 220px;
  height: auto;
}

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 60px;
}

.sidebar.active {
  width: 220px;
}

.sidebar a {
  display: block;
  color: #333;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.sidebar a:hover {
  background-color: #f2f2f2;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 26px;
  text-decoration: none;
  color: #333;
}

/* News Section */
.news-section {
  padding: 15px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}
.news-card a {
    text-decoration: none;
    color:#222;
}

.news-card img {
  width: 100px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
}

.news-content h2 {
  font-size: 16px;
  color: #111;
  margin-bottom: 5px;
  text-decoration: none;
}

.news-content p {
  font-size: 13px;
  color: #555;
}

/* Footer */
.footer {
  text-align: center;
  background: #ffffff;
  padding: 10px;
  font-size: 13px;
  color: #666;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .news-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .logo img {
    width: 150px;
  }
}