
.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;
    }
}
.garlic-variety-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.garlic-variety-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.garlic-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.garlic-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.garlic-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #444;
}

.garlic-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.view-btn {
    padding: 8px 20px;
    border: none;
    background-color: #6c757d;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
	text-decoration: none;
}

.view-btn:hover {
    background-color: #5a6268;
}

.garlic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.garlic-variety-section .pagination {
    margin-top: 30px;
}

.garlic-variety-section .page-item a {
    color: #6c757d;
    border-radius: 5px;
}

.garlic-variety-section .page-item.active a {
    background-color: #6c757d;
    color: #fff;
}

.garlic-variety-section .page-item.disabled a {
    color: #ccc;
    pointer-events: none;
}

@media (max-width: 767px) {
    .garlic-card img {
        height: 180px;
    }
    .section-title {
        font-size: 1.75rem;
    }
}
.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;
}