   /* ===== BASIC PAGE STYLE ===== */
    body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      padding: 50px;
    }

    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    /* ===== SWIPER STYLE ===== */
    .blogSwiper {
      max-width: 100%;
      margin: auto;
      background: #fff;
      padding: 20px 0 50px;
      position: relative;
    }

    .swiper-slide {
      text-align: center;
      padding: 20px;
    }

    .swiper-slide img {
      width: 100%;
      max-width: 300px;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    /* ===== NAVIGATION BUTTONS ===== */
    .blogSwiper .swiper-button-next,
    .blogSwiper .swiper-button-prev {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      color: black;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .blogSwiper .swiper-button-next:after,
    .blogSwiper .swiper-button-prev:after {
      font-size: 14px;
      font-weight: bold;
    }

    /* ===== PROGRESS BAR ===== */
    .swiper-progress {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-10%);
      width: 120px;
      height: 4px;
      background: #ddd;
      border-radius: 10px;
      overflow: hidden;
    }

    .swiper-progress-bar {
      width: 0%;
      height: 100%;
      background: #000;
    }
    
   /* ==== blogs BAR ==== */ 
  body {
  font-family: Arial, sans-serif;
  background: #f6f6f6;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
}

.blog-list {
  max-width: 1800px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 18px;
}

.blog-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content h2 a {
  text-decoration: none;
  color: #222;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}
