
.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:#ffffff;
    animation:fadeUp 1.2s ease forwards;
    opacity:0;
	margin-top: 50px;
}


.hero-content h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
    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;
    }
}
.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: 400px;
    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.4rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.chilli-blog-card .card-text {
    font-size: 1.2rem;
    color: #555;
    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);
    }
}
.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;
}