* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: popins, sans-serif;
  background: #efefef;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====================Header====================== */

.main-header {
  width: 100%;
  background: #efefef;
  padding: 14px 0;
  position: fixed;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-side {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-side img {
  /* height: px; */
  width: 70px;
  object-fit: contain;
}

.logo-content {
  line-height: 1.1;
}

.logo-title {
  font-size: 27px;
  font-weight: 700;
  color: #f58220;
  margin-bottom: 2px;
}

.logo-subtitle {
  font-size: 21px;
  font-weight: 600;
  color: #198754;
}

/* =========================================
                    CENTER AREA
        ========================================= */

.center-side {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
                    NAV LINKS
        ========================================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border: 1px solid #e06a25;
  color: #e06a25;
  background: rgba(224, 106, 37, 0.08);
}

/* =========================================
                    TOGGLE BUTTON
        ========================================= */

.menu-toggle {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #198754;
  font-size: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================================
                    BUTTON
        ========================================= */

.expert-btn {
  background: #ff6a00;
  color: #fff;
  padding: 15px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  flex-shrink: 0;
}

.expert-btn:hover {
  background: #e65f00;
  color: #fff;
}

/* =========================================
                    MOBILE MENU
        ========================================= */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 99999;
  padding: 40px 25px;
  transition: 0.4s ease;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: #111;
}

.mobile-links {
  margin-top: 45px;
}

.mobile-links a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: #111;
  font-size: 17px;
  font-weight: 500;
}

.mobile-links a.active {
  color: #f5a037;
}

.mobile-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================================
                    RESPONSIVE
        ========================================= */

@media (max-width: 1199px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .center-side {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .logo-title {
    font-size: 22px;
  }
  .logo-subtitle {
    font-size: 17px;
  }
  .expert-btn {
    padding: 15px 24px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding: 10px 0;
  }
  .logo-side img {
    height: 48px;
  }
  .logo-title {
    font-size: 16px;
  }
  .logo-subtitle {
    font-size: 12px;
  }
  .menu-toggle {
    font-size: 24px;
    width: 36px;
    height: 36px;
  }
  .expert-btn {
    display: none;
  }
  .header-wrapper {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .logo-side {
    gap: 10px;
  }
  .logo-side img {
    height: 42px;
  }
  .logo-title {
    font-size: 14px;
  }
  .logo-subtitle {
    font-size: 10px;
  }
}

/* =========================================
                    SLIDER SECTION
        ========================================= */

.premium-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeSlider 12s infinite;
  margin-top: 5%;
}
/* .slide-one{
    width: 100%;
    height: 100%;
} */
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}

/* =========================================
                    IMAGE
        ========================================= */

.slide img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
  transform: scale(1);
  animation: zoomEffect 4s linear infinite;
}

/* =========================================
                    OVERLAY
        ========================================= */

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

/* =========================================
                    FADE EFFECT
        ========================================= */

@keyframes fadeSlider {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* =========================================
                    ZOOM EFFECT
        ========================================= */

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.12);
  }
}

/* =========================================
                    DOTS
        ========================================= */

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.slider-dots span:nth-child(1) {
  animation: dotActive 12s infinite;
}

.slider-dots span:nth-child(2) {
  animation: dotActive 12s infinite 4s;
}

.slider-dots span:nth-child(3) {
  animation: dotActive 12s infinite 8s;
}

@keyframes dotActive {
  0% {
    background: #fff;
    transform: scale(1.2);
  }

  30% {
    background: #fff;
    transform: scale(1.2);
  }

  40% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }

  100% {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
}

/* =========================================
                    LARGE SCREEN
        ========================================= */

@media (max-width: 1400px) {
  .premium-slider {
    height: 90vh;
  }
}

/* =========================================
            TABLET VIEW FIX
========================================= */

@media (max-width: 991px) {
  .premium-slider {
    width: 100%;
    height: 55vh;
    overflow: hidden;
    position: relative;
  }

  .slider-wrapper {
    width: 100%;
    height: 100%;
  }

  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .slider-dots {
    bottom: 12px;
  }
}

/* =========================================
            MOBILE VIEW FIX
========================================= */

@media (max-width: 767px) {
  .premium-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .slider-wrapper {
    width: 100%;
    height: 100%;
  }

  .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .slider-dots {
    bottom: 8px;
    gap: 8px;
  }

  .slider-dots span {
    width: 9px;
    height: 9px;
  }
}

/* =========================================
            SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .premium-slider {
    height: 32vh;
  }

  .slide {
    height: 32vh;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* =========================================
            SIMPLE ABOUT SECTION
========================================= */

.simple-about-section {
  padding: 80px 0;
  background: #ebe5dd;
}

.container {
  max-width: 1600px;
}

.simple-about-content {
  width: 100%;
  max-width: 100%;

  text-align: center;
}

.simple-about-tag {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.simple-about-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
}

.simple-about-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

/* =========================================
            MOBILE
========================================= */

@media (max-width: 767px) {
  .simple-about-section {
    padding: 60px 0;
  }

  .simple-about-content h2 {
    font-size: 28px;
  }

  .simple-about-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
            SIMPLE COUNTER SECTION
========================================= */

.simple-counter-section {
  padding: 45px 0;
  background: #533510;
}

.counter-box {
  text-align: center;
  color: #fff;
}

.counter-box i {
  font-size: 42px;
  margin-bottom: 12px;
}

.counter-box h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 17px;
  margin: 0;
  opacity: 0.95;
}

/* =========================================
            MOBILE
========================================= */

@media (max-width: 767px) {
  .simple-counter-section {
    padding: 35px 0;
  }

  .counter-box i {
    font-size: 28px;
  }

  .counter-box h3 {
    font-size: 24px;
  }

  .counter-box p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =========================================
            SIMPLE PRODUCT SECTION
========================================= */

.simple-product-section {
  padding: 80px 0;
  background: #ebe5dd;
}

/* HEADING */

.product-heading {
  text-align: center;
  margin-bottom: 50px;
}

.product-heading h2 {
  font-size: 46px;
  font-weight: 600;
  color: #533510;
  margin-bottom: 18px;
}

.product-heading p {
  width: 80%;
  margin: auto;
  text-align: justify;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}

/* CARD */

.product-card {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  border-radius: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.img row {
  max-width: 1320px;
  margin: auto;
}

/* CONTENT */

.product-content {
  padding: 16px;
  text-align: center;
}

.product-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #3f5d76;
  margin: 0;
}

/* BUTTON */

.product-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  background: #533510;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: #3d260b;
  color: #fff;
}

/* MORE PRODUCT BUTTON */

.more-product-btn {
  text-align: center;
  margin-top: 45px;
}

.more-product-btn a {
  display: inline-block;
  padding: 14px 34px;
  background: #533510;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.more-product-btn a:hover {
  background: #3d260b;
  color: #fff;

  transform: translateY(-3px);
}

/* =========================================
            MOBILE
========================================= */

@media (max-width: 767px) {
  .simple-product-section {
    padding: 60px 0;
  }

  .product-heading {
    margin-bottom: 35px;
  }

  .product-heading h2 {
    font-size: 30px;
  }

  .product-heading p {
    font-size: 15px;
    line-height: 1.8;
  }

  .product-card img {
    height: 160px;
  }

  .product-content {
    padding: 12px;
  }

  .product-content h4 {
    font-size: 18px;
  }
}

/* =========================================
        PREMIUM GRADIENT FOOTER
========================================= */

.modern-footer {
  position: relative;
  overflow: hidden;
  padding: 60px 0 30px;
  background: linear-gradient(
    135deg,
    #1a0f08 0%,
    #2d1b10 30%,
    #4a2c16 60%,
    #1a0f08 100%
  );
  color: #fff;
  z-index: 1;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.25), transparent 70%);
  z-index: -1;
}

.modern-footer::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 136, 0, 0.18), transparent 70%);
  z-index: -1;
}

/* TOP BORDER */

.modern-footer .container {
  position: relative;
}

.modern-footer .container::before {
  content: "";
  position: absolute;
  /* top: -35px; */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(to right, #ffb347, #ffd27d, #ffb347);
  box-shadow: 0 0 20px rgba(255, 179, 71, 0.7);
}

/* CENTER CONTENT */

.modern-footer .row {
  justify-content: center;
  text-align: center;
}

/* BRAND */

.footer-brand img {
  width: 120px;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.4));
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
  text-align: justify;
  margin: auto;
}

/* HEADINGS */

.footer-links h4,
.footer-contact h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffd27d;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(to right, #ffb347, #ffd27d);
}

/* LINKS */

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: l;
}

.footer-links ul li {
  margin-bottom: 16px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 15px;
  transition: 0.35s ease;
  position: relative;
}

.footer-links ul li a:hover {
  color: #ffd27d;
  letter-spacing: 1px;
}

/* CONTACT */

.footer-contact p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 16px;
}

.footer-contact i {
  color: #ffd27d;
  margin-right: 10px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.footer-social a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover i {
  background: linear-gradient(135deg, #ffb347, #ffd27d);
  color: #080808 !important;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 25px rgba(255, 179, 71, 0.35);
}

/* BOTTOM */

.footer-bottom {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  text-decoration: none;
}

.footer-bottom span {
  color: #ffd27d !important;
  font-weight: 600;
}

/* HOVER CARD EFFECT */

.footer-brand,
.footer-links,
.footer-contact {
  padding: 20px;
  border-radius: 20px;
  transition: 0.4s ease;
}
.footer-links,
.footer-contact {
text-align: left;
}


/* =========================================
                MOBILE
========================================= */

@media (max-width: 991px) {
  .modern-footer {
    padding: 80px 0 25px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .modern-footer {
    padding: 70px 0 20px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 21px;
  }

  .footer-social a {
    width: 45px;
    height: 45px;
  }

  .footer-bottom {
    margin-top: 40px;
  }
}
/* =============================================================================== */
/* =========================================
                BREADCRUMB SECTION
========================================= */

.breadcrumb-section {
  padding: 170px 0 90px;
  background: #f1e6ce;
  text-align: center;
  position: relative;
}
.breadcrumb-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 18px;
}

.breadcrumb-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb-content ul li {
  font-size: 16px;
  color: #666;
}

.breadcrumb-content ul li a {
  color: #f5a037;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-content ul li a:hover {
  color: #533510;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 100px 0 30px;
  }

  .breadcrumb-content h1 {
    font-size: 34px;
  }

  .breadcrumb-content ul li {
    font-size: 14px;
  }
}

/* =========================================
                OUR STORY SECTION
========================================= */

.our-story-section {
  padding: 80px 0;
  background: #fff;
}

.our-story-heading {
  text-align: center;
  margin-bottom: 45px;
}

.our-story-heading span {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.our-story-heading h2 {
  font-size: 46px;
  font-weight: 700;
  color: #533510;
  line-height: 1.3;
}

/* CONTENT */

.our-story-content {
  max-width: 1600px;
  margin: auto;
  background: #f8f5f0;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.our-story-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  text-align: justify;
  margin-bottom: 22px;
}

.our-story-content p:last-child {
  margin-bottom: 0;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
  .our-story-section {
    padding: 60px 0;
  }

  .our-story-heading {
    margin-bottom: 30px;
  }

  .our-story-heading h2 {
    font-size: 30px;
  }

  .our-story-content {
    padding: 28px 20px;
  }

  .our-story-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
            STORY OFFER SECTION
========================================= */

.story-offer-section {
  width: 1600px;
  margin: auto;
  margin-top: 70px;
}

/* CARD */

.story-offer-card {
  background: #f8f5f0;
  padding: 45px 35px;
  height: 100%;
  text-align: justify;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.story-offer-card:hover {
  transform: translateY(-5px);
}

/* ICON */

.story-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #533510;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* HEADING */

.story-offer-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 18px;
}

.story-offer-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
  margin: 0;
}

/* =========================================
                TABLET
========================================= */

@media (max-width: 991px) {
  .story-offer-section {
    width: 100%;
    margin-top: 55px;
  }

  .story-offer-card {
    padding: 35px 25px;
  }
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
  .story-offer-section {
    /* width:100%; */
    margin-top: 45px;
  }

  .story-offer-card {
    padding: 35px 22px;
  }

  .story-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }

  .story-offer-card h3 {
    font-size: 24px;
  }

  .story-offer-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
            AGRICULTURE R&D SECTION
========================================= */

.agri-rnd-section {
  padding: 70px 0;
  background: #f8f5f0;
}

.agri-rnd {
  max-width: 1600px;
}

.agri-rnd-image {
  position: relative;
}
.agri-rnd-image img {
  width: 100%;
  height: auto;
  box-shadow: 3px 3px 5px gray;
  object-fit: contain;
  border-radius: 20px;
}

.agri-rnd-content span {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.agri-rnd-content h2 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: #533510;
  margin-bottom: 25px;
}

.agri-rnd-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 22px;
  text-align: justify;
}

.agri-rnd-features {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  gap: 22px;
}

.agri-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.agri-feature i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #533510;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.agri-feature h4 {
  font-size: 24px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 6px;
}

.agri-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.agri-bottom-grid {
  margin-top: 80px;
}

.agri-grid-card {
  background: #fff;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.agri-grid-card:hover {
  transform: translateY(-8px);
}

.agri-grid-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.agri-grid-content {
  padding: 28px;
}

.agri-grid-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 14px;
}

.agri-grid-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 991px) {
  .agri-rnd-content h2 {
    font-size: 38px;
  }

  .agri-rnd-image img {
    height: 500px;
  }

  .agri-rnd-features {
    flex-direction: column;
    margin-top: 0;
  }

  .agri-bottom-grid {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .agri-rnd-section {
    padding: 30px 0;
  }

  .agri-rnd-image img {
    height: 320px;
  }

  .agri-rnd-content {
    margin-top: 20px;
  }
  .agri-rnd-content h2 {
    font-size: 30px;
  }

  .agri-rnd-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .agri-feature {
    padding: 18px;
  }

  .agri-feature h4 {
    font-size: 20px;
  }

  .agri-grid-content {
    padding: 22px;
  }

  .agri-grid-content h3 {
    font-size: 24px;
  }
}

/* =========================================
                PRODUCT INTRO
========================================= */

.product-intro-section {
  padding: 90px 0 40px;
  background: #f8f5f0;
}

.product-intro-content {
  max-width: 1450px;
  margin: auto;

  text-align: center;
}

.product-intro-content span {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.product-intro-content h2 {
  font-size: 54px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 24px;
  line-height: 1.2;
}

.product-intro-content p {
  width: 85%;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  text-align: justify;
  margin-bottom: 20px;
}

/* =========================================
                PRODUCT INTRO
========================================= */

.product-intro-section {
  padding: 80px 0 30px;
  background: #f8f5f0;
}

.product-intro-content {
  text-align: center;
}

.product-intro-content span {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.product-intro-content h2 {
  font-size: 46px;
  font-weight: 700;
  color: #533510;
  margin-bottom: 22px;
}

.product-intro-content p {
  width: 80%;
  margin: auto;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  text-align: justify;
  margin-bottom: 18px;
}

/* =========================================
                PRODUCT CATEGORY
========================================= */

.product-category-section {
  padding: 70px 0;
  background: #fff;
}

.flower-bg {
  background: #f8f5f0;
}

/* ROW */

.product-category-row {
  max-width: 1500px;
  margin: auto;
}

/* CARD */

.category-product-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.category-product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */

.category-product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* CONTENT */

.category-product-content {
  padding: 18px;
  text-align: center;
}

.category-product-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #533510;
  margin-bottom: 15px;
}

/* BUTTON */

.category-product-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #533510;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.category-product-btn:hover {
  background: #f5a037;
  color: #fff;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 767px) {
  .product-intro-section {
    padding: 60px 0 20px;
  }

  .product-category-section {
    padding: 55px 0;
  }

  .product-intro-content h2,
  .product-category-heading h2 {
    font-size: 30px;
  }

  .product-intro-content p,
  .product-category-heading p {
    width: 100%;

    font-size: 15px;
    line-height: 1.8;
  }

  .product-category-heading {
    margin-bottom: 30px;
  }

  .category-product-card img {
    height: 170px;
  }

  .category-product-content {
    padding: 14px;
  }

  .category-product-content h4 {
    font-size: 18px;
  }

  .category-product-btn {
    padding: 9px 18px;

    font-size: 13px;
  }
}
/* =========================================
        COMPLETELY NEW IMPACT DESIGN
========================================= */

.impact-growth-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fffaf4, #f5ede3);
  overflow: hidden;
  position: relative;
}

/* HEADING */

.impact-growth-heading {
  text-align: center;
  margin-bottom: 70px;
}

.impact-growth-heading span {
  display: inline-block;

  padding: 10px 24px;

  background: rgba(245, 160, 55, 0.12);

  border-radius: 50px;

  color: #f5a037;

  font-size: 14px;
  font-weight: 700;

  text-transform: uppercase;

  margin-bottom: 18px;
}

.impact-growth-heading h2 {
  font-size: 58px;
  font-weight: 800;

  color: #3d2407;

  margin-bottom: 22px;
}

.impact-growth-heading p {
  width: 70%;
  margin: auto;

  font-size: 17px;
  line-height: 1.9;

  color: #666;
}

/* =========================================
            MAIN CARD
========================================= */

.impact-main-card {
  position: relative;

  height: 100%;

  border-radius: 35px;

  overflow: hidden;

  min-height: 620px;

  background: linear-gradient(135deg, #533510, #8b5a22);

  display: flex;
  align-items: flex-end;

  padding: 40px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.impact-main-card img {
  position: absolute;

  width: 100%;
  height: 100%;

  object-fit: contain;

  top: 0;
  left: 0;

  opacity: 0.18;
}

.impact-main-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgb(119, 119, 119), transparent);
}

.impact-main-content {
  position: relative;
  z-index: 2;
}

.impact-main-content h3 {
  font-size: 42px;
  font-weight: 800;

  color: #fff;

  margin-bottom: 18px;
}

.impact-main-content p {
  font-size: 16px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.82);

  margin: 0;
}

/* =========================================
            STAT BOX
========================================= */

.impact-stat-box {
  position: relative;

  background: #fff;

  padding: 40px 32px;

  border-radius: 30px;

  height: 100%;

  overflow: hidden;

  transition: 0.4s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.impact-stat-box::before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  background: rgba(245, 160, 55, 0.08);

  border-radius: 50%;

  top: -50px;
  right: -50px;
}

.impact-stat-box:hover {
  transform: translateY(-12px);

  background: linear-gradient(135deg, #533510, #7a4b18);
}

.impact-stat-box:hover h2,
.impact-stat-box:hover h4,
.impact-stat-box:hover p,
.impact-stat-box:hover i {
  color: #fff;
}

/* ICON */

.impact-icon {
  width: 80px;
  height: 80px;

  border-radius: 22px;

  background: linear-gradient(135deg, #ffb347, #ffd27d);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
}

.impact-icon i {
  font-size: 30px;
  color: #533510;
}

/* TEXT */

.impact-stat-box h2 {
  font-size: 52px;
  font-weight: 800;

  color: #533510;

  margin-bottom: 12px;

  transition: 0.3s ease;
}

.impact-stat-box h4 {
  font-size: 24px;
  font-weight: 700;

  color: #2d1b08;

  margin-bottom: 16px;

  transition: 0.3s ease;
}

.impact-stat-box p {
  font-size: 15px;
  line-height: 1.8;

  color: #666;

  margin: 0;

  transition: 0.3s ease;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 991px) {
  .impact-growth-heading h2 {
    font-size: 40px;
  }

  .impact-growth-heading p {
    width: 100%;
  }

  .impact-main-card {
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .impact-growth-section {
    padding: 70px 0;
  }

  .impact-growth-heading {
    margin-bottom: 40px;
  }

  .impact-growth-heading h2 {
    font-size: 30px;
  }

  .impact-growth-heading p {
    font-size: 15px;
  }

  .impact-main-card {
    min-height: 380px;
    padding: 30px 24px;
  }

  .impact-main-content h3 {
    font-size: 30px;
  }

  .impact-stat-box {
    padding: 32px 24px;
  }

  .impact-stat-box h2 {
    font-size: 38px;
  }

  .impact-stat-box h4 {
    font-size: 20px;
  }
}

/* =========================================
                GALLERY SECTION
========================================= */

.gallery-section {
  padding: 90px 0;
  background: #f8f5f0;
}

/* HEADING */

.gallery-heading {
  text-align: center;

  margin-bottom: 55px;
}

.gallery-heading span {
  display: inline-block;

  color: #f5a037;

  font-size: 15px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1px;

  margin-bottom: 15px;
}

.gallery-heading h2 {
  font-size: 54px;
  font-weight: 700;

  color: #533510;

  margin-bottom: 20px;

  line-height: 1.2;
}

.gallery-heading p {
  width: 75%;
  margin: auto;

  font-size: 17px;
  line-height: 1.9;

  color: #666;
}

/* GRID */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  max-width: 1600px;

  margin: auto;
}

/* ITEM */

.gallery-item {
  overflow: hidden;

  border-radius: 18px;

  cursor: pointer;

  position: relative;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.gallery-item img {
  width: 100%;
  height: 280px;

  object-fit: cover;

  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================================
                MODAL
========================================= */

.gallery-modal {
  display: none;

  position: fixed;

  z-index: 99999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.92);

  justify-content: center;
  align-items: center;

  padding: 30px;
}

/* IMAGE */

.gallery-modal-img {
  max-width: 90%;
  max-height: 90%;

  border-radius: 18px;
}

/* CLOSE */

.gallery-close {
  position: absolute;

  top: 25px;
  right: 35px;

  color: #fff;

  font-size: 45px;

  cursor: pointer;
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-heading {
    margin-bottom: 35px;
  }

  .gallery-heading h2 {
    font-size: 30px;
  }

  .gallery-heading p {
    width: 100%;

    font-size: 15px;
    line-height: 1.8;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
  }

  .gallery-item img {
    height: 170px;
  }

  .gallery-close {
    font-size: 35px;

    right: 20px;
  }
}

/* =========================================
            CONTACT SECTION
========================================= */

.minimal-contact-section {
  padding: 90px 0;
  background: #f8f5f0;
}

/* TOP */

.minimal-contact-top {
  text-align: center;
  margin-bottom: 60px;
}

.minimal-contact-top span {
  display: inline-block;
  color: #f5a037;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.minimal-contact-top h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  color: #533510;
  margin: 0;
}

.contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LEFT SIDE */

.minimal-contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  height: 100%;
}

/* CONTACT CARD */

.minimal-contact-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.minimal-contact-card:hover {
  transform: translateY(-5px);
}

/* ICON */

.minimal-contact-card i {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #533510, #7b4d1d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* TEXT */

.minimal-contact-card span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin-bottom: 5px;
}

.minimal-contact-card h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #533510;
  margin: 0;
}

/* SOCIAL */

.minimal-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.minimal-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #533510;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.minimal-socials a:hover {
  background: #f5a037;
  transform: translateY(-4px);
}

/* FORM */
.minimal-contact-form {
  background: #fff;
  padding: 45px;
  border-radius: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.minimal-contact-form h3 {
  font-size: 38px;
  font-weight: 800;
  color: #533510;
  margin-bottom: 30px;
}

/* INPUT */

.minimal-contact-form input,
.minimal-contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f8f5f0;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 15px;
  color: #333;
}

/* BUTTON */
.minimal-contact-form button {
  width: 100%;
  border: none;
  padding: 17px;
  border-radius: 50px;
  background: linear-gradient(135deg, #533510, #7b4d1d);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.7s ease;
}

.minimal-contact-form button:hover {
  background: #f5a037;
  transform: translateY(-3px);
}

/* =========================================
                MOBILE
========================================= */

@media (max-width: 991px) {
  .minimal-contact-top h2 {
    font-size: 40px;
  }
  .minimal-contact-left {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .minimal-contact-section {
    padding: 65px 0;
  }
  .minimal-contact-top {
    margin-bottom: 40px;
  }
  .minimal-contact-top h2 {
    font-size: 30px;
  }
  .minimal-contact-card {
    padding: 20px;
  }
  .minimal-contact-card h4 {
    font-size: 16px;
  }
  .minimal-contact-card i {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
  .minimal-contact-form {
    padding: 30px 22px;
  }
  .minimal-contact-form h3 {
    font-size: 28px;
  }
}
