body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #333;
}

/* Banner Section */
.blog-banner {
  position: relative;
  margin-top: 90px;
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d")
    center/cover no-repeat;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.8), rgba(10, 31, 68, 0.5));
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.blog-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.blog-banner p {
  font-size: 18px;
  color: #eaeaea;
}

/* Blog Section */
.blog-section {
  padding: 80px 10%;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #005fa3;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.page-link {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.page-link:hover {
  background: #0077cc;
  color: #fff;
  border-color: #0077cc;
}

.page-link.active {
  background: #0077cc;
  color: #fff;
}





/* 🌟 Blog Detail Section */
.blog-detail-section {
  padding: 100px 20px 80px;
  background: #f9f9fb;
  font-family: 'Inter', sans-serif;
  color: #0a1f44;
}

/* 🖼️ Hero Image */
.blog-hero {
  max-width: 1100px;
  margin: 0 auto 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.blog-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-hero img:hover {
  transform: scale(1.03);
}

/* 📄 Blog Content */
.blog-content-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #0a1f44;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-meta {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.blog-content p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
  font-size: 1.05rem;
}

.blog-content h2 {
  margin: 25px 0 15px;
  font-size: 1.6rem;
  color: #0a1f44;
  font-family: "Playfair Display", serif;
}

.blog-content ul, .blog-content ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
.blog-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-content blockquote {
  border-left: 4px solid var(--gold, #d4af37);
  padding-left: 15px;
  font-style: italic;
  color: #555;
  margin: 20px 0;
  background: #fdf9e8;
  border-radius: 8px;
  padding: 12px 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-banner h1 {
    font-size: 36px;
  }

  .blog-banner p {
    font-size: 16px;
  }

  .blog-section {
    padding: 60px 5%;
  }

  .blog-card img {
    height: 200px;
  }
  .blog-banner{
    height: 30vh;
  }
  .blog-content-container {
    padding: 25px 20px;
  }
  .blog-hero img {
    height: 260px;
  }
  .blog-title {
    font-size: 1.6rem;
  }
}
