/* ================= BLOG PAGE HERO ================= */
.page-hero {
  margin-top: 85px;
  background: #2b313c;
  padding: 70px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 600;
}

/* ================= BLOG FILTER ================= */
.blog-filter {
  padding: 40px 0 10px;
}

.filter-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-tabs button {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #333;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tabs button:hover {
  background: #0a2540;
  color: #ffffff;
}

.filter-tabs button.active {
  background: #0a2540;
  color: #ffffff;
  border-color: #0a2540;
}

/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 50px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* ================= BLOG CARD ================= */
.blog-card {
  max-width: 500px;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 6px;
}

.blog-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.blog-meta span {
  color: #555;
}

.blog-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Read More */
.read-more {
  font-size: 14px;
  color: #0a2540;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.25s ease;
}

.read-more:hover {
  color: #123a6f;
}

/* ================= FLOATING CALL BUTTON ================= */
.call-float {
  position: fixed;
  right: 25px;
  bottom: 90px;
  width: 50px;
  height: 50px;
  background: #0a2540;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.call-float:hover {
  background: #123a6f;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .filter-tabs {
    justify-content: center;
  }
}