body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

.blog-header {
  background-color: #161616;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.blog-list {
  
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.blog-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-card h2 {
  font-size: 20px;
  margin: 15px 0;
  color: #222;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #004c99;
}



//blog page
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f8f8f8;
  color: #333;
}

.hero-banner {
  background-size: cover;
  background-position: center;
  
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-banner .hero-content {
  color:#01002c;
  padding: 30px;
  border-radius: 10px;
  
}

.hero-content h1 {
  font-size: 46px;
  margin-bottom: 15px;
  color:#01002c;
}

.hero-content p {
  font-size: 24px;
}

.article-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.article-container h2 {
  margin-top: 30px;
  font-size: 24px;
}

.article-container p,
.article-container li {
  line-height: 1.7;
  font-size: 16px;
}

.article-container ul,
.article-container ol {
  margin-left: 20px;
}

//blog pages single page
/* General Section Styling */
.section.dark {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading above grid */
.flex-heading-left {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.abstract-heading {
  width: 40px;
  height: auto;
  opacity: 0.7;
  transform: rotate(-25deg);
}

.no-margins {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
}

/* Grid layout for blog cards */
.grid-blog-thirds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.tile-blog {
  display: block;
  text-decoration: none;
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile-blog:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Top section of blog card */
.top-blog-tile {
  padding: 20px;
}

.text-style-h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

/* Tag styling */
.tag.light-tag {
  background-color: #f3f3f3;
  color: #111;
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Image wrapper */
.wrap-image-blog {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-blog {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tile-blog:hover .image-blog {
  transform: scale(1.05);
}

/* Dark overlay on image */
.overlay-image-general {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}





