/*
  Consolidated Pragati stylesheet.
  Duplicate selectors have been merged inside the same CSS/media context.
  All responsive rules are grouped at the bottom by media query.
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700;800&display=swap");


/* ===== Base styles start ===== */

:root {
  --accent: #fcdb5a;
  --accent-dark: #c8a951;
  --dark: #2c2c2c;
  --dark2: #1e1e1e;
  --footer-bg: #222222;
  --text: #666666;
  --heading: #2c2c2c;
  --light: #f9f9f9;
  --border: #e5e5e5;
  --font-h: "Poppins", sans-serif;
  --font-b: "Poppins", sans-serif;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes softPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.08);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
  padding-top: var(--header-height, 0px);
  overflow-x: hidden;
  top: 0 !important;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sec-bar {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 20px;
}

img {
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.header-fixed.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-row1 {
  border-bottom: none;
}

.header-row1-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px 0 160px;
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
}

.nav-logo {
  position: absolute;
  top: 2px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.nav-logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
}

.nav-logo-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 7px;
  color: #888;
  letter-spacing: 0.3px;
  margin-top: 1px;
  white-space: nowrap;
  font-style: italic;
}

.header-row1-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: #c8a951;
}

.two-star-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #DA2C27;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
}

.two-star-stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 1px;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2c2c2c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.header-social:hover {
  background: #c8a951;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccc;
  padding: 6px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  border-radius: 4px;
  min-width: 80px;
  justify-content: center;
  position: relative;
  user-select: none;
}

.lang-text {
  font-weight: 500;
}

.lang-caret {
  font-size: 8px;
  transition: transform 0.2s;
}

.lang-selector.open .lang-caret {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  z-index: 200;
  overflow: hidden;
}

.lang-option {
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.lang-option:hover {
  background: #f5f5f5;
  color: #c8a84b;
}

.nav-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  padding: 2px;
  transition: color 0.2s;
}

.nav-search-btn:hover {
  color: #c8a951;
}

.header-divider {
  height: 1px;
  background: linear-gradient(to right, #fcdb5a 0%, #e8c840 50%, #fcdb5a 100%);
  margin-left: 280px;
}

.header-row2 {

}

.header-row2-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3px 40px 2px 160px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 14px 16px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
  color: #c8a951;
}

.caret {
  font-size: 8px;
  margin-left: 2px;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #eee;
  border-top: 2px solid #fcdb5a;
  min-width: 170px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  color: #444;
  text-decoration: none;
  transition: all 0.15s;
  font-family: "Poppins", sans-serif;
}

.nav-dropdown-item:hover {
  background: #f9f6ee;
  color: #c8a951;
  padding-left: 24px;
}

.btn-get-in-touch {
  margin-left: 20px;
  background: #fcdb5a;
  color: #2c2c2c;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  border: 2px solid #fcdb5a;
}

.btn-get-in-touch:hover {
  background: #e8c840;
  color: #2c2c2c;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 4px;
  margin-left: auto;
}

.nav-spacer {
  height: 0;
  display: none !important;
}

.nav-search-bar {
  background: #f8f8f8;
  border-top: 1px solid #eee;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-search-bar.open {
  max-height: 60px;
}

.nav-search-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search-input {
  flex: 1;
  padding: 8px 14px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
}

.nav-search-input:focus {
  border-color: #fcdb5a;
}

.nav-search-submit {
  background: #fcdb5a;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.nav-search-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #888;
  padding: 4px;
}

.breadcrumb {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  text-align: left;
  justify-content: flex-start;
  text-transform: uppercase;
  z-index: 10;
  box-sizing: border-box;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  padding: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 0.8s ease;
  opacity: 1;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 14s ease-in-out infinite alternate;
  background-image: url("../images/home-banner-exact.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(94, 59, 4, .66) 0%, rgba(80, 50, 4, .50) 45%, rgba(60, 35, 2, .30) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 70%;
  max-width: 800px;
  z-index: 2;
  top: 52%;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.06;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #f5c518;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hero-desc {
  font-family: "Poppins", sans-serif;
  margin: 0 auto 36px;
  font-weight: 400;
  color: #fff;
  font-size: 12px;
  max-width: 640px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-oval-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--accent);
}

.btn-oval-dark:hover {
  background: var(--dark);
  color: var(--accent);
  border-color: var(--dark);
}

.btn-oval-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
}

.btn-oval-outline:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-oval-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--dark);
}

.btn-oval-sm:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.hero-play-outer {
  position: absolute;
  top: 52%;
  right: 10%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(252, 219, 90, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.2s;
  animation: softPulse 2.8s ease-in-out infinite;
}

.hero-play-outer:hover {
  border-color: rgba(252, 219, 90, 0.8);
  transform: translateY(-50%) scale(1.06);
}

.hero-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fcdb5a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-play-btn:hover {
  background: #e8c840;
}

.hero-dots-vertical {
  position: absolute;
  top: 52%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent);
  height: 28px;
  border-radius: 5px;
}

.hero-vertical-lines {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: -27px;
  margin-bottom: -45px;
}

.hero-vline-img {
  width: auto;
  opacity: 0.9;
  height: 82px;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.video-modal.open {
  display: flex;
}

.video-modal-inner {
  max-width: 900px;
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  height: auto !important;
  background: #000;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .45);
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #fcdb5a;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certs-section {
  background: #fff;
  padding: 88px 0 62px;
}

.certs-full-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.certs-header {
  text-align: center;
  margin-bottom: 48px;
}

.certs-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.certs-sub {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #797979;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.certs-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  width: 225px;
  border-radius: 10px;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  gap: 10px;
  padding-bottom: 10px;
}

.cert-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.cert-logo-wrap {
  border: 1px solid #bfbfbf;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.cert-logo-img {
  object-fit: contain;
}

.cert-name {
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
  color: #2c2c2c;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.cert-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.cert-modal.open {
  display: flex;
}

.cert-modal-inner {
  background: #fff;
  max-width: 700px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
}

.cert-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.cert-modal-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.cert-modal-img {
  width: 260px;
  height: 200px;
  object-fit: contain;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cert-modal-info h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.cert-modal-info p {
  font-size: 13px;
  color: #777;
  line-height: 1.9;
}

.quality-section {
  padding: 0;
  background: #fff;
}

.quality-title-wrap {
  text-align: center;
  padding: 60px 0 0;
  background: #fff;
  padding-top: 68px;
}

.quality-title-img {
  width: 90%;
  height: auto;
  display: inline-block;
  max-width: 710px;
}

.quality-about-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 42px 0 85px;
}

.pragati-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-size: 12rem;
  letter-spacing: 20px;
  color: rgb(251 184 0 / 14%);
}

.quality-grid {
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  gap: 40px;
  grid-template-columns: .9fr 1.05fr 1.1fr;
}

.quality-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quality-about-upper {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2c2c2c;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.quality-about-lower {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c2c2c;
  text-transform: uppercase;
  margin: -4px 0 24px;
  line-height: 1.1;
}

.btn-yellow-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #2c2c2c;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid #fcdb5a;
  transition: all 0.2s;
}

.btn-yellow-outline:hover {
  background: #fcdb5a;
  color: #2c2c2c;
}

.quality-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-product-img {
  max-width: 100%;
  object-fit: contain;
  max-height: 270px;
}

.quality-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-banner-outer {
  background: #fff;
  padding: 0 60px;
}

.stats-banner {
  margin: 0;
  border-radius: 0;
  padding: 100px 42px;
  background: #fcdb5a;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 0 auto;
  max-width: 1050px;
}

.stats-banner-item {
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
}

.stats-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-icon-img {
  object-fit: contain;
  width: 52px;
  height: 52px;
}

.stats-banner-text {
  text-align: left;
}

.stats-banner-num {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c2c2c;
  line-height: 1;
}

.stats-banner-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #978335;
  margin-top: 6px;
}

.stats-banner-divider {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.15);
}

.world-section {
  background: #fff;
  padding: 85px 0 85px;
}

.world-section .wrap {
  padding: 0 60px;
  text-align: center;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  justify-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1060px;
  gap: 18px 18px;
}

.country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.world-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}

.world-thin {
  font-weight: 300;
}

.world-bold {
  font-weight: 700;
}

.country-flag-img {
  width: 100%;
  max-width: 110px;
  height: 68px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.country-name {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  color: var(--dark);
  text-align: center;
}

.products-master {
  display: flex;
  flex-direction: column;
  margin: 0 60px;
  gap: 6px;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 300px;
  gap: 6px;
}

.prod-cell {
  overflow: hidden;
}

.prod-span2 {
  grid-column: span 2;
}

.prod-text-cell {
  grid-column: span 2;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  font-family: "Poppins", sans-serif;
  padding: 38px 32px;
}

.prod-text-cell * {
  font-family: "Poppins", sans-serif !important;
}

.prod-text-cell h2 {
  font-family: "Poppins", sans-serif !important;
  font-size: 26px !important;
}

.prod-text-cell p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 24px;
}

.prod-text-cell a {
  font-family: "Poppins", sans-serif !important;
}

.prod-blank {
  background: #fff;
}

.product-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.product-tile-img {
  width: 100%;
  height: Auto;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-tile:hover .product-tile-img {
  transform: scale(1.05);
}

.product-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, .08));
  justify-content: center;
  align-items: center;
  padding: 14px;
  text-align: center;
}

.product-tile-name {
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
}

.product-tile-overlay-rich {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-tile-tagline {
  display: none;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  letter-spacing: 0.5px;
}

.testimonials-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
}

.testimonial-bg-sketch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1100px;
  opacity: 0.75;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonials-section .wrap {
  position: relative;
  z-index: 1;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-heading {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: var(--dark);
  margin: 0 0 12px;
  word-spacing: 0.15em;
}

.testimonial-heading strong {
  font-weight: 800;
  margin-left: 0.3em;
}

.testimonial-heading span {
  font-weight: 300;
}

.testimonial-subheading {
  font-size: 13px;
  color: #aaa;
  margin: 0 auto;
  line-height: 1.8;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 16px;
}

.testimonial-body {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 920px;
}

.testimonial-quote-icon {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: -8px;
  font-size: 62px;
  margin-bottom: 0;
}

.testimonial-text {
  color: #222;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {

}

.testimonial-name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-role {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  color: #888;
}

.testimonial-dots {
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  display: none;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

.pepagrp-banner {
  background: #fff;
  padding: 36px 12px;
}

.pepagrp-banner a {
  display: block;
  width: 100%;
}

.pepagrp-banner a img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0 60px;
}

.blog-section {
  background: #fff;
  padding: 82px 0 66px;
}

.blog-header {
  text-align: center;
  margin-bottom: 48px;
}

.blog-heading {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #2c2c2c;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 16px;
}

.blog-bold {
  font-weight: 700;
}

.blog-subline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #797979;
  margin: 0 auto;
  line-height: 1.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  overflow: hidden;
  text-align: center;
}

.blog-card-img-wrap {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.65/1;
}

.blog-card-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 8px;
}

.blog-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-card-desc {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #797979;
  line-height: 1.8;
  margin-bottom: 18px;
}

.blog-read-more {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2c2c2c;
  background: #fff;
  border: 2px solid var(--accent);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.2s;
  border-radius: 50px;
}

.blog-read-more:hover {
  background: var(--accent);
  color: var(--dark);
}

footer {
  background: #fff;
  color: #555;
  width: 100%;
}

.footer-main {
  border-top: 1px solid #e0e0e0;
  padding: 18px 0 10px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  width: auto;
  object-fit: contain;
  height: 58px;
}

.footer-tagline {
  display: none;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  max-width: 420px;
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-newsletter-form {
  gap: 0;
  justify-content: center;
  display: flex;
  width: 100%;
  max-width: 520px;
  border: 1px solid #ccc;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.footer-newsletter-input {
  display: block !important;
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 18px;
  background: #fff;
  border: 0;
  color: #2c2c2c;
  font-size: 14px;
  outline: none;
  font-family: "Poppins", sans-serif;
  border-radius: 50px 0 0 50px;
}

.footer-newsletter-input::placeholder {
  color: #aaa;
}

.footer-newsletter-btn {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex: 0 0 auto;
  background: #e0b000;
  color: #2c2c2c;
  border: 0;
  border-left: 1px solid #e0b000;
  border-radius: 0 50px 50px 0;
  padding: 12px 28px;
}

.footer-newsletter-btn:hover {
  background: #e0b000;
}

.footer-newsletter-msg {
  min-height: 18px;
  margin-top: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  line-height: 1.4;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-follow-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.footer-follow-icons {
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: #c8a951;
}

.footer-nav-bar {
  background: #f5f5f5;
  padding: 6px 0;
  border-top: 1px solid #e0e0e0;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.footer-nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  padding: 3px 10px;
}

.footer-nav-link:hover {
  color: #c8a951;
}

.footer-nav-sep {
  color: #bbb;
  font-size: 12px;
  line-height: 1;
}

.footer-copyright {
  background: #efefef;
  padding: 4px 0;
  border-top: 1px solid #e9e9e9;
}

.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #888;
}

.footer-cp-link {
  color: #888;
  text-decoration: none;
}

.footer-cp-link:hover {
  color: #c8a951;
}

.footer-rnj-link {
  color: #2196F3;
  text-decoration: none;
  font-weight: 600;
}

.footer-rnj-link:hover {
  text-decoration: underline;
}

.nav-link, .header-phone, .two-star-badge, .btn-get-in-touch, .footer-heading, .footer-nav-link, .certs-title, .world-title, .blog-heading, .testimonial-heading {
  font-family: "Poppins", sans-serif !important;
}

.hero-title span {
  color: #fff !important;
}

.quality-about-upper, .quality-about-lower {
  font-size: 27px;
}

.quality-desc p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.9;
  margin-bottom: 16px;
}

.world-section p {
  font-size: 13px;
  color: #888;
  margin: 12px auto 0;
  line-height: 1.8;
}

.product-tile.embedded-text .product-tile-overlay {
  background: rgba(0, 0, 0, .03);
}

.product-tile.embedded-text .product-tile-name, .product-tile.embedded-text .product-tile-tagline {
  display: none;
}

.pepagrp-banner .pep-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.blog-swiper {
  margin: 0 auto;
  overflow: hidden;
}

.google-translate-element {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  left: -9999px !important;
  top: auto !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.google-lang-selector {
  position: relative;
  padding: 0;
  overflow: visible;
  min-width: 82px;
  height: 38px;
}

.lang-toggle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 14px;
}

.google-lang-selector .lang-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  min-width: 150px;
}

.google-lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.google-lang-selector .lang-option {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  display: block;
  padding: 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #333;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.google-lang-selector .lang-option:hover, .google-lang-selector .lang-option.active {
  background: #f7f7f7;
  color: #c8a84b;
}

.goog-te-banner-frame.skiptranslate, .goog-te-gadget, .goog-te-gadget-simple, .goog-logo-link, .VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
  display: none !important;
}

.header-social i, .footer-social-link i {
  font-size: 12px;
  line-height: 1;
  display: block;
}

.footer-social-link i {
  font-size: 14px;
}

.hero-section .hero-slide {
  opacity: 0 !important;
  pointer-events: none;
  z-index: 0;
}

.hero-section .hero-slide.active {
  opacity: 1 !important;
  pointer-events: auto;
  z-index: 2;
}

.hero-section .hero-slide .hero-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-play-btn i {
  color: #2c2c2c;
  font-size: 20px;
  line-height: 1;
  margin-left: 3px;
}

.video-modal-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close:hover {
  background: #e8c840;
}

body.video-modal-open {
  overflow: hidden;
}

.footer-newsletter-btn:disabled {
  cursor: not-allowed;
  opacity: .75;
}

.footer-newsletter-msg.is-success {
  color: #1f8f4d;
}

.footer-newsletter-msg.is-error {
  color: #d93025;
}

.inner-page-hero {
  position: relative;
  width: 100%;
  height: 260px;
  min-height: 260px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #3a2a10;
  overflow: hidden;
}

.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 5, 0.56);
  z-index: 1;
  pointer-events: none;
}

.inner-page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-breadcrumb {
  position: absolute;
  top: 34px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  margin: 0;
  padding: 0;
  z-index: 3;
}

.inner-breadcrumb-link, .inner-breadcrumb-current {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.inner-breadcrumb-link:hover {
  color: #fff;
}

.inner-breadcrumb-sep {
  color: rgba(255, 255, 255, .45);
}

.inner-page-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin: 0 auto 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.inner-page-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 400;
  color: #f5c518;
  margin: 0 auto 6px;
  line-height: 1.25;
}

.inner-page-desc {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-page {
  background: #fff;
}

.about-page-hero {
  background-position: center 42%;
}

.about-directors-section {
  padding: 60px 0;
  background: #fff;
}

.about-directors-wrap, .about-company-wrap, .about-split-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-directors-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-directors-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
}

.about-directors-text-col {
  padding-top: 16px;
}

.about-sec-label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #c9a84c;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.about-committed-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.2;
}

.about-sec-bar {
  width: 48px;
  height: 3px;
  background: #c9a84c;
  margin-bottom: 24px;
}

.about-committed-body, .about-company-text, .about-section-body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.9;
}

.about-committed-body {
  margin: 0 0 16px;
}

.about-company-section {
  padding: 19px 0 60px;
  background: #fff;
}

.about-company-text {
  margin: 0 0 16px;
  text-align: justify;
}

.about-white-section {
  padding: 60px 0;
  background: #fff;
}

.about-colored-section {
  padding: 60px 0;
  background: #f8f6f0;
}

.about-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-split-img-col {
  overflow: hidden;
  padding: 32px 0;
  display: flex;
  align-items: center;
}

.about-split-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.about-quality-img {
  object-fit: cover;
  object-position: center;
}

.about-split-text-col {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 18px;
  line-height: 1.25;
}

.about-section-body {
  margin: 0;
}

.btn-section-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 68px;
  margin-left: 0;
  padding: 18px 42px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 4px;
  border-radius: 50px;
}

.exports-page {
  background: #fff;
}

.exports-page-hero {
  background-position: center center;
}

.exports-product-section {
  background: #f8f7f2;
  padding: 85px 0 70px;
}

.exports-product-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.exports-product-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}

.exports-thin {
  font-weight: 300;
}

.exports-bold {
  font-weight: 700;
}

.exports-product-desc {
  max-width: 1200px;
  margin: 0 auto 42px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #4b4b4b;
  line-height: 1.8;
  text-align: left;
}

.exports-product-image-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.exports-product-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.exports-distributor-section {
  background: #fff;
  padding: 70px 20px 85px;
  text-align: center;
}

.exports-distributor-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
}

.exports-distributor-thin {
  font-weight: 300;
}

.exports-distributor-bold {
  font-weight: 700;
}

.exports-distributor-text {
  max-width: 850px;
  margin: 0 auto 34px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  color: #777;
  line-height: 1.7;
}

.achievements-page {
  background: #fff;
}

.achievements-page-hero {
  background-position: center center;
}

.section-heading-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 7px;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0;
}

.section-title .thin {
  font-weight: 300;
}

.section-title-bar {
  width: 58px;
  height: 4px;
  background: var(--accent);
  margin: 26px auto 0;
}

.section-description {
  max-width: 680px;
  margin: 24px auto 0;
  font-family: var(--font-b);
  font-size: 14px;
  color: #777;
  line-height: 1.9;
}

.achievement-intro-section {
  padding: 86px 0 62px;
  background: #fff;
}

.achievement-grid-section {
  padding: 0 0 92px;
  background: #fff;
}

.achievement-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 42px;
  max-width: 1040px;
  margin: 0 auto;
}

.achievement-card {
  min-height: 270px;
  padding: 48px 42px 44px;
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.achievement-card:hover, .achievement-card-highlight {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.achievement-card:hover {
  transform: translateY(-4px);
}

.achievement-icon {
  font-size: 44px;
  line-height: 1;
  margin: 0 0 24px;
}

.achievement-card-title {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.25;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.achievement-card-desc {
  font-family: var(--font-b);
  font-size: 14px;
  color: #777;
  line-height: 1.9;
  margin: 0;
}

.achievement-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-width: 66px;
  height: 34px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.achievement-cert-section {
  padding: 88px 0 100px;
  background: var(--light);
}

.achievement-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 820px;
  margin: 66px auto 0;
}

.achievement-cert-card {
  min-height: 248px;
  padding: 50px 34px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.achievement-cert-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.achievement-cert-icon {
  font-size: 42px;
  line-height: 1;
  margin: 0 0 28px;
}

.achievement-cert-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.achievement-cert-desc {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.article-list-section {
  background: #fff;
  padding: 42px 0 80px;
}

.article-list-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-list-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.article-list-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, .8fr) minmax(220px, .8fr);
  gap: 18px;
  align-items: end;
  padding: 22px;
  margin-bottom: 22px;
  background: #f8f7f2;
  border: 1px solid #eeeeea;
  border-radius: 22px;
}

.article-search-box, .article-filter-box {
  min-width: 0;
}

.article-filter-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.article-search-input, .article-filter-select {
  width: 100%;
  height: 48px;
  border: 1px solid #dedede;
  border-radius: 50px;
  background: #fff;
  color: #2c2c2c;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  outline: none;
}

.article-search-input {
  padding: 0 18px;
}

.article-search-input:focus, .article-filter-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(252, 219, 90, .22);
}

.article-list-toolbar .chosen-container {
  width: 100% !important;
  font-family: "Poppins", sans-serif;
}

.article-list-toolbar .chosen-container-single .chosen-single {
  height: 48px;
  line-height: 48px;
  border: 1px solid #dedede;
  border-radius: 50px;
  background: #fff;
  box-shadow: none;
  color: #2c2c2c;
  padding: 0 44px 0 18px;
  font-size: 13px;
}

.article-list-toolbar .chosen-container-single .chosen-single div {
  width: 42px;
}

.article-list-toolbar .chosen-container-single .chosen-single div b {
  background-position: 0 14px;
}

.article-list-toolbar .chosen-container-active.chosen-with-drop .chosen-single {
  border-color: var(--accent);
  border-radius: 24px 24px 0 0;
  background: #fff;
}

.article-list-toolbar .chosen-container .chosen-drop {
  border-color: var(--accent);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .08);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}

.article-list-toolbar .chosen-container .chosen-search input[type="text"] {
  min-height: 38px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  padding: 8px 12px;
  background: #fff !important;
}

.article-list-toolbar .chosen-container .chosen-results {
  margin: 0;
  padding: 4px;
  max-height: 220px;
}

.article-list-toolbar .chosen-container .chosen-results li {
  padding: 9px 12px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.article-list-toolbar .chosen-container .chosen-results li.highlighted {
  background: var(--accent);
  color: #2c2c2c;
}

.article-list-count {
  margin-bottom: 22px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(252, 219, 90, .85);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.article-card-img-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f8f7f2;
}

.article-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.article-card:hover .article-card-img {
  transform: scale(1.05);
}

.article-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
  text-align: center;
}

.article-card-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #b99a2f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-card-title {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #252525;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
}

.article-card-title a:hover {
  color: #c8a951;
}

.article-card-desc {
  flex: 1;
  margin: 0 0 22px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #777;
  line-height: 1.75;
}

.article-read-more {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 10px 22px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  color: #2c2c2c;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.article-read-more:hover {
  background: var(--accent);
  color: #2c2c2c;
}

.article-empty-state {
  margin: 40px auto 0;
  max-width: 520px;
  padding: 24px;
  text-align: center;
  border: 1px dashed #d6d6d6;
  border-radius: 18px;
  color: #777;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.article-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}

.article-pagination-info {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.article-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e4e4e4;
  border-radius: 50%;
  background: #fff;
  color: #2c2c2c;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
}

.article-page-btn.is-wide {
  min-width: 78px;
  border-radius: 50px;
}

.article-page-btn:hover:not(:disabled), .article-page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #2c2c2c;
}

.article-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.article-pagination-dots {
  padding: 0 6px;
  color: #aaa;
  font-weight: 700;
}

.article-list-filter-panel {
  width: 100%;
  margin-bottom: 64px;
}

.article-list-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.article-list-field {
  position: relative;
  min-width: 0;
}

.article-list-select, .article-list-date {
  width: 100%;
  height: 58px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background: #fff;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 58px;
  padding: 0 18px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.article-list-select:focus, .article-list-date:focus {
  border-color: #c8a951;
  box-shadow: 0 0 0 1px rgba(200, 169, 81, .16);
}

.article-list-date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: .72;
}

.article-list-tags-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.article-list-tags-label {
  color: #292929;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.article-list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-list-tag {
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  background: #fff;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s ease;
}

.article-list-tag:hover, .article-list-tag.active {
  border-color: #c8a951;
  color: #c8a951;
  background: #fffdf6;
}

.article-list-card {
  border: 1px solid #e4e4e4;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.article-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.article-list-image-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
  flex: 0 0 auto;
}

.article-list-image {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  aspect-ratio: 1.62 / 1;
}

.article-list-card:hover .article-list-image {
  transform: scale(1.035);
}

.article-list-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 32px;
  text-align: center;
}

.article-list-title {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  margin: 0 0 10px;
  line-height: 1.4;
}

.article-list-title a {
  color: inherit;
  text-decoration: none;
}

.article-list-title a:hover {
  color: #c8a951;
}

.article-list-desc {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: #777;
  line-height: 1.8;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-list-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
  margin-top: auto;
  min-width: 150px;
  min-height: 44px;
  padding: 9px 26px;
  border: 2px solid #c8a951;
  border-radius: 50px;
  background: #fff;
  color: #c8a951;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
}

.article-list-button:hover {
  background: #fcdb5a;
  border-color: #fcdb5a;
  color: #222;
}

.article-list-empty {
  padding: 50px 20px;
  text-align: center;
  color: #777;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.article-list-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
}

.article-list-page-btn {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #dfdfdf;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.article-list-page-btn:hover:not(:disabled), .article-list-page-btn.active {
  border-color: #fcdb5a;
  background: #fcdb5a;
  color: #222;
}

.article-list-page-btn:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.article-list-field .chosen-container {
  width: 100% !important;
  font-family: "Poppins", sans-serif;
}

.article-list-field .chosen-container-single .chosen-single {
  height: 58px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
  color: #555;
  font-size: 16px;
  line-height: 58px;
  padding: 0 46px 0 18px;
}

.article-list-field .chosen-container-active.chosen-with-drop .chosen-single, .article-list-field .chosen-container-active .chosen-single {
  border-color: #c8a951;
  box-shadow: 0 0 0 1px rgba(200, 169, 81, .16);
}

.article-list-field .chosen-container-single .chosen-single div {
  width: 40px;
}

.article-list-field .chosen-container-single .chosen-single div b {
  background: none !important;
  position: relative;
}

.article-list-field .chosen-container-single .chosen-single div b::after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  color: #888;
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  line-height: 58px;
}

.article-list-field .chosen-container .chosen-drop {
  border-color: #d4d4d4;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
}

.article-list-field .chosen-container-single .chosen-search input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 36px;
  font-family: "Poppins", sans-serif;
}

.article-list-field .chosen-container .chosen-results li {
  padding: 10px 14px;
  font-size: 14px;
}

.article-list-field .chosen-container .chosen-results li.highlighted {
  background: #fcdb5a;
  color: #222;
}

.article-list-pagination.single-page {
  margin-top: 44px;
}

/* ===== Base styles end ===== */


/* ===== Article details page common styles start ===== */
.article-details-section {
  background: #fff;
  padding: 70px 0 80px;
}

.article-details-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;
  align-items: start;
}

.article-details-main {
  min-width: 0;
}

.article-details-featured {
  width: 100%;
  margin: 0 0 34px;
  overflow: hidden;
  background: #f8f7f2;
}

.article-details-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.article-details-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 10px;
}

.article-details-date {
  margin: 0 0 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #a3a3a3;
}

.article-details-content {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #4d4d4d;
  line-height: 1.78;
  word-break: break-word;
}

.article-details-content > *:first-child {
  margin-top: 0;
}

.article-details-content > *:last-child {
  margin-bottom: 0;
}

.article-details-content p {
  margin: 0 0 22px;
}

.article-details-content h1,
.article-details-content h2,
.article-details-content h3,
.article-details-content h4,
.article-details-content h5,
.article-details-content h6 {
  margin: 40px 0 16px;
  font-family: 'Poppins', sans-serif;
  color: #222;
  font-weight: 800;
  line-height: 1.3;
  text-transform: none;
}

.article-details-content h1 { font-size: 34px; }
.article-details-content h2 { font-size: 28px; }
.article-details-content h3 { font-size: 23px; }
.article-details-content h4 { font-size: 20px; }
.article-details-content h5 { font-size: 18px; }
.article-details-content h6 { font-size: 16px; }

.article-details-content a {
  color: #b4912e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-details-content a:hover {
  color: #222;
}

.article-details-content strong,
.article-details-content b {
  color: #222;
  font-weight: 700;
}

.article-details-content em,
.article-details-content i {
  font-style: italic;
}

.article-details-content ul,
.article-details-content ol {
  margin: 0 0 26px 28px;
  padding: 0;
}

.article-details-content ul {
  list-style: disc;
}

.article-details-content ol {
  list-style: decimal;
}

.article-details-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.article-details-content li::marker {
  color: #333;
  font-weight: 700;
}

.article-details-content blockquote {
  position: relative;
  margin: 38px 0;
  padding: 28px 34px;
  background: #f8f7f2;
  border-left: 5px solid #fcdb5a;
  color: #333;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.65;
}

.article-details-content blockquote p {
  margin-bottom: 12px;
}

.article-details-content blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-details-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 34px auto;
}

.article-details-content figure {
  margin: 38px 0;
}

.article-details-content figure img {
  margin: 0 auto;
}

.article-details-content figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: #8a8a8a;
  text-align: center;
  line-height: 1.6;
}

.article-details-content .alignleft,
.article-details-content img.alignleft {
  float: left;
  max-width: 46%;
  margin: 8px 28px 18px 0;
}

.article-details-content .alignright,
.article-details-content img.alignright {
  float: right;
  max-width: 46%;
  margin: 8px 0 18px 28px;
}

.article-details-content .aligncenter,
.article-details-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.article-details-content iframe,
.article-details-content video,
.article-details-content embed,
.article-details-content object {
  max-width: 100%;
}

.article-details-content iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 38px 0;
  border: 0;
}

.article-details-content .article-details-video,
.article-details-content .mce-preview-object,
.article-details-content .video-embed,
.article-details-content .responsive-video {
  position: relative;
  width: 100%;
  margin: 38px 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.article-details-content .article-details-video iframe,
.article-details-content .mce-preview-object iframe,
.article-details-content .video-embed iframe,
.article-details-content .responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.article-details-content table {
  width: 100%;
  margin: 36px 0;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  font-size: 15px;
}

.article-details-content th,
.article-details-content td {
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
}

.article-details-content th {
  background: #f8f7f2;
  color: #222;
  font-weight: 700;
}

.article-details-content hr {
  margin: 44px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.article-details-content pre {
  margin: 32px 0;
  padding: 22px;
  overflow: auto;
  background: #1f1f1f;
  color: #f7f7f7;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}

.article-details-content code {
  padding: 2px 6px;
  background: #f2f2f2;
  color: #222;
  border-radius: 4px;
  font-size: .9em;
}

.article-details-content pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-details-content .image-grid,
.article-details-content .gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0;
}

.article-details-content .image-grid img,
.article-details-content .gallery img {
  width: 100%;
  margin: 0;
}

.article-details-content::after {
  content: '';
  display: table;
  clear: both;
}

.article-details-after-content {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid #eeeeee;
}

.article-details-label {
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #222;
}

.article-details-tags-block {
  margin-bottom: 38px;
}

.article-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-details-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 20px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  transition: all .2s ease;
}

.article-details-tag:hover {
  border-color: #c8a951;
  color: #c8a951;
}

.article-details-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.article-details-share-label {
  margin-right: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #222;
}

.article-details-share-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.article-details-share-link:hover {
  transform: translateY(-2px);
  opacity: .9;
  color: #fff;
}

.article-details-share-link.facebook { background: #1877f2; }
.article-details-share-link.twitter { background: #1da1f2; }
.article-details-share-link.pinterest { background: #e60023; }
.article-details-share-link.linkedin { background: #0a66c2; }
.article-details-share-link.whatsapp { background: #25d366; }
.article-details-share-link.telegram { background: #229ed9; }

.article-details-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid #eeeeee;
}

.article-details-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 128px;
  min-height: 48px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #d1d1d1;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all .2s ease;
}

.article-details-nav-link.prev {
  background: #c8a84b;
  color: #fff;
  border-color: #c8a84b;
}

.article-details-nav-link:hover {
  background: #fff;
  border-color: #c8a84b;
  color: #c8a84b;
}

.article-details-sidebar {
  position: sticky;
  top: calc(var(--header-height, 100px) + 28px);
  min-width: 0;
}

.article-details-widget {
  margin-bottom: 44px;
}

.article-details-widget-title {
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 3px solid #222;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #222;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.article-details-recent-list,
.article-details-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.article-details-recent-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.article-details-recent-img {
  display: block;
  width: 96px;
  height: 62px;
  overflow: hidden;
  background: #f8f7f2;
}

.article-details-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-details-recent-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}

.article-details-recent-title:hover {
  color: #c8a951;
}

.article-details-archive-list a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid #eeeeee;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

.article-details-archive-list a:hover {
  color: #c8a951;
}
/* ===== Article details page common styles end ===== */



/* ===== Product listing and detail pages specific styles start ===== */

.product-list-intro-section {
  padding: 75px 0 60px;
  background: #fff;
}

.product-list-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-list-kicker,
.product-detail-kicker {
  display: block;
  margin: 0 0 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #c8a84b;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.product-list-heading,
.product-detail-heading {
  margin: 0 0 22px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  color: #222;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-list-heading strong,
.product-detail-heading strong {
  font-weight: 800;
}

.product-list-text,
.product-detail-text {
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.9;
}

.product-list-intro-image-wrap,
.product-detail-image-wrap {
  overflow: hidden;
  background: #ffffff;
}

.product-list-intro-image,
.product-detail-image {
  display: block;
  width: 65%;
  height: auto;
  margin-left: 110px;
  object-fit: cover;
}

.product-list-section {
  padding: 20px 0 85px;
  background: #fff;
}

.product-list-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.product-list-row:nth-child(even) .product-list-row-media {
  order: 2;
}

.product-list-row:nth-child(even) .product-list-row-content {
  order: 1;
}

.product-list-row-media {
  display: flex;
  align-items: center;
  padding: 32px 0;
  overflow: hidden;
}

.product-list-row-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-list-row-media:hover .product-list-row-image {
  transform: scale(1.035);
}

.product-list-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px;
  background: #fff;
}

.product-list-row-title {
  margin: 0 0 18px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 300;
  color: #222;
  line-height: 1.22;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.product-list-row-title strong {
  font-weight: 800;
}

.product-list-row-desc {
  margin: 0 0 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.9;
}

.product-list-row-btn,
.product-detail-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 150px;
  min-height: 44px;
  padding: 10px 28px;
  border: 2px solid #fcdb5a;
  border-radius: 50px;
  background: transparent;
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  text-decoration: none;
  transition: all .2s ease;
}

.product-list-row-btn:hover,
.product-detail-outline-btn:hover {
  background: #fcdb5a;
  color: #222;
}


/* ===== Product details page specific styles start ===== */

.product-detail-page {
  background: #fff;
}

.product-detail-wide-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-detail-overview-section {
  padding: 86px 0 96px;
  background: #eeeeee;
}

.product-detail-overview-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 54px;
  align-items: center;
  min-height: 420px;
  padding: 64px 80px;
  background: #fff;
  overflow: hidden;
}

.product-detail-overview-text {
  position: relative;
  z-index: 2;
}

.product-detail-overview-media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-frame {
  position: absolute;
  right: 48px;
  top: 72px;
  width: 230px;
  height: 230px;
  border: 4px solid #fcdb5a;
  z-index: 1;
}

.product-detail-pack-img {
  position: relative;
  z-index: 3;
  max-width: 300px;
  width: 86%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .14));
}

.product-detail-rice-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 270px;
  max-width: 58%;
  height: auto;
  pointer-events: none;
}

.product-detail-heading {
  margin: 0 0 22px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 300;
  color: #111;
  line-height: 1.22;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.product-detail-heading strong {
  font-weight: 800;
}

.product-detail-text {
  margin: 0 0 17px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333;
  line-height: 1.85;
}

.product-detail-feature-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 48px;
}

.product-detail-feature-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 92px;
}

.product-detail-feature-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: #f2b900;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.2;
}

.product-detail-feature-item span {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #777;
  line-height: 1.35;
}

.product-detail-story-section {
  padding: 92px 0 62px;
  background: #fff;
}

.product-detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 82px;
  align-items: center;
}

.product-detail-story-img {
  width: 100%;
  display: block;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.product-detail-story-text {
  max-width: 540px;
}

.product-detail-packaging-section {
  padding: 50px 0 66px;
  background: #fff;
}

.product-detail-packaging-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.product-detail-packaging-text {
  align-self: center;
}

.product-detail-packaging-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.product-detail-packaging-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.product-detail-pack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-detail-pack-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 5px 14px;
  border: none;
  border-radius: 8px;
  background: #fcdb5a;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.product-detail-related-section {
  padding: 36px 0 50px;
}

.product-detail-related-section + .product-detail-related-section {
  padding-top: 34px;
}

.product-detail-related-section .blog-header {
  margin-bottom: 34px;
}

.product-detail-related-section .blog-heading {
  font-size: 28px;
  letter-spacing: 0;
}

.product-detail-faq-section {
  padding: 76px 0 92px;
  background: #fff;
}

.product-detail-faq-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-detail-faq-title {
  margin: 0 0 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: #111;
  text-align: center;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.product-detail-faq-title strong {
  font-weight: 800;
}

.product-detail-faq-list {
  border-top: 1px solid #2c2c2c;
}

.product-detail-faq-item {
  border-bottom: 1px solid #bdbdbd;
}

.product-detail-faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.35;
}

.product-detail-faq-item summary::-webkit-details-marker {
  display: none;
}

.product-detail-faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  border-radius: 2px;
}

.product-detail-faq-item[open] summary::after {
  content: '-';
  font-size: 24px;
  padding-bottom: 2px;
}

.product-detail-faq-content {
  max-width: 980px;
  padding: 0 56px 28px 0;
}

.product-detail-faq-content p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.75;
}

/* ===== Product details page specific styles end ===== */

/* ===== Product listing and detail pages specific styles end ===== */

/* ===== Consolidated media queries start ===== */

@media (max-width: 1199px) {

  .header-row1-inner {
    padding-left: 130px;
    padding-right: 18px;
  }

  .nav-logo {
    left: 22px;
  }

  .nav-logo-img {
    height: 72px;
  }

  .header-divider {
    margin-left: 220px;
  }

  .header-row2-inner {
    padding-left: 130px;
    padding-right: 18px;
  }

  .nav-link {
    padding: 12px 9px;
    font-size: 11px;
  }

  .btn-get-in-touch {
    padding: 10px 18px;
    font-size: 10px;
  }



  .article-details-wrap {
    padding: 0 28px;
  }

  .article-details-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
  }
}

@media (max-width: 1100px) {

  .header-row2 {
    display: none;
  }

  .header-row1-right .header-socials, .header-row1-right .lang-selector, .header-row1-right .nav-search-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-spacer {
    height: 0;
  }

  .header-row1-inner {
    padding-left: 140px;
  }

  .nav-logo-img {
    height: 70px;
  }

  .inner-page-hero {
    height: 250px;
    min-height: 250px;
  }

}

@media (max-width: 991px) {

  .exports-product-section {
    padding: 65px 0 55px;
  }

  .exports-product-wrap {
    padding: 0 24px;
  }

  .exports-product-desc {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
  }

  .exports-distributor-section {
    padding: 55px 20px 65px;
  }

  .exports-distributor-text {
    font-size: 17px;
  }

  .header-row1-inner {
    min-height: 68px;
    padding-left: 116px;
  }

  .header-row1-right {
    gap: 8px;
  }

  .header-phone, .two-star-badge, .header-socials, .lang-selector, .nav-search-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .header-divider {
    display: none;
  }

  .header-row2 {
    display: block;
  }

  .header-row2-inner {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .nav-logo-img {
    height: 62px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    z-index: 2000;
  }

  .nav-links.open .nav-link {
    padding: 13px 24px;
    border-top: 1px solid #eee;
  }

  .btn-get-in-touch {
    display: none;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-play-outer {
    right: 8%;
    width: 76px;
    height: 76px;
  }

  .hero-play-btn {
    width: 48px;
    height: 48px;
  }

  .certs-section {
    padding-top: 70px;
  }

  .certs-grid {
    gap: 18px;
  }

  .cert-card {
    width: 45%;
  }

  .cert-logo-wrap {
    width: 100%;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    text-align: center;
  }

  .quality-about {
    align-items: center;
  }

  .pragati-watermark-bg {
    font-size: 6.5rem;
    letter-spacing: 5px;
  }

  .stats-banner-outer {
    padding: 0 24px;
  }

  .stats-banner {
    padding: 48px 28px;
  }

  .stats-banner-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }

  .countries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-master {
    margin: 0 24px;
  }

  .products-row {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .prod-text-cell, .prod-span2 {
    grid-column: span 2;
  }

  .prod-cell {
    min-height: 240px;
  }

  .prod-blank {
    display: none;
  }

  .pepagrp-banner {
    padding: 28px 12px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand, .footer-newsletter {
    align-items: center;
  }

  .footer-copyright-inner {
    justify-content: center;
    text-align: center;
  }

  .google-lang-selector {
    height: 34px;
    min-width: 72px;
  }

  .google-lang-selector .lang-dropdown {
    right: 0;
    left: auto;
  }

  .article-list-section {
    padding: 70px 0 80px;
  }

  .article-list-wrap {
    padding: 0 24px;
  }

  .article-list-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .article-search-box {
    grid-column: 1 / -1;
  }

  .article-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .article-card-title {
    font-size: 16px;
  }

  .article-list-filter-row {
    grid-template-columns: 1fr;
  }

  .article-list-card-body {
    padding: 26px 22px 30px;
  }

  .article-details-section {
    padding: 50px 0 65px;
  }

  .article-details-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .article-details-sidebar {
    position: static;
    max-width: 100%;
  }

  .article-details-content {
    font-size: 16px;
  }

  .article-details-content h1 { font-size: 30px; }
  .article-details-content h2 { font-size: 26px; }
  .article-details-content h3 { font-size: 22px; }

  .article-details-widget {
    margin-bottom: 36px;
  }

}

@media (max-width: 900px) {

  .hero-title {
    font-size: 2.4rem;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner {
    border-radius: 32px;
    padding: 28px 24px;
  }

  .stats-banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stats-banner-divider {
    display: none;
  }

  .products-section {
    grid-template-columns: 1fr;
  }

  .products-left {
    padding: 40px 24px;
    grid-column: 1;
  }

  .products-grid {
    grid-column: 1;
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px;
  }

  .products-row2 {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 160px 200px;
  }

  .products-row3 {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 160px;
  }

  .cert-modal-content {
    flex-direction: column;
  }

  .cert-modal-img {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-newsletter {
    max-width: 100%;
  }

  .about-directors-wrap, .about-split-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .about-directors-img {
    max-width: 100%;
  }

  .about-split-wrap-reverse .about-split-img-col {
    order: -1;
  }

  .about-split-text-col {
    padding: 10px 0 0;
  }

  .achievement-intro-section {
    padding: 70px 0 50px;
  }

  .achievement-card-grid, .achievement-cert-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 28px;
  }

  .achievement-card, .achievement-cert-card {
    min-height: auto;
    padding: 42px 28px;
  }

  .inner-page-hero {
    height: 310px;
    min-height: 310px;
  }

  .inner-page-hero-content {
    padding: 0 24px;
  }

  .inner-breadcrumb {
    top: 28px;
    left: 24px;
  }

}

@media (max-width: 768px) {

  .header-row1-inner {
    padding: 0 20px 0 100px;
    min-height: 64px;
  }

  .two-star-badge {
    display: none;
  }

  .header-phone {
    font-size: 11px;
  }

  .nav-logo-img {
    height: 56px;
  }

  .nav-logo {
    left: 16px;
    top: 6px;
  }

  .nav-spacer {
    height: 0;
  }

}

@media (max-width: 767px) {

  .video-modal {
    padding: 18px;
  }

  .video-modal-close {
    top: -40px;
    right: 0;
  }

}

@media (max-width: 600px) {

  .footer-follow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-directors-wrap, .about-company-wrap, .about-split-wrap {
    padding: 0 22px;
  }

  .about-committed-title {
    font-size: 24px;
  }

  .about-committed-body, .about-company-text, .about-section-body {
    font-size: 12px;
    text-align: left;
  }

  .inner-page-hero {
    height: 300px;
    min-height: 300px;
  }

  .inner-page-hero-content {
    padding: 0 20px;
  }

  .inner-breadcrumb {
    top: 24px;
    left: 20px;
    font-size: 9px;
  }

  .inner-page-title {
    font-size: 31px;
  }

  .inner-page-subtitle {
    font-size: 18px;
  }

  .inner-page-desc {
    font-size: 11px;
    line-height: 1.55;
  }

}

@media (max-width: 575px) {

  .exports-product-section {
    padding: 48px 0 42px;
  }

  .exports-product-wrap {
    padding: 0 16px;
  }

  .exports-product-title, .exports-distributor-title {
    font-size: 28px;
  }

  .exports-product-desc, .exports-distributor-text {
    font-size: 14px;
  }

  .btn-section-cta {
    min-width: 210px;
    min-height: 56px;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 3px;
  }

  .nav-logo {
    left: 14px;
  }

  .nav-logo-img {
    height: 55px;
  }

  .header-row1-inner {
    padding-left: 100px;
    min-height: 62px;
  }

  .nav-links.open {
    top: 62px;
  }

  .hero-section {
    min-height: 430px;
  }

  .hero-content {
    width: 88%;
  }

  .hero-title {
    font-size: 25px;
    line-height: 1.13;
  }

  .hero-desc {
    font-size: 10px;
    line-height: 1.45;
  }

  .hero-play-outer {
    display: none;
  }

  .hero-dots-vertical {
    right: 12px;
  }

  .certs-title, .world-title, .blog-heading, .testimonial-heading {
    font-size: 21px;
  }

  .certs-sub, .blog-subline, .testimonial-subheading {
    padding: 0 18px;
  }

  .cert-card {
    width: calc(50% - 12px);
  }

  .cert-logo-wrap {
    height: 68px;
  }

  .cert-logo-img {
    max-width: 130px;
    max-height: 56px;
  }

  .quality-title-img {
    width: 96%;
  }

  .pragati-watermark-bg {
    font-size: 3.8rem;
    letter-spacing: 2px;
  }

  .stats-banner-outer {
    padding: 0 12px;
  }

  .stats-banner-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner-item {
    justify-content: center;
  }

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-flag-img {
    width: 100px;
    height: 60px;
  }

  .products-master {
    margin: 0 12px;
  }

  .products-row {
    grid-template-columns: 1fr;
  }

  .prod-text-cell, .prod-span2 {
    grid-column: span 1;
  }

  .prod-cell {
    min-height: 220px;
  }

  .prod-text-cell {
    min-height: 250px;
    text-align: center;
    align-items: center;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .footer-nav-links {
    gap: 0;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }

  .footer-newsletter-input {
    font-size: 12px;
    padding: 10px 12px;
  }

  .footer-newsletter-btn {
    font-size: 10px;
    padding: 10px 14px;
  }

  .section-kicker {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-description, .achievement-card-desc {
    font-size: 12px;
    line-height: 1.7;
  }

  .achievement-card-title {
    font-size: 18px;
  }

  .achievement-cert-title {
    font-size: 21px;
  }

  .achievement-cert-desc {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .article-list-section {
    padding: 32px 0 60px;
  }

  .article-list-wrap {
    padding: 0 16px;
  }

  .article-list-header {
    margin-bottom: 30px;
  }

  .article-list-toolbar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .article-list-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-card-body {
    padding: 20px 18px 22px;
  }

  .article-card-title {
    font-size: 15px;
  }

  .article-card-desc {
    font-size: 12px;
  }

  .article-pagination-wrap {
    margin-top: 36px;
  }

  .article-page-btn {
    min-width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .article-page-btn.is-wide {
    min-width: 66px;
  }

  .article-list-filter-panel {
    margin-bottom: 42px;
  }

  .article-list-select, .article-list-date, .article-list-field .chosen-container-single .chosen-single {
    height: 52px;
    line-height: 52px;
    font-size: 14px;
  }

  .article-list-field .chosen-container-single .chosen-single div b::after {
    line-height: 52px;
  }

  .article-list-tags {
    gap: 8px;
  }

  .article-list-tag {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .article-list-card-body {
    padding: 24px 18px 28px;
  }

  

  

  .article-list-button {
    min-width: 140px;
    min-height: 42px;
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .article-list-page-btn {
    min-width: 38px;
    height: 38px;
    font-size: 12px;
  }


  .article-details-section {
    padding: 30px 0 60px;
  }

  .article-details-wrap {
    padding: 0 16px;
  }

  .article-details-featured {
    margin-bottom: 24px;
  }

  .article-details-date {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .article-details-content {
    font-size: 15px;
    line-height: 1.85;
  }

  .article-details-content h1 { font-size: 26px; }
  .article-details-content h2 { font-size: 24px; }
  .article-details-content h3 { font-size: 20px; }
  .article-details-content h4 { font-size: 18px; }

  .article-details-content ul,
  .article-details-content ol {
    margin-left: 20px;
  }

  .article-details-content blockquote {
    margin: 30px 0;
    padding: 24px 24px 24px 28px;
    font-size: 18px;
  }

  .article-details-content .alignleft,
  .article-details-content img.alignleft,
  .article-details-content .alignright,
  .article-details-content img.alignright {
    float: none;
    max-width: 100%;
    margin: 28px auto;
  }

  .article-details-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .article-details-content .image-grid,
  .article-details-content .gallery {
    grid-template-columns: 1fr;
  }

  .article-details-tags {
    gap: 8px;
  }

  .article-details-tag {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .article-details-share-link {
    width: 38px;
    height: 38px;
  }

  .article-details-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .article-details-nav-link {
    width: 100%;
  }

  .article-details-recent-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .article-details-recent-img {
    width: 86px;
    height: 58px;
  }

  .article-details-recent-title {
    font-size: 13px;
  }

}

@media (max-width: 480px) {

  .header-phone {
    display: none;
  }

  .nav-logo-tagline {
    display: none;
  }

  .header-row1-inner {
    padding-left: 80px;
  }

  .nav-logo {
    left: 12px;
  }

  .nav-logo-img {
    height: 48px;
  }

}



/* ===== Product pages responsive styles start ===== */
@media (max-width: 991px) {
  .product-list-intro-grid,
  .product-list-row {
    grid-template-columns: 1fr;
  }

  .product-list-row:nth-child(even) .product-list-row-media,
  .product-list-row:nth-child(even) .product-list-row-content {
    order: initial;
  }

  .product-list-intro-section {
    padding: 55px 0;
  }

  .product-list-row-content {
    padding: 32px 24px 44px;
  }

  .product-list-row-media {
    padding: 20px 0 0;
  }

  .product-detail-overview-section {
    padding: 60px 0 70px;
  }

  .product-detail-overview-card {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 36px 54px;
  }

  .product-detail-overview-media {
    min-height: 310px;
    order: -1;
  }

  .product-detail-frame {
    right: 50%;
    top: 58px;
    transform: translateX(62%);
  }

  .product-detail-rice-accent {
    left: 50%;
    transform: translateX(-95%);
  }

  .product-detail-feature-list {
    gap: 24px;
    margin-top: 34px;
  }

  .product-detail-two-col,
  .product-detail-packaging-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-detail-story-section {
    padding: 62px 0 34px;
  }

  .product-detail-packaging-section {
    padding: 38px 0 42px;
  }

  .product-detail-packaging-media {
    justify-content: center;
  }

  .product-detail-related-section {
    padding: 30px 0 42px;
  }

  .product-detail-faq-section {
    padding: 56px 0 68px;
  }
}

@media (max-width: 575px) {
  .product-list-intro-section,
  .product-list-section {
    padding: 42px 0;
  }

  .product-list-heading,
  .product-detail-heading {
    font-size: 23px;
  }

  .product-list-row-title {
    font-size: 22px;
  }

  .product-list-row-content {
    padding: 26px 12px 38px;
    text-align: center;
  }

  .product-list-row-btn,
  .product-detail-outline-btn {
    align-self: center;
  }

  .product-detail-wide-wrap,
  .product-detail-faq-wrap {
    padding: 0 16px;
  }

  .product-detail-overview-section {
    padding: 42px 0 54px;
  }

  .product-detail-overview-card {
    padding: 32px 20px 40px;
  }

  .product-detail-overview-media {
    min-height: 270px;
  }

  .product-detail-pack-img {
    max-width: 230px;
  }

  .product-detail-frame {
    width: 176px;
    height: 176px;
    top: 54px;
  }

  .product-detail-rice-accent {
    width: 205px;
  }

  .product-detail-feature-list {
    justify-content: space-between;
    gap: 18px;
  }

  .product-detail-feature-item {
    min-width: calc(50% - 12px);
  }

  .product-detail-story-section {
    padding: 46px 0 24px;
  }

  .product-detail-story-text,
  .product-detail-packaging-text {
    text-align: left;
  }

  .product-detail-packaging-img {
    max-width: 100%;
  }

  .product-detail-related-section .blog-heading,
  .product-detail-faq-title {
    font-size: 22px;
  }

  .product-detail-faq-item summary {
    padding: 18px 48px 18px 0;
    font-size: 14px;
  }

  .product-detail-faq-content {
    padding: 0 0 22px;
  }

  .product-detail-faq-content p {
    font-size: 13px;
  }
}
/* ===== Product pages responsive styles end ===== */

/* ===== Consolidated media queries end ===== */
/* =========================================================
   CSR LISTING + DETAILS
   Add this at the end of style.css
========================================================= */

.csr-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 42px;
  align-items: start;
}

.csr-list-main .article-list-grid,
.csr-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 34px;
}

.csr-sidebar {
  position: relative;
  top: auto!important;
}

.csr-download-button {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  border-radius: 50px;
  background: #ffdc55;
  color: #3e3e4f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.25s ease;
  margin-bottom: 34px;
}

.csr-download-button:hover {
  background: #c8a84b;
  color: #fff;
}

.csr-sidebar-widget {
  margin-bottom: 36px;
}

.csr-category-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.csr-category-list li i {
  width: 22px;
  min-width: 22px;
  text-align: center;
  color: #555;
  font-size: 17px;
}

.csr-category-list li.active a,
.csr-category-list li a:hover {
  color: #c8a84b;
}

.csr-sidebar-reset {
  margin-top: 20px;
}

.csr-featured-slider {
  position: relative;
  overflow: hidden;
}

.csr-featured-slide {
  display: none;
}

.csr-featured-slide.active {
  display: block;
}

.csr-featured-slide img {
  width: 100%;
  display: block;
}

.csr-slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 3;
}

.csr-slider-btn:hover {
  background: #ffdc55;
  color: #222;
}

.csr-slider-btn.prev {
  left: 18px;
}

.csr-slider-btn.next {
  right: 18px;
}

@media (max-width: 991px) {
  .csr-page-layout,
  .article-details-layout {
    grid-template-columns: 1fr;
  }

  .csr-list-main .article-list-grid,
  .csr-list-grid {
    grid-template-columns: 1fr;
  }

  .csr-download-button {
    min-height: 56px;
    font-size: 15px;
  }
}

/* =========================================================
   CMS PAGE CONTENT
   For Terms, Privacy Policy, About, Static Pages etc.
   Use wrapper:
   <section class="cms-section">
     <div class="cms-wrap">
       CMS body content
     </div>
   </section>
========================================================= */

.cms-section {
  padding: 60px 0;
  background: #ffffff;
}

.cms-wrap {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  color: #5f5f5f;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

/* Headings */
.cms-wrap h1,
.cms-wrap h2,
.cms-wrap h3,
.cms-wrap h4,
.cms-wrap h5,
.cms-wrap h6 {
  color: #333333;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.25;
  margin: 42px 0 18px;
  letter-spacing: -0.3px;
}

.cms-wrap h1:first-child,
.cms-wrap h2:first-child,
.cms-wrap h3:first-child {
  margin-top: 0;
}

.cms-wrap h1 {
  font-size: 42px;
}

.cms-wrap h2 {
  font-size: 34px;
}

.cms-wrap h3 {
  font-size: 26px;
}

.cms-wrap h4 {
  font-size: 22px;
}

.cms-wrap h5 {
  font-size: 19px;
}

.cms-wrap h6 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Paragraphs */
.cms-wrap p {
  margin: 0 0 22px;
  color: #626262;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 400;
}

.cms-wrap p:last-child {
  margin-bottom: 0;
}

/* Lists */
.cms-wrap ul,
.cms-wrap ol {
  margin: 0 0 26px 0;
  padding-left: 0;
  list-style: none;
}

.cms-wrap ul li,
.cms-wrap ol li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 30px;
  color: #626262;
  font-size: 17px;
  line-height: 1.75;
}

.cms-wrap ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #c8a84b;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 13px;
}

.cms-wrap ol {
  counter-reset: cms-counter;
}

.cms-wrap ol li {
  counter-increment: cms-counter;
}

.cms-wrap ol li::before {
  content: counter(cms-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #c8a84b;
  font-weight: 800;
}

/* Links */
.cms-wrap a {
  color: #c8a84b;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cms-wrap a:hover {
  color: #333333;
  text-decoration: underline;
}

/* Strong / Bold */
.cms-wrap strong,
.cms-wrap b {
  color: #333333;
  font-weight: 800;
}

/* Italic */
.cms-wrap em,
.cms-wrap i {
  color: #555555;
}

/* Images */
.cms-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 28px auto;
  border-radius: 4px;
}

/* Tables */
.cms-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}

.cms-wrap table th,
.cms-wrap table td {
  border: 1px solid #e2e2e2;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

.cms-wrap table th {
  background: #fff7dc;
  color: #333333;
  font-weight: 800;
}

.cms-wrap table td {
  color: #626262;
}

/* Blockquote */
.cms-wrap blockquote {
  margin: 35px 0;
  padding: 28px 34px;
  border-left: 5px solid #c8a84b;
  background: #fffaf0;
  color: #555555;
  font-size: 19px;
  line-height: 1.75;
  font-style: italic;
}

.cms-wrap blockquote p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

/* Horizontal line */
.cms-wrap hr {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 40px 0;
}

/* Remove unwanted spacing from empty tags */
.cms-wrap p:empty,
.cms-wrap div:empty {
  display: none;
}

/* Fix if CMS editor adds inline sections/divs */
.cms-wrap div,
.cms-wrap section,
.cms-wrap article {
  max-width: 100%;
}

/* Prevent CMS content from becoming accidental columns */
.cms-wrap > * {
  width: 100%;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .cms-section {
    padding: 50px 0;
  }

  .cms-wrap {
    width: min(100% - 32px, 1100px);
    font-size: 16px;
    line-height: 1.75;
  }

  .cms-wrap h1 {
    font-size: 34px;
  }

  .cms-wrap h2 {
    font-size: 28px;
  }

  .cms-wrap h3 {
    font-size: 23px;
  }

  .cms-wrap p,
  .cms-wrap ul li,
  .cms-wrap ol li {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (max-width: 575px) {
  .cms-section {
    padding: 42px 0;
  }

  .cms-wrap {
    width: min(100% - 26px, 1100px);
    font-size: 15px;
  }

  .cms-wrap h1 {
    font-size: 30px;
  }

  .cms-wrap h2 {
    font-size: 25px;
  }

  .cms-wrap h3 {
    font-size: 21px;
  }

  .cms-wrap h4 {
    font-size: 19px;
  }

  .cms-wrap p,
  .cms-wrap ul li,
  .cms-wrap ol li {
    font-size: 15px;
  }

  .cms-wrap blockquote {
    padding: 22px 24px;
    font-size: 16px;
  }

  .cms-wrap table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* =========================================================
   CONTACT US PAGE
========================================================= */

.contact-section {
  padding: 70px 0;
  background: #ffffff;
}

.contact-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: start;
}

.contact-section-heading {
  margin-bottom: 28px;
}

.contact-kicker {
  display: inline-block;
  color: #c8a84b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-section-heading h2,
.contact-form-card h2,
.contact-distributor-content h2 {
  margin: 0 0 14px;
  color: #333333;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-section-heading p,
.contact-distributor-content p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  min-height: 160px;
  padding: 26px 24px;
  border: 1px solid #ededed;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffdc55;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-info-card h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.contact-info-card p,
.contact-info-card a {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #c8a84b;
}

.contact-form-card {
  padding: 34px;
  border: 1px solid #ededed;
  background: #fff;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.07);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-hidden-field {
  display: none !important;
}

.contact-form-field label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.contact-form-field label span {
  color: #d93025;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #dddddd;
  border-radius: 0;
  background: #fff;
  color: #555;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: #c8a84b;
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.12);
}

.contact-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.contact-choice-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.contact-choice-group input {
  width: auto;
  min-height: auto;
}

.contact-consent {
  margin: 2px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}

.contact-submit-btn,
.contact-distributor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border: 2px solid #c8a84b;
  border-radius: 50px;
  background: #fff;
  color: #c8a84b;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-submit-btn:hover,
.contact-distributor-btn:hover {
  background: #c8a84b;
  color: #fff;
}

.contact-form-success,
.contact-form-error {
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form-success {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.contact-form-error {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.contact-map-section {
  margin-top: 70px;
}

.contact-map-heading {
  text-align: center;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-map-card {
  background: #fff;
  border: 1px solid #ededed;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.contact-map-card h3 {
  margin: 0;
  padding: 20px 24px;
  color: #333;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #ededed;
}

.contact-map-frame {
  width: 100%;
  height: 360px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-distributor-section {
  margin-top: 70px;
}

.contact-distributor-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 0;
  align-items: stretch;
  background: #f31724;
  overflow: hidden;
}

.contact-distributor-content {
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-distributor-content .contact-kicker,
.contact-distributor-content h2,
.contact-distributor-content p {
  color: #fff;
}

.contact-distributor-content p {
  margin-bottom: 24px;
}

.contact-distributor-btn {
  width: fit-content;
  border-color: #ffdc55;
  background: #ffdc55;
  color: #333;
}

.contact-distributor-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #333;
}

.contact-distributor-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 55px 0;
  }

  .contact-top-grid,
  .contact-map-grid,
  .contact-distributor-card {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-distributor-content {
    padding: 28px;
  }

  .contact-section-heading h2,
  .contact-form-card h2,
  .contact-distributor-content h2 {
    font-size: 30px;
  }

  .contact-map-frame {
    height: 310px;
  }
}

@media (max-width: 575px) {
  .contact-wrap {
    width: min(100% - 26px, 1180px);
  }

  .contact-section-heading h2,
  .contact-form-card h2,
  .contact-distributor-content h2 {
    font-size: 26px;
  }

  .contact-info-card {
    padding: 22px 18px;
  }

  .contact-form-card,
  .contact-distributor-content {
    padding: 24px 20px;
  }

  .contact-map-frame {
    height: 270px;
  }

  .contact-distributor-image img {
    min-height: 260px;
  }
}