
.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-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #faf3e0 0%, #f5e6d3 100%);
}

.rice-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.rice-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.rice-image img {
    width: 100%;
    height: 380px;
    transition: transform 0.6s ease;
    display: block;
}

.rice-image:hover img {
    transform: scale(1.08);
}

.rice-content {
    flex: 1;
}

.rice-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgb(64, 0, 0), rgb(128, 0, 0)); /* deep purple - red onion */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rice-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgb(64, 0, 0);
    margin-bottom: 25px;
}

.rice-content .btn-secondary {
    background: linear-gradient(135deg, rgb(64, 0, 0), rgb(128, 0, 0)); /* light purple to deep purple */
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgb(0, 0, 0);
}

.rice-content .btn-secondary:hover {
    background: linear-gradient(135deg, rgb(64, 0, 0), rgb(128, 64, 0));
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(142, 68, 173, 0.3);
}

/* ---------- Why Choose Us Section ---------- */
.why-section {
    background: linear-gradient(135deg, #d9c5b3 0%, #c7af9a 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveDots 20s linear infinite;
    pointer-events: none;
}

@keyframes moveDots {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10%, 10%); }
}

.moringa-heading {
    color: rgb(0, 0, 0);
    font-size: 40px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-icon i {
    background: linear-gradient(135deg, #B7950B, #9A7D0A); /* golden brown - onion skin */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon i {
    background: linear-gradient(135deg, #9A7D0A, #B7950B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(0, 0, 0);
    font-size: 1.25rem;
}

.why-card p {
    font-size: 15px;
    color: #5a4a3a;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- Uses & Benefits Section ---------- */
.product-section {
    background: linear-gradient(135deg, #f0e2d2 0%, #e6d2bf 100%);
    padding: 60px 0;
}

.product-section h2 {
    font-size: 34px;
    font-weight: 700;
    color: #4a3b2f;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.product-section .rounded-4 {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px !important;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.product-section .rounded-4:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    background: #fff !important;
}

.product-section h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgb(64, 0, 0), rgb(128, 0, 0)); /* deep purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-section ul li {
    font-size: 16px;
    color: #4a3b2f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.product-section ul li::before {

    font-weight: bold;
    color: #B7950B; /* golden brown checkmark */
    margin-right: 12px;
    font-size: 1.2rem;
}

.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;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .rice-card {
        flex-direction: column;
        padding: 30px;
    }
    .rice-content h1 {
        font-size: 36px;
    }
    .moringa-heading {
        font-size: 32px;
    }
    .product-section h2 {
        font-size: 28px;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rice-card-section {
    padding: 40px 15px;
}

.rice-card {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rice-image {
    flex: 1;
    min-width: 0; 
}

.rice-image img {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    display: block;
}

.rice-content {
    flex: 1;
    min-width: 0;
}

.rice-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}

.rice-content p {
    font-size: 17px;
    line-height: 1.6;
    color: rgb(64, 0, 0)!important;
    margin-bottom: 25px;
}

.rice-content .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgb(64, 0, 0); /* deep purple */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.rice-content .btn-secondary:hover {
    background-color: rgb(64, 0, 0); /* darker purple */
}

@media (max-width: 992px) {
    .rice-card {
        gap: 30px;
        padding: 30px;
    }
    .rice-content h1 {
        font-size: 36px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .rice-card {
        flex-direction: column;
        gap: 25px;
        padding: 25px;
        text-align: center;
    }
    .rice-image {
        width: 100%;
        max-width: 400px; 
        margin: 0 auto;
    }
    .rice-content h1 {
        font-size: 32px;
    }
    .rice-content p {
        font-size: 15px;
    }
    .rice-content .btn-secondary {
        white-space: normal; 
        padding: 10px 25px;
    }
}


@media (max-width: 480px) {
    .rice-card {
        padding: 20px;
    }
    .rice-content h1 {
        font-size: 28px;
    }
    .rice-content p {
        font-size: 14px;
    }
}