/* Hover effects */
.hover-shadow {
  transition: box-shadow 0.3s ease-in-out;
}
.hover-shadow:hover {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.15) !important;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.1) !important;
}

/* Horizontal card styling */
.small-card-horizontal {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

/* Badge styling */
.badge.bg-danger {
  background: linear-gradient(135deg, #dc3545, #c82333) !important;
  font-size: 0.9rem;
  border-radius: 2rem;
}

/* Ensure images are consistent */
.chilli-blog-img {
  object-fit: cover;
}
.hero-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/pom.jpg') center/cover no-repeat;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: #ffffff;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  margin-top: 50px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, #FFD700, #FF8C00, #FFD700);
  border-radius: 5px;
  background-size: 200% auto;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  opacity: 0.95;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.breadcrumb-box {
  font-size: 16px;
  background: rgb(0, 64, 0);
  backdrop-filter: blur(5px);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
}

.breadcrumb-box a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.breadcrumb-box a:hover {
  opacity: 1;
  text-decoration: none;
}

.breadcrumb-box span {
  margin: 0 8px;
  opacity: 0.8;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-banner {
    height: 350px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 300px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .breadcrumb-box {
    font-size: 14px;
    padding: 6px 15px;
  }
}
  .chilli-blog-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      background-color: #fff;
      margin-bottom: 30px;
  }
  .card-link{
      text-decoration:none;
      color:inherit;
      display:block;
  }

  .card-link:hover{
      text-decoration:none;
  }
  .chilli-blog-img {
      width: 100%;
      height: 500px;
      display: block;
      object-fit: cover;
  }

  .chilli-blog-card .card-body {
      padding: 20px;
  }

  .chilli-blog-card .card-title {
      font-size: 2rem;
      font-weight: 700;
      color: #222;
      margin-bottom: 15px;
  }

  .chilli-blog-card h2 {
      font-size: 1.3rem;
      font-weight: 600;
      color: rgb(0, 0, 0);
      margin-top: 20px;
      margin-bottom: 10px;
  }

  .chilli-blog-card .card-text {
      font-size: 1.2rem;
      color: rgb(0, 0, 0);
      line-height: 1.6;
      margin-bottom: 15px;
  }

  .chilli-blog-card.small-card-horizontal {
      display: flex;
      flex-direction: row;
      font-size: 0.85rem;
      padding: 8px;
      border-radius: 5px;
      margin-bottom: 10px;
      background: #fff;
      box-shadow: 0 1px 5px rgba(0,0,0,0.1);
      overflow: hidden;
      height: 100px;
  }

  .chilli-blog-card.small-card-horizontal .chilli-blog-img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 5px 0 0 5px;
  }

  .chilli-blog-card.small-card-horizontal .chilli-blog-body {
      width: calc(100% - 50px);
      padding-left: 8px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .chilli-blog-card.small-card-horizontal .blog-title {
      font-size: 0.9rem;
      margin: 2px 0;
  }

  .chilli-blog-card.small-card-horizontal .blog-text {
      font-size: 0.8rem;
      margin: 2px 0;
      line-height: 1.1;
  }

  .chilli-blog-card.small-card-horizontal .blog-date {
      font-size: 0.7rem;
      color: #666;
  }

  /* Responsive */
  @media (max-width: 991px) {
      .chilli-blog-card.small-card-horizontal {
          flex-direction: row;
          height: 100px;
      }
      .chilli-blog-card.small-card-horizontal .chilli-blog-img {
          width: 50px;
          height: 100%;
      }
      .chilli-blog-card.small-card-horizontal .chilli-blog-body {
          width: calc(100% - 50px);
      }
  }

  @media (max-width: 767px) {
      .chilli-blog-card.small-card-horizontal {
          flex-direction: row;
          height: auto;
      }
      .chilli-blog-card.small-card-horizontal .chilli-blog-img {
          width: 80px;
          height: 80px;
          margin-bottom: 5px;
      }
      .chilli-blog-card.small-card-horizontal .chilli-blog-body {
          width: calc(100% - 90px);
      }
  }
  @media (max-width: 767px){

      .chilli-blog-card .card-title{
          font-size: 1.4rem;
      }

      .chilli-blog-card h2{
          font-size: 1.1rem;
      }

      .chilli-blog-card .card-text{
          font-size: 0.95rem;
          line-height: 1.5;
      }

  }
  .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      padding: 12px 18px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      z-index: 9999;
      transition: transform 0.2s;
  }

  .whatsapp-btn:hover {
      transform: scale(1.1);
      text-decoration: none;
      color: white;
  }

  .whatsapp-btn i {
      font-size: 22px;
  }