
.hero-banner{
  background: rgb(153, 130, 119)!important;
    height:270px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    width:100%;
    text-align:center;
}

.hero-content{
    color:rgb(255, 255, 255);
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}

.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:18px!important;
    position:relative;
    display:inline-block;
}

.hero-content h1::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    margin:12px auto 0;
    background:linear-gradient(90deg,#FFD700,#f5c518);
    border-radius:5px;
}

.hero-content p{
    font-size:16px;
    margin-bottom:18px;
    letter-spacing:1px;
    opacity:0.9;
}

.breadcrumb-box{
    font-size:14px;
}

.breadcrumb-box a{
    color:#ffffff;
    text-decoration:none;
    opacity:0.9;
}

.breadcrumb-box span{
    margin:0 6px;
    opacity:0.8;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:992px){
    .hero-banner{
        min-height:300px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }
}

@media(max-width:576px){
    .hero-banner{
        min-height:250px;
        padding:30px 15px;
    }

    .hero-content h1{
        font-size:24px;
    }

    .hero-content p{
        font-size:14px;
    }

    .breadcrumb-box{
        font-size:12px;
    }
}
.rice-card{
  background:#fff;
  border-radius:14px;
  padding:15px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  transition:0.3s ease;
  height:100%;
}

.rice-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

.rice-card h4{
  font-weight:600;
  margin-bottom:8px;
}

.rice-card p{
  font-size:14px;
  color:#555;
}

.view-btn{
  background:rgb(0, 0, 0);
  color:#fff;
  border:none;
  padding:6px 14px;
  border-radius:6px;
  font-size:14px;
  text-decoration: none;
}

.view-btn:hover{
  background:rgb(0, 0, 0);
}

.pagination .page-link{
  border-radius:8px;
  margin:0 4px;
}

.pagination .active .page-link{
  background:rgb(0, 0, 0);
  border-color:rgb(0, 0, 0);
  color:#fff;
}
.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;
}