/* <!----------------------------------------------------------------------------------------------------> */
/* <!------------------------------------  Theme 2  --------------------------------------------------------> */
/* <!----------------------------------------------------------------------------------------------------> */

body {
  background-color: #ffffff;
}

.mt-44 {
  margin-top: 4.5rem !important;
}

.text-black {
  color: black !important;
}

/* <!-- Theme 2 Hero Section --------------------------------------------------> */
.theme2-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
}

/* Dark overlay for readability */
.theme2-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.theme2-hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.theme2-hero-content {
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.theme2-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.theme2-hero-subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* ✅ Tablet screens */
@media (max-width: 1024px) {
  .theme2-hero {
    min-height: 500px;
    background-size: cover;
  }

  .theme2-hero-title {
    font-size: 2.8rem;
  }

  .theme2-hero-subtitle {
    font-size: 1rem;
  }
}

/* ✅ Mobile screens */
@media (max-width: 768px) {
  .theme2-hero {
    min-height: 450px;
    background-size: cover;
  }

  .theme2-hero-overlay {
    padding: 20px;
  }

  .theme2-hero-content {
    max-width: 100%;
  }

  .theme2-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .theme2-hero-subtitle {
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }
}

/* ✅ Extra small devices */
@media (max-width: 480px) {
  .theme2-hero {
    min-height: 380px;
    background-size: cover;
  }

  .theme2-hero-title {
    font-size: 1.6rem;
  }

  .theme2-hero-subtitle {
    font-size: 0.8rem;
  }
}

/* <!-- Theme 2 Hero Section --------------------------------------------------> */
/* <!-- Theme 2 WHo we are  Section --------------------------------------------------> */

/* =========================================================
   THEME 2 CONTAINER (Gallery Section)
   ========================================================= */
.theme-2-container {
  max-width: 1200px;
  /* Large desktops default */
  margin: 0 auto;
  padding: 50px 20px;
}

.theme-2-gallery-section {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.theme-2-gallery-section-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
  /* Default large size */
}

.theme-2-gallery-section-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* 🔹 Small Laptops (≤1200px & >1024px) */
@media (max-width: 1200px) {
  .theme-2-container {
    max-width: 1000px;
  }

  .theme-2-gallery-section-card {
    min-height: 260px;
  }
}

/* 🔹 Smaller Laptops (≤1024px & >900px) */
@media (max-width: 1024px) {
  .theme-2-container {
    max-width: 900px;
  }

  .theme-2-gallery-section-card {
    min-height: 230px;
  }
}

/* 🔹 Tablets & Mobiles (≤900px) */
@media (max-width: 900px) {
  .theme-2-gallery-section {
    flex-direction: column;
  }

  .theme-2-gallery-section-card {
    min-height: 200px;
  }
}


/* =========================================================
   THEME 2 WHO WE ARE SECTION
   ========================================================= */
.theme2-who-we-are {
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 20px;
}

.theme2-who-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.theme2-side-title {
  flex: 0 0 150px;
  font-weight: bold;
  font-size: 25px;
  color: #333;
}

.theme2-who-text h2 {
  font-size: 33px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.theme2-who-text p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

.theme2-who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.theme2-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.theme2-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.theme2-card.theme2-yellow {
  background: #fff6d6;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  padding: 20px;
}

/* 🔹 Large Desktops (≤1366px) */
@media (max-width: 1366px) {
  .theme2-who-we-are {
    max-width: 1100px;
    padding: 40px 20px;
  }

  .theme2-who-header {
    gap: 30px;
  }

  .theme2-side-title {
    flex: 0 0 130px;
    font-size: 22px;
  }

  .theme2-who-text h2 {
    font-size: 28px;
  }

  .theme2-who-text p {
    font-size: 18px;
  }
 

  .theme2-card {
    min-height: 200px;
  }

  .theme2-card.theme2-yellow {
    font-size: 16px;
    padding: 18px;
  }
}

/* 🔹 Laptops (≤1200px) */
@media (max-width: 1200px) {
  .theme2-who-we-are {
    max-width: 950px;
    padding: 35px 20px;
  }

  .theme2-card {
    min-height: 180px;
  }

  .theme2-card.theme2-yellow {
    font-size: 15px;
    padding: 16px;
  }
}

@media (width: 1024px) {
  .theme-2-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .theme-2-image,
  .theme-2-content {
    flex: 1 1 50%; /* equal width */
    max-width: 50%;
  }

  .theme-2-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}


/* 🔹 Smaller Laptops (≤1024px) */
@media (max-width: 1024px) {
  
  .theme2-who-we-are {
    max-width: 900px;
  }

  .theme2-who-header {
    flex-direction: column;
    gap: 20px;
  }
   .theme2-who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

  .theme2-side-title {
    flex: unset;
    font-size: 20px;
  }

  .theme2-who-text h2 {
    font-size: 24px;
  }

  .theme2-who-text p {
    font-size: 16px;
  }

  .theme2-card {
    min-height: 160px;
  }

  .theme2-card.theme2-yellow {
    font-size: 14px;
    padding: 14px;
  }
}

/* 🔹 Tablets (≤900px) */
@media (max-width: 900px) {
  .theme2-who-we-are {
    max-width: 100%;
    padding: 25px 15px;
  }

  .theme2-who-header {
    gap: 15px;
  }

   .theme2-who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

  .theme2-side-title {
    font-size: 18px;
  }

  .theme2-who-text h2 {
    font-size: 22px;
  }

  .theme2-who-text p {
    font-size: 14px;
  }

  .theme2-card {
    min-height: 140px;
  }

  .theme2-card.theme2-yellow {
    font-size: 18px;
    padding: 12px;
  }
}

/* 🔹 Mobile (≤600px) */
@media (max-width: 600px) {
  .theme2-who-we-are {
    padding: 20px 10px;
  }

  .theme2-side-title {
    font-size: 16px;
  }

  .theme2-who-text h2 {
    font-size: 20px;
  }

  .theme2-who-text p {
    font-size: 13px;
  }

  .theme2-card {
    min-height: 120px;
  }

  /* .theme2-card.theme2-yellow {
    font-size: 18px;
    padding: 10px;
  } */
}

/* <!-- Theme 2 WHo we are  Section --------------------------------------------------> */

/* <!-- Theme 2 About  Section --------------------------------------------------> */

/* Main Container */
.theme-2-container {
  display: flex;
  max-width: 1300px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin: auto;
}

/* Left Image */
.theme-2-image {
  flex: 1.3;
  /* was 1 → now 1.3 to make it wider */
}


.theme-2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 28px;
}

/* Right Content */
.theme-2-content {
  flex: 1;
  padding-left: 30px;
  display: flex;
  justify-content: center;
  /* centers inner container */
  align-items: center;
}

.theme-2-inner {
  width: 100%;
  border: 2px solid #dfdede;
  /* gray border */
  border-radius: 12px;
  padding: 20px;
  background: #FFFBF8;
  /* keep background white */
  display: flex;
  flex-direction: column;
}

.theme-2-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.theme-2-logo {
  width: 40px;
  margin-right: 10px;
}

.theme-2-title {
  font-size: 28px;
  color: #2c9a4b;
  font-weight: bold;
}

.theme-2-description {
  font-size: 20px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.theme-2-products-title {
  font-size: 20px;
  margin-bottom: 15px;
}

/* Products */
.theme-2-products {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.theme-2-product {
  width: 250px;
  height: 300px;
  background: #FFF4CC;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.theme-2-product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.theme-2-product1 {
  width: 250px;
  height: 300px;
  background: #FFF4CC;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.theme-2-product1 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

/* ✅ Responsive */
@media (max-width: 1200px) {
  .theme-2-container {
    max-width: 1000px;
    /* less width on small laptops */
  }
}

@media (max-width: 1024px) {
  .theme-2-container {
    max-width: 900px;
    /* even narrower for smaller laptops */
  }
}

@media (max-width: 900px) {
  .theme-2-container {
    flex-direction: column;
    max-width: 100%;
  }

  .theme-2-content {
    flex: unset;
    width: 100%;
    /* background-color: #14522d; */
  }

  .theme-2-image {
    flex: unset;
    width: 100%;
  }

  .theme-2-inner {
    margin-top: 20px;
    margin-right: 30px;
    /* add spacing below image */
    width: 100%;
    /* full width */
  }
}



/* <!-- Theme 2 About  Section --------------------------------------------------> */

/* <!-- Theme 2 Best seller  Section --------------------------------------------------> */
/* Best Sellers Section */
.theme-2-best-seller-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  padding: 50px 0px;
  background-color: #FFF9EB;
}

.theme-2-best-seller-text {
  flex: 1;
  padding-left: 120px;
}

.theme-2-best-seller-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.theme-2-best-seller-text p {
  line-height: 1.6;
  color: #666;
}

/* Cards Section */
.theme-2-best-seller-cards {
  flex: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.theme-2-best-seller-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 300px;
  max-width: 100%;
}

.theme-2-best-seller-card-image {
  position: relative;
  background: #EAF1ED;
  text-align: center;
  padding: 20px;
}

.theme-2-best-seller-card-image img {
  max-width: 70%;
  height: auto;
  transition: transform 0.3s ease;
}

.theme-2-best-seller-card-image img:hover {
  transform: scale(1.05);
}

.theme-2-best-seller-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.theme-2-best-seller-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.theme-2-best-seller-card-content h3 {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  line-height: 1.4;
}

.theme-2-best-seller-price {
  font-weight: bold;
  font-size: 16px;
}

.theme-2-best-seller-price span {
  text-decoration: line-through;
  color: #aaa;
  font-size: 14px;
  margin-left: 8px;
}

.theme-2-best-seller-offer-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.theme-2-best-seller-offer {
  background: #e6f7ec;
  color: #2e7d32;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
}

.theme-2-best-seller-rating {
  font-size: 12px;
  color: #f4b400;
}

.theme-2-best-seller-add-to-cart {
  background: #1a3d29;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.theme-2-best-seller-add-to-cart:hover {
  background: #14522d;
}

/* 🔹 Laptop L (≤1366px & >1200px) */

/* 🔹 Large Laptops / Screens (≤1366px & >1200px) */
@media (max-width: 1366px) and (min-width: 1201px) {
  /* Section adjustments */
  .theme-2-best-seller-section {
    flex-direction: row;      /* keep row layout */
    align-items: flex-start;
    gap: 25px;                /* slightly smaller gap */
    padding: 40px 50px;       /* adjusted padding for large screens */
  }

  /* Text adjustments */
  .theme-2-best-seller-text {
    flex: 1;
    padding-left: 50px;       /* smaller padding-left */
  }

  .theme-2-best-seller-text h2 {
    font-size: 32px;          /* slightly smaller heading */
  }

  .theme-2-best-seller-text p {
    font-size: 15px;          /* adjust paragraph for readability */
    line-height: 1.5;
  }

  /* Cards adjustments */
  .theme-2-best-seller-cards {
    flex: 2;
    gap: 15px;                /* adjust gap between cards */
    justify-content: flex-start;
  }

  .theme-2-best-seller-card {
    width: 180px;             /* slightly smaller cards */
  }
}


/* 🔹 Smaller Laptops/Tablets (≤1024px) */
@media (max-width: 1024px) {
  .theme-2-best-seller-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .theme-2-best-seller-text {
    padding-left: 0;
    margin-bottom: 30px;
  }

  .theme-2-best-seller-text h2 {
    font-size: 26px;
  }

  .theme-2-best-seller-text p {
    font-size: 14px;
  }

  .theme-2-best-seller-cards {
    justify-content: center;
    gap: 20px;
  }

  .theme-2-best-seller-card {
    width: 250px;
  }
}

/* 🔹 Mobile (≤576px) */
@media (max-width: 576px) {
  .theme-2-best-seller-section {
    padding: 20px 15px;
  }

  .theme-2-best-seller-card {
    width: 100%;
    max-width: 100%;
  }

  .theme-2-best-seller-text h2,
  .theme-2-best-seller-text p {
    text-align: center;
  }
}


/* <!-- Theme 2 Best seller  Section --------------------------------------------------> */



/* <!-- Theme 2 Products  Section --------------------------------------------------> */

.theme-2-products-product-offers {
  padding: 5rem;
  background: #ffffff;
  padding-left: 8rem;
  padding-right: 8.5rem;
}

.theme-2-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.theme-2-products-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  padding: 25px;
  color: #fff;
  min-height: 350px;
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

/* Content left */
.theme-2-products-content {
  max-width: 50%;
}

.theme-2-products-content h3 {
  margin: 20px 0;
  font-size: 32px;
  font-weight: bold;
  margin-top: 30px;
}

.theme-2-products-content p {
  margin: 10px 0 18px;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

/* Badge */
.theme-2-products-badge {
  background: #ffcc33;
  color: #000;
  font-weight: bold;
  padding: 6px 14px;
  display: inline-block;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Button */
.theme-2-products-btn {
  background: #fff;
  color: #004d40;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.theme-2-products-btn:hover {
  background: #004d40;
  color: #fff;
}

.theme-2-products-btn2 {
  background: #054A35;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.theme-2-products-btn2:hover {
  background: #ffffff;
  color: #004d40;
}

/* Image alignment */
.theme-2-products-image {
  position: absolute;
  right: 15px;
  bottom: 0;
  display: flex;
  align-items: flex-end;
}

.theme-2-products-image img {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.25));
}

/* Background variations */
.theme-2-products-fertilizer {
  background: #F3F3F3;
  ;
  color: #333;
}

.theme-2-products-fertilizer .theme-2-products-content p {
  color: #444;
}

.theme-2-products-pesticides .theme-2-products-content h3 {
  color: white;
}

.theme-2-products-pesticides {
  background: #1A8156;
}

.theme-2-product-pre {
  background: linear-gradient(35deg, #dbe23d, #969b1c), linear-gradient(125.2deg, rgba(255, 255, 255, 0) 18.03%, #b2bb32 69.49%), linear-gradient(0deg, rgba(69, 66, 66, 0.2), rgba(69, 66, 66, 0.2));
}

/* ========================
   New Changes
   ======================== */
/* 3rd card wider */
.wide-card {
  grid-column: span 1;
}

/* Split 4th card stacked top-bottom */
.theme-2-products-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.small-card {
  color: white;
  min-height: 160px;
  padding: 16px 16px;
  position: relative;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* White text in small cards */
.small-card .theme-2-products-content h3,
.small-card .theme-2-products-content p {
  color: #fff;
}

/* Override badge in small cards */
.small-card .small-badge {
  background: #ffcc33;
}

/* Typography */
.small-card .theme-2-products-content {
  max-width: 60%;
}

.small-card .theme-2-products-content h3 {
  font-size: 15px;
  margin-top: 10px;
}

.small-card .theme-2-products-content p {
  font-size: 12px;
}

.small-card .theme-2-products-image img {
  max-width: 160px;
}

/* Different background colors */
.small-card-1 {
  background-color: #FFF1D6;
  /* earthy green */
}

.small-card-2 {
  background-color: #341F24;
  /* deep reddish tone */
}

/* ========================
   Responsive Styles
   ======================== */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .theme-2-products-product-offers {
    padding: 3rem;
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .theme-2-products-content {
    max-width: 60%;
  }

  .theme-2-products-content h3 {
    font-size: 28px;
  }

  .theme-2-products-content p {
    font-size: 16px;
  }

  .theme-2-products-image img {
    max-width: 250px;
  }
}

/* Tablets & Mobiles (≤768px) */
@media (max-width: 768px) {
  .theme-2-products-grid {
    grid-template-columns: 1fr;
  }

  .theme-2-products-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 20px;
  }

  .theme-2-products-content {
    max-width: 100%;
  }

  .theme-2-products-image {
    position: static;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .theme-2-products-image img {
    max-width: 220px;
  }
}

/* Small Mobiles (≤480px) */
@media (max-width: 480px) {
  .theme-2-products-product-offers {
    padding: 2rem 1rem;
  }

  .theme-2-products-content h3 {
    font-size: 22px;
  }

  .theme-2-products-content p {
    font-size: 14px;
  }

  .theme-2-products-badge {
    font-size: 14px;
    padding: 5px 12px;
  }

  .theme-2-products-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .theme-2-products-image img {
    max-width: 180px;
  }
}

/* <!-- Theme 2 Products  Section --------------------------------------------------> */

/* <!-- Theme 2 Products gallery Section --------------------------------------------------> */

.theme-2-gallery-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background-color: #FFF9EB;
}

.theme-2-gallery-item {
  flex: 1;
  max-width: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* 🔥 make it look different */
}

.theme-2-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
  /* 🔥 subtle hover effect */
}

/* .theme-2-gallery-item img:hover {
  transform: scale(1.05);
} */

@media (max-width: 768px) {
  .theme-2-gallery-block {
    flex-direction: column;
    gap: 20px;
  }
}

/* <!-- Theme 2 Products gallery Section --------------------------------------------------> */
/* <!--  Products gallery 2 Section --------------------------------------------------> */

.gallary-2-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background-color: #FFF9EB;
}

.gallary-2-card {
  flex: 1;
  max-width: 600px;
  overflow: hidden;
}

.gallary-2-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .gallary-2-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* <!--  Products gallery 2 Section --------------------------------------------------> */

/* <!-- Theme 2 bottom --------------------------------------------------> */
.theme2-hero-bottom {
  position: relative;
  min-height: 500px;
  background: url("./img/theme2Bottom.png") center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  text-align: center;
}

/* Dark overlay */
.theme2-hero-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.theme2-hero-bottom-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.theme2-hero-bottom-content {
  max-width: 900px;
  color: #fff;
  text-align: center;
}

.theme2-hero-bottom-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.theme2-hero-bottom-subtitle {
  font-size: 1.2rem;
  margin-top: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* ✅ Button as <a> */
.theme2-hero-bottom-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  /* initial text color */
  background-color: white;
  /* initial background */
  border: 2px solid #256428;
  /* outer border */
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease, color 0.3s ease;
}

/* Hover: dark background + white text + border */
.theme2-hero-bottom-btn:hover {
  background-color: #256428;
  color: #fff;
  border: 2px solid #256428;
  transform: scale(1.05);
}

/* ✅ Tablet screens */
@media (max-width: 1024px) {
  .theme2-hero-bottom {
    min-height: 500px;
  }

  .theme2-hero-bottom-title {
    font-size: 2.8rem;
  }

  .theme2-hero-bottom-subtitle {
    font-size: 1rem;
  }
}

/* ✅ Mobile screens */
@media (max-width: 768px) {
  .theme2-hero-bottom {
    min-height: 450px;
  }

  .theme2-hero-bottom-overlay {
    padding: 20px;
  }

  .theme2-hero-bottom-content {
    max-width: 100%;
  }

  .theme2-hero-bottom-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .theme2-hero-bottom-subtitle {
    font-size: 0.9rem;
    margin-top: 0.8rem;
  }

  .theme2-hero-bottom-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* ✅ Extra small devices */
@media (max-width: 480px) {
  .theme2-hero-bottom {
    min-height: 380px;
  }

  .theme2-hero-bottom-title {
    font-size: 1.6rem;
  }

  .theme2-hero-bottom-subtitle {
    font-size: 0.8rem;
  }

  .theme2-hero-bottom-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}


/* <!-- Theme 2 bottom --------------------------------------------------> */
/* <!-- Theme 2 Potassium Humate --------------------------------------------------> */
/* Banner Section */
.theme-2-potassium-banner {
  position: relative;
  width: 100%;
  padding: 50px 140px;
  background: url("./img/potBg.png") no-repeat center center/cover;
  overflow: hidden;
}

/* Brown overlay */
.theme-2-potassium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #330c01e3;
  z-index: 1;
}

.theme-2-potassium-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left Content */
.theme-2-potassium-left {
  flex: 1;
}

.theme-2-potassium-left h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  color: white;
  font-weight: 700;
}

.theme-2-potassium-left h1 span {
  color: #fff;
}

.theme-2-potassium-left p {
  margin: 15px 0;
  font-size: 1rem;
  color: #ccc;
}

.theme-2-potassium-btn {
  background: #7bc96f;
  color: #000;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.theme-2-potassium-btn:hover {
  background: #5ea752;
}

/* Center Product Images */
.theme-2-potassium-center {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.theme-2-potassium-img {
  width: 600px;
  border-radius: 10px;
}

.theme-2-potassium-main-img {
  position: absolute;
  z-index: 2;
  margin-top: 80px;
  width: 750px;
  height: auto;
  max-width: 130%;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10;
}

.theme-2-potassium-back-img {
  position: absolute;
  right: -60px;
  top: 40px;
  z-index: 1;
  opacity: 0.9;
  width: 200px;
}

.pbg {
  background: #EAF1ED;
}

/* Right Features */
.theme-2-potassium-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 45px;
  position: relative;
  z-index: 2;
}

.theme-2-potassium-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-2-potassium-number {
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.theme-2-potassium-feature p {
  font-size: 1rem;
  color: #ddd;
  position: relative;
  margin-top: 15px;
}


@media (max-width: 1440px) and (min-width: 1280px) {
  .theme-2-potassium-main-img {
    margin-top: 180px;
    width: 900px;
    /* slightly smaller than full desktop */
  }
}

/* ✅ Keep 3-column layout for small laptops (≤1024px) */
@media (max-width: 1024px) {

  .theme-2-potassium-main-img {
    /* margin-top: 80px; */
    width: 500px;
  }

  .theme-2-potassium-container {
    flex-direction: row;
    text-align: left;
    gap: 25px;
  }

  .theme-2-potassium-left h1 {
    font-size: 2.2rem;
  }

  .theme-2-potassium-left p {
    font-size: 0.95rem;
  }

  .theme-2-potassium-img {
    width: 450px;
  }

  .theme-2-potassium-back-img {
    width: 160px;
    right: -40px;
    top: 30px;
  }

  .theme-2-potassium-right {
    gap: 25px;
  }
}

/* Mobile (≤768px) → stack layout */
@media (max-width: 768px) {

  .theme-2-potassium-main-img {
    width: 350px;
    position: relative;
    /* switch to relative for stacking */
    transform: none;
    left: auto;
    bottom: auto;
  }

  .theme-2-potassium-banner {
    padding: 40px 20px;
  }

  .theme-2-potassium-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .theme-2-potassium-left h1 {
    font-size: 1.8rem;
  }

  .theme-2-potassium-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .theme-2-potassium-img {
    width: 320px;
    margin-top: 0px;
  }

  .theme-2-potassium-back-img {
    display: none;
  }

  .theme-2-potassium-right {
    align-items: center;
    gap: 20px;
  }

  .theme-2-potassium-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .theme-2-potassium-feature p {
    font-size: 0.9rem;
  }

  .theme-2-container {
    padding-top: 0px;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {

  .theme-2-potassium-main-img {
    width: 250px;
  }

  .theme-2-potassium-left h1 {
    font-size: 1.5rem;
  }

  .theme-2-potassium-img {
    width: 260px;
    margin-top: 0px;
  }

  .theme-2-potassium-left p {
    font-size: 0.85rem;
  }

  .theme-2-potassium-btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 10px;
  }

  .theme2-who-text h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .theme-2-product1 {
    width: 250px;
    height: 200px;
    background: #FFF4CC;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }

  .theme-2-product {
    width: 250px;
    height: 200px;
    background: #FFF4CC;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
  }
}

@media (min-width: 320px) and (max-width: 768px) {
  .cc {
    margin-left: -20px;
  }
}

/* <!-- Theme 2 Potassium Humate --------------------------------------------------> */
/* <!------------------------ Product section Section  -------------------------> */


.product-section-title {
  color: #1b1b1b;
  font-weight: bold;
  margin: 0;
  padding-bottom: 50px; /* default (large screens) */
}

/* Laptops (≤1200px) */
@media (max-width: 1200px) {
  .product-section-title {
    padding-bottom: 90px;
  }
}

/* Tablets (≤900px) */
@media (max-width: 900px) {
  .product-section-title {
    padding-bottom: 90px;
  }
}

/* Mobiles (≤600px) */
@media (max-width: 600px) {
  .product-section-title {
    padding-bottom: 12px;
  }
}


/* <!------------------------ Product section Section  -------------------------> */
