* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top bar */
.top-bar {
    background: #232323;
    color: white;
    text-align: center;
    padding: 8px;
}

.top-bar span {
    font-weight: bold;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* Logo */
.logo h1 {
    color: orange;
    font-size: 32px;
}

.logo span {
    color: green;
}

.logo {
  width: 220px;
}

.logo img {
  width: 100%; 
  height: 80px;
}

/* Search */
.search-box {
    display: flex;
    width: 40%;
}

.search-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.search-box button {
    padding: 10px 15px;
    border: none;
    background: black;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
}

.search-box button i {
    color: white;
}

/* Icons */
.header-icons {
    display: flex;
    gap: 20px;
}

.main-header {
    background-color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-top: 1px solid #ddd;
    height: 60px;
    position: relative;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
    z-index: 1;
}

.navbar li {
    position: relative;
}

.navbar li a {
    text-decoration: none;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px;
}

.navbar li a:hover {
    color: #d98c00;
    transition: 0.3s ease-in-out;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 28px 0;
    min-width: 180px;

    display: none !important; /* hidden by default */
    flex-direction: column;  /* 👈 important */

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.dropdown-menu li {
    padding: 0px 14px;
}

.dropdown-menu li a {
    color: #333;
    display: block;
}

.dropdown-menu li a:hover {
    color: #d98c00;
}

/* Hover for desktop */
.dropdown:hover .dropdown-menu {
    display: flex !important;
}

/* MOBILE */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* banner start  */
.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slides {
  display: flex;
}

.slide {
  min-width: 100%;
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* Content */
.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: black;
}

.content h2 {
  font-size: 40px;
}

.content p {
  font-size: 20px;
}

/* Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: orange;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }
/* banner end  */



/* HOT badge */
.hot {
    position: relative;
}

.hot::after {
    content: "HOT";
    position: absolute;
    top: -10px;
    right: -20px;
    background: red;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

/* Hotline */
.hotline {
    font-size: 14px;
}


/* offer section start  */
.offer-section {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.offer-box {
  position: relative;
  width: 50%;
  background: #f5e6e6;
  border-radius: 10px;
  overflow: hidden;
}

/* Second box color */
.offer-box:nth-child(2) {
  background: #e6f0e6;
}

.offer-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT POSITION */
.offer-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  max-width: 300px;
}

.offer-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.offer-content a {
  display: inline-block;
  padding: 10px 20px;
  background: orange;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* BADGE */
.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
}

/* Red badge */
.badge.red {
  background: red;
}


/* offer section end */


/* Image */

.twoban-category {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.twoban-container {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
  margin: auto;
}

.twoban-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}

.twoban-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.twoban-slider::-webkit-scrollbar {
  display: none;
}

.twoban-card {
  min-width: 160px;
  flex: 0 0 auto;
}

.twoban-img {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.twoban-img img {
  width: 100%;
    border-radius: 50%;
    height: 100%;
}

.twoban-count {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .twoban-img {
    width: 110px;
    height: 110px;
  }

  .twoban-img img {
    max-width: 70px;
  }

  .twoban-card {
    min-width: 130px;
  }
}

/* trending products start */
/* Section */
.trending {
  padding: 40px;
  text-align: center;
}

.trending h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Wrapper */
.product-wrapper {
  position: relative;
}

/* Products Grid */
.products {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Card */
.product-card {
  background: #eee;
  padding: 20px;
  width: 260px;
  height: 310px;
  text-align: left;
  border-radius: 5px;
  position: relative;
}

.product-image {
  height: 150px;
  width: 220px;
}

.product-image img {
  height: 100%;
  width: 220px;
  object-fit: cover;
}

.product-description {
  margin-top: 15px;
}



.product-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: arial,sans-serif;
}

/* Price */
.price {
  font-weight: bold;
  margin-bottom: 8px;
}

.price .old {
  text-decoration: line-through;
  color: gray;
  margin-left: 5px;
}

/* Rating */
.rating {
  color: orange;
  font-size: 14px;
}

.rating span {
  color: #555;
  margin-left: 5px;
}

/* Discount badge */
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: orange;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.arrow.left {
  left: -20px;
}

.arrow.right {
  right: -20px;
}
/* trending products end  */
/* deal banner start  */
.deal-section {
  position: relative;
  height: 450px;
  overflow: hidden;
}

/* 🔥 Parallax Background */
.parallax-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 120%;
  background: url('images/ricebanner.webp') no-repeat center/cover;
  z-index: -1;
  transform: translateY(0);
}

/* Overlay */
.deal-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
}

/* Content */
.deal-content {
  max-width: 1200px;
  margin: auto;
  color: #fff;
  padding: 20px;
}

.deal-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.deal-subtitle {
  margin-bottom: 10px;
}

/* Timer */
.deal-timer {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.time-box {
  background: #f4a51c;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  min-width: 80px;
}

/* Button */
.deal-btn {
  background: #f4a51c;
  padding: 12px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .deal-title {
    font-size: 28px;
  }

  .deal-timer {
    flex-wrap: wrap;
  }
}
/* deal banner end  */
/* products start  */
/* Section Title */
.section-title {
  text-align: center;
  
}

.tabs {
  text-align: center;
  margin-bottom: 20px;
}

.tabs button {
  padding: 10px 20px;
  margin: 5px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  border-radius: 20px;
}

.tabs button.active {
  background: black;
  color: white;
}

/* Products Grid */
.products {
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 30px;
}

.card {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.price {
  color: green;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

/* Hide */
.hidden {
  display: none;
}
/* products end  */
/* testimonial start  */

/* testimonial end  */
/* recent news start  */
.news {
  padding: 60px 20px;
  text-align: center;
}

/* Title */
.news-title {
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Container */
.news-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Card */
.news-card {
  width: 330px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image */
.news-img {
  position: relative;
}

.news-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Badge */
.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f4a51c;
  color: #fff;
  padding: 10px 14px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
}

/* Content */
.news-content {
  padding: 18px;
  text-align: left;
}

/* Meta */
.news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

/* Heading */
.news-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* Text */
.news-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Link */
.news-content a {
  text-decoration: none;
  font-weight: 600;
  color: #222;
  transition: 0.3s;
}

.news-content a:hover {
  color: #f4a51c;
}

/* Button */
.news-btn-box {
  margin-top: 40px;
}

.news-btn {
  display: inline-block;
  background: #f4a51c;
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.news-btn:hover {
  background: #d98c00;
}

/* Responsive */
@media (max-width: 768px) {
  .news-container {
    flex-direction: column;
    align-items: center;
  }
}
/* recent news end  */
/* news subscribe start */
.news-subscribe {
  position: relative;
  background: url("images/sugarbanner.webp") no-repeat center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay */
.news-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
}

/* Content */
.news-subscribe-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}

/* Heading */
.news-subscribe-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Paragraph */
.news-subscribe-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* Form */
.news-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

/* Input */
.news-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

footer {
  margin-top: 50px;

}
/* Button */
.news-form button {
  background: #f4a51c;
  color: #fff;
  border: none;
  padding: 0 25px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.news-form button:hover {
  background: #d98c00;
}

/* Responsive */
@media (max-width: 600px) {
  .news-form {
    flex-direction: column;
    border-radius: 10px;
  }

  .news-form input {
    width: 100%;
  }

  .news-form button {
    width: 100%;
    padding: 12px;
  }
}
/* news subscribe end  */

/* footer start  */
.news-footer {
  background: #f3efe6;
  padding: 50px 40px;
  font-family: sans-serif;
  color: #444;
}

/* Top Section */
.news-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.news-footer-box {
  max-width: 300px;
}

.news-logo {
  font-size: 32px;
  color: #f4a51c;
  margin-bottom: 10px;
}

/* Divider */
.news-footer hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

/* Bottom Section */
.news-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Columns */
.news-footer-col {
  min-width: 200px;
}

.news-footer-col h4 {
  color: #f4a51c;
  margin-bottom: 15px;
}

/* List */
.news-footer-col ul {
  list-style: none;
}

.news-footer-col ul li {
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.news-footer-col ul li:hover {
  color: #f4a51c;
  padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .news-footer-top,
  .news-footer-bottom {
    flex-direction: column;
  }
}


.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left */
.footer-left p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

/* Center Icons */
.footer-center {
    display: flex;
    gap: 10px;
}

.footer-center a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #f4a71d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-center a:hover {
    background: #000;
    color: #fff;
}

/* Right */
.footer-right img {
    height: 25px;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-right img {
        margin: 5px;
    }
}

.bottom-bar {
    background: #f4a51c;
    padding: 12px 0;
    font-size: 14px;
}

.bottom-bar .container {
    width: 90%;
    margin: auto;
}

.bottom-bar .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bottom-bar .col {
    flex: 1;
}

/* Left */
.bottom-bar .left p {
    color: #fff;
    margin: 0;
    font-family: arial,sans-serif;
}

/* Center */
.bottom-bar .center {
    text-align: center;
}

.bottom-bar .center a {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 5px;
    background: #fff;
    color: #f4a51c;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    transition: 0.3s;
}

.bottom-bar .center a:hover {
    background: #000;
    color: #fff;
}

/* Right */
.bottom-bar .right {
    text-align: right;
}

.bottom-bar .right img {
    height: 22px;
    margin-left: 8px;
}
/* footer end  */
/* brand crumb start  */
.brandcrumb {
  background:   linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/ricebanner.webp") no-repeat center/cover;
  width: 100%;
  height: 100px;
  position: relative;
}

.brandcrumb-pulses {
  background:   linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/pulsesbanner.avif") no-repeat center/cover;
  width: 100%;
  height: 100px;
  position: relative;
}

.brandcrumb-sugar {
  background:   linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("images/sugarbanner.webp") no-repeat center/cover;
  width: 100%;
  height: 100px;
  position: relative;
}

.brandcrumb-sugar li a {
  text-decoration: none;
  color: white;
  font-family: arial,sans-serif;
}

.brandcrumb-sugar li  {
 color: white;
  font-family: arial,sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
  font-size: 16px;
}

.brandcrumb-pulses li a {
  text-decoration: none;
  color: white;
  font-family: arial,sans-serif;
}

.brandcrumb-pulses li {
  color: white;
  font-family: arial,sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
  font-size: 16px;
}

.brandcrumb li a {
  text-decoration: none;
  color: white;
  font-family: arial,sans-serif;
}

.brandcrumb li{
  color: white;
  font-family: arial,sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  list-style: none;
  font-size: 16px;
}
/* brandcrumb end  */
/* what we do start  */
.what-we-do {
  text-align: center;
  
}

.what-we-do-box {
  text-align: center;
  max-width: 60%;
  margin: 0 auto 30px;
  font-family: 'Roboto', sans-serif;
}

.wht-we-do-box-image img {
  width: 300px;
}

.what-we-do-box p{
  margin-top: 15px;
  color: #6f6f6f;
  line-height: 1.5;

}

.what-we-do-box h1 {
  margin-top: 50px;
}

.what-we-do-description {
   text-align: center;
  max-width: 90%;
  margin: 0 auto 30px;
  font-family: 'Roboto', sans-serif;
  text-align: justify;
  line-height: 1.5;
}

.what-we-do-description p {
  margin-top: 15px;
  color: #6f6f6f;
}
/* what we do end  */

.product-card h4:hover {
 color: #d98c00;
 transform: translate(0.5);
}

/* gallery start */

/* Gallery Grid */
.gallery-container {
  display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
  gap: 30px;
  padding: 20px;
}

.gallery-head {
  text-align: center;
  padding: 20PX;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  height: 350px;
  width: 350px;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.plus {
  color: #fff;
  font-size: 40px;
}

/* Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.popup img {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* gallery end */
/* contact start  */
.contact-map-details {
 text-align: center;
  max-width: 80%;
  margin: 0 auto 30px;
  font-family: 'Roboto', sans-serif;
  margin-top: 60px;
}

.contact-map p {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #6f6f6f;
}

.contact-section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
}

/* Form */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: left;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  text-align: left;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
}

.input-group textarea {
  border-radius: 10px;
  height: 120px;
  resize: none;
}

button {
  background: #f4a51c;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: #d98d0f;
}

/* Info */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  margin-bottom: 20px;
  text-align: left;
}

.contact-info p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
  text-align: left;
}

button .submit{
  text-align: left;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}
/* contact end  */
