body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    min-height: 80vh;
    background: linear-gradient(to right,#dc2727, #f8fdf8, );
    padding: 80px 0;
}

.product-card {
    transition: transform 0.3s ease, shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.navbar-brand span {
    color: white; 
}


.btn-success {
    background-color: #dc2727;
    border: none;
}

.navbar-logo {
    height: 48px;        
    width: auto;
    max-width: 180px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .navbar-logo {
        height: 38px;    
        max-width: 150px;
    }
}
.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 140px;
        margin: auto;
        display: block;
    }
}


@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 40px 0;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}
.aata-img{
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; 
}


@media (max-width: 768px){
    .aata-img{
        max-width: 250px;  
    }
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

/* 🔥 MAIN RESPONSIVE FIX */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* image crop correctly */
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
   
    z-index: 1;
}

/* Text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

   
    .carousel-item {
        height: 65vh;  
             
    }

    .hero-slide {
        height: 100%;
        
    }

    .hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;       
    }


    .hero-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
/* Section background */
.offerings-section {
    background: #fbf3e6; /* light beige like image */
    padding: 80px 0;
}

/* Heading */
.offer-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.offer-subtitle {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #333;
}

/* Product box */
.product-box h5 {
    margin-top: 20px;
    font-weight: 500;
}

/* Circle background */
.circle-bg {
    width: 220px;
    height: 220px;
    background: #e6ddd2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Product image */
.circle-bg img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover effect */
.product-box:hover img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .circle-bg {
        width: 170px;
        height: 170px;
    }

    .circle-bg img {
        max-width: 110px;
    }

    .offer-title {
        font-size: 1.8rem;
    }
}
/* Page background spacing */
.highlight-wrapper {
    background: #f6efe4;
    padding: 80px 0;
}

/* Main image section */
.highlight-section {
    background: 
      linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.25)),
      url("../AAta/atta\ Packet\ Png/s1.png") center/cover no-repeat;

    border-radius: 30px;
    min-height: 380px;

    display: flex;
    align-items: center;

    padding: 50px;
}

/* Text content */
.highlight-text {
    color: #fff;
    max-width: 480px;
}

.highlight-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .highlight-section {
        min-height: 260px;
        padding: 30px 20px;
        text-align: center;
    }

    .highlight-text {
        max-width: 100%;
        margin: auto;
    }

    .highlight-text h2 {
        font-size: 1.7rem;
    }

    .highlight-text p {
        font-size: 1rem;
    }
}
.most-loved-section {
    background: #fbf3e6;
    padding: 80px 0;
}

.most-loved-title {
    font-size: 2.5rem;
    font-weight: 600;
}

.most-loved-sub {
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Product image */
.product-img {
    max-width: 260px;
    position: relative;
    z-index: 2;
}

/* Yellow circle behind product */
.circle-bgm {
    width: 300px;
    height: 300px;
    background: #fde59a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Text */
.carousel-item h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.carousel-item p {
    font-size: 1.05rem;
    max-width: 450px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .circle-bgm {
        width: 220px;
        height: 220px;
    }

    .product-img {
        max-width: 180px;
    }

    .carousel-item {
        text-align: center;
    }

    .carousel-item p {
        margin: auto;
    }
}
.meri-chakki-wrapper {
    display: flex;
    justify-content: center;
}

/* Desktop */
.meri-chakki-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 20px;
}


@media (max-width: 768px) {

    .meri-chakki-wrapper {
        padding: 0;
    }

    .meri-chakki-img {
        max-width: 100%;    
        border-radius: 0;
    }
}
/* Common circle button */
.fixed-icon-btn {
    position: fixed;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.whatsapp-icon {
    bottom: 90px;
    background: #25D366;
}

/* Call */
.call-icon {
    bottom: 20px;
    background: #dc2727;
}

/* Hover effect */
.fixed-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    color: #fff;
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .fixed-icon-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
        right: 15px;
    }

    .whatsapp-icon {
        bottom: 75px;
    }

    .call-icon {
        bottom: 15px;
    }
}
/* 📱 Footer Mobile Fix */
@media (max-width: 768px) {

    footer {
        text-align: center;
    }

    footer .col-md-4 {
        margin-bottom: 25px;
    }

    footer p {
        font-size: 0.95rem;
    }

    footer h5 {
        margin-bottom: 10px;
    }
}
.benefits-section {
    background: #ffffff;
    padding: 90px 0;
}

.benefits-title {
    font-size: 2.6rem;
    font-weight: 600;
}

.benefits-sub {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

.benefit-card {
    background: #f8f9fc;
    padding: 35px 25px;
    border-radius: 18px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card i {
    font-size: 40px;
    color: #dc2727;
    margin-bottom: 15px;
}

.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Hover */
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .benefits-title {
        font-size: 1.9rem;
    }

    .benefit-card {
        padding: 28px 20px;
    }
}
.about-atta-section {
    background: #fff1f1;   /* light red */
    padding: 100px 0;
}

.about-atta-content h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-atta-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Icon circle */
.icon-circle {
    width: 56px;
    height: 56px;
    background: #dc2727;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle i {
    color: #fff;
    font-size: 26px;
}

/* Learn more link */
.learn-more-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #dc2727;
    text-decoration: none;
}

.learn-more-link:hover {
    text-decoration: underline;
}

/* Image */
.about-atta-img {
    max-width: 420px;
    width: 100%;
    height: auto;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .about-atta-section {
        padding: 70px 20px;
        text-align: center;
    }

    .about-atta-content h2 {
        font-size: 1.9rem;
    }

    .icon-circle {
        margin-left: auto;
        margin-right: auto;
    }
}
/* ===== MOBILE HERO FIX ===== */

/* By default: hide mobile hero */
.mobile-hero {
    display: none;
}

/* Mobile only */
@media (max-width: 768px) {

    /* Hide slider */
    #heroSlider {
        display: none !important;
    }

    /* Show mobile hero */
    .mobile-hero {
        display: block;
    }

    .mobile-hero-slide {
        position: relative;
        height: 65vh;
        overflow: hidden;
    }

    .mobile-hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-hero-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: 
    }

    .mobile-hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        
        z-index: 2;
        color: #fff;
        text-align: center;
        padding: 0 15px;
        width: 100%;
    }

    .mobile-hero-content h1 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .mobile-hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}


