.blogs-section {
  padding: 60px 0;

  color: white;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.blog-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 10px;
}

.blog-carousel::-webkit-scrollbar {
  display: none;
}

.blog-card {
  flex: 0 0 auto;
  width: 300px;
  height: 435px;
  background-color: white;
  color: black;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-card img {
  border-radius: 10px 10px 0 0;
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.scroll-btn {
  background: #3b5b8f;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.scroll-btn:hover {
  background: white;
  color: #3b5b8f;
}

.scroll-btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.post-thumb img{
height: 200px;
}


.trending-section {
  background-color: #1c1836;
  color: white;
}

.featured-post {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: #2a2550;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.featured-content {
  padding: 25px;
}

.featured-content h3 {
  font-weight: 700;
  color: #fff;
}

.featured-content p {
  color: #c9c9c9;
  font-size: 0.95rem;
}

.trend-box {
  background-color: #2a2550;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.trend-content {
  padding: 15px;
}

.trend-content h5 {
  color: #fff;
  font-weight: 600;
}

.trend-content p {
  color: #c9c9c9;
  font-size: 0.85rem;
}

/* Hover Effects */
.featured-post:hover,
.trend-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Button Style */
.primary-btn {
  background: #fff;
  color: #1c1836;
  border-radius: 25px;
  font-weight: 600;
  padding: 8px 22px;
  display: inline-block;
  text-decoration: none;
}

.primary-btn:hover {
  background: #e4e4e4;
  color: #1c1836;
}



@media (max-width: 991.98px) {
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }

  .footer-list li {
    list-style: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    padding-left: 0;
  }

  .footer-list li {
    list-style: none;
    flex: 1;
    text-align: center;
    white-space: nowrap;
  }

  .footer-list li a {
    display: inline-block;
    white-space: nowrap;
  }
}