/* ── Google Font ── */

/* ══════════════════════════════════════
   BLOG SECTION
   ══════════════════════════════════════ */
.blogs {
  padding: 60px 20px;
  background: #f9f9f6;
}

.blogs h6
{
        font-size: 15px;
        margin-bottom:5px;
}

.blogs .subs-head
{
   font-size: 15px; 
    margin-bottom:10px;
    font-weight:600;
}

.blogs .container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Blog Card ── */
.blogs .mb-3 {
  background: #ffffff;
  border-left: 4px solid #fca311;
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blogs .mb-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.11);
}

/* ── Blog Title ── */
.blogs .fw-500 {
  font-family: 'Montserrat, sans-serif
;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.45;
}

.blogs .fw-500 a {
  color: #111111;
  text-decoration: none;
  background-image: linear-gradient(#ccff00, #ccff00);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: left bottom;
  transition: background-size 0.35s ease, color 0.3s ease;
}

.blogs .fw-500 a:hover {
  color: #000;
  background-size: 100% 2px;
}

/* ── Blog Paragraph ── */
.blogs .mylead {
  font-family: 'Montserrat, sans-serif;
  font-size: clamp(0.88rem, 1.5vw, 0.96rem);
  color: #606060;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── Read More Link ── */
.blogs .mb-3 > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

/* Sliding underline */
.blogs .mb-3 > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ccff00;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blogs .mb-3 > a:hover {
  color: #444;
}

.blogs .mb-3 > a:hover::after {
  width: 100%;
}

/* Arrow icon nudge */
.blogs .mb-3 > a i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.blogs .mb-3 > a:hover i {
  transform: translateX(4px);
}
.hero-subtitle a
{  color: #fff;}
  
  
  /* ── Blog Image Wrapper ── */
.blog-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.blog-img-wrap img {
  width: 100%;
  max-width: 820px;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-img-wrap img:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .blog-img-wrap img {
    height: 280px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .blog-img-wrap img {
    height: 200px;
    border-radius: 8px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .blogs {
    padding: 40px 16px;
  }

  .blogs .mb-3 {
    padding: 24px 22px;
  }
}

@media (max-width: 480px) {
  .blogs .mb-3 {
    padding: 20px 16px;
    border-left-width: 3px;
    border-radius: 8px;
  }
}

/* ── Google Font ── */

/* ── Custom List ── */
  .blogs ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom:10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

  .blogs ul li {
    color: #606060;
    line-height: 1.85;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat, sans-serif;
  /*font-size: clamp(0.88rem, 1.5vw, 0.98rem);*/
  color: #444;
  line-height: 1.7;
  /*background: #ffffff;*/
  border-radius: 8px;
  /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);*/
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*  .blogs ul li:hover {*/
/*  transform: translateX(5px);*/
/*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);*/
/*}*/

/* ── Icon via ::before ── */
  .blogs ul li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background-color: #fca311;
  border-radius: 50%;

  /* Checkmark using clip-path */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 14px;
  mask-size: 14px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .blogs ul li {
    padding: 12px 14px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
    .blogs ul li {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}