/* ===== BUYO Website Styles ===== */
/* ===== Font Declarations ===== */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir.woff2") format("woff2"),
    url("../fonts/Avenir.woff") format("woff"),
    url("../fonts/Avenir.ttc") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/Avenir Next.woff2") format("woff2"),
    url("../fonts/Avenir Next.woff") format("woff"),
    url("../fonts/Avenir Next.ttc") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/Avenir Next.woff2") format("woff2"),
    url("../fonts/Avenir Next.woff") format("woff"),
    url("../fonts/Avenir Next.ttc") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/Avenir Next.woff2") format("woff2"),
    url("../fonts/Avenir Next.woff") format("woff"),
    url("../fonts/Avenir Next.ttc") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next";
  src: url("../fonts/Avenir Next.woff2") format("woff2"),
    url("../fonts/Avenir Next.woff") format("woff"),
    url("../fonts/Avenir Next.ttc") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
  --primary-green: #8ec63f;
  --dark-green: #015231;
  --light-green: #f8fbf2;
  --accent-green: #78d750;
  --light-gray: #defbbc;
  --white: #ffffff;
  --black: #000000;
  --bg-main: #edffd8;
  /* Typography */
  --font-family: "Avenir", sans-serif;
  --hero-font-size: 88px;
  --section-title-size: 70px;
  --subtitle-size: 54px;
  --body-size: 18px;
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  /* Transitions */
  --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--black);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ===== Skip Link for Accessibility - REMOVED ===== */
/* .skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--dark-green);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: var(--transition);
}

.skip-link:focus {
  top: 6px;
} */

/* ===== Notification System ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--dark-green);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--primary-green);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
}

.m-l-10 {
  margin-left: 10px !important;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: #28a745;
}

.notification-error {
  border-left-color: #dc3545;
}

.notification-warning {
  border-left-color: #ffc107;
}

/* ===== Typography ===== */
.hero-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.22%;
  font-family: var(--font-family);
}

.section-title {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-family);
}

.section-subtitle {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  font-family: var(--font-family);
}

.hero-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
}

.benefit-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.goal-title {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  font-family: var(--font-family);
}

/* ===== Navigation ===== */
.navbar {
  padding: 15px 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(1, 82, 49, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  transition: var(--transition);
  height: 40px;
  width: auto;
  max-width: none;
}

/* Remove default focus ring on logo when clicked (mouse/touch) */
.navbar .navbar-brand:focus,
.navbar .navbar-brand:active,
.navbar .navbar-brand img:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Keep visible focus for keyboard users */
.navbar .navbar-brand:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

.bg-light-green {
  background-color: var(--light-gray) !important;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 15px;
  color: var(--light-green) !important;
  transition: var(--transition);
  position: relative;
  text-decoration: none;
  padding: 8px 0;
}

.navbar-nav .nav-link:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary-green) !important;
}

/* Specific letter-spacing for different menu items based on Figma */
.navbar-nav .nav-link[href="#home"] {
  letter-spacing: -0.03125em;
}

.navbar-nav .nav-link[href="#about"] {
  letter-spacing: -0.015625em;
}

.navbar-nav .nav-link[href="#technology"] {
  letter-spacing: -0.0625em;
}

.navbar-nav .nav-link[href="#products"] {
  letter-spacing: -0.0546875em;
}

.navbar-nav .nav-link[href="#team"] {
  letter-spacing: -0.09375em;
}

.navbar-nav .nav-link[href="#news"] {
  letter-spacing: -0.03125em;
}

.navbar-nav .nav-link[href="#contact"] {
  letter-spacing: -0.0625em;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-green);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* ===== Mobile Menu Enhancements ===== */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler.active {
  transform: rotate(90deg);
}

.navbar-collapse {
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  /*background: linear-gradient( 135deg, var(--dark-green) 0%, rgba(1, 82, 49, 0.9) 100% );*/
  background: #015231;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/layer-3-hero-background.png") center/cover
    no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-lab-image.png") center/cover no-repeat;
  opacity: 0.2;
  z-index: 2;
}

/* Hero plant icon styling */
.hero-plant-icon {
  opacity: 0.9;
  animation: gentle-sway 6s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-plant-image {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes gentle-sway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

/* Hero title adjustments */
.hero-title {
  font-size: clamp(48px, 6vw, 65px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 955px;
  margin-bottom: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-plant-image {
    max-width: 200px;
  }

  .materials-image-wrapper {
    padding: 0;
  }

  .materials-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-plant-icon {
    margin-top: 30px;
  }

  .hero-plant-image {
    max-width: 150px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
  }

  .materials-image-wrapper {
    padding: 0;
  }

  .materials-image {
    width: 100%;
    max-width: 100%;
  }

  /* Our Story Section Mobile */
  .our-story-section {
    padding: 60px 0;
  }

  .story-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .story-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .benefit-text {
    font-size: 18px;
  }

  .story-content p {
    font-size: 16px;
  }

  .earth-image-wrapper {
    margin-top: 40px;
    padding: 10px;
  }

  .goal-card {
    height: 250px;
    margin-bottom: 20px;
  }

  .goal-title {
    font-size: 20px;
  }

  .goal-icon img {
    width: 60px;
    height: 60px;
  }
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  /* text-transform: uppercase;*/
  letter-spacing: 1px;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
}

/* ===== Sections ===== */
section {
  padding: var(--section-padding);
}

.bg-light {
  background: var(--light-green) !important;
}

/* ===== Materials Showcase Section ===== */
.materials-showcase-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--light-green);
}

.materials-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.materials-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ===== Our Story Section ===== */
.our-story-section {
  background: #defbbc;
  padding: 100px 0;
  border-radius: 50px;
  margin: 60px auto;
  max-width: 1400px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.story-content {
  padding: 0 40px;
}

.story-main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: #1b5e20;
  margin-bottom: 50px;
  font-family: var(--font-family);
}

.story-benefits {
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

.benefit-item {
  margin-bottom: 20px;
  transition: var(--transition);
  padding: 5px 0;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 50%;
  padding: 6px;
}

.check-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
}

.benefit-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #1b5e20;
  font-family: var(--font-family);
}

.story-description {
  margin-top: 30px;
}

.story-mission {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #2e7d32;
  margin-bottom: 20px;
  font-family: var(--font-family);
}

.earth-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.earth-image {
  max-width: 120%;
  width: 120%;
  height: auto;
  transition: var(--transition);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.earth-image:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

/* Strategic Goals Cards */
.goal-card {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  border-radius: 20px;
  transition: var(--transition);
  height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.2);
}

.goal-icon {
  margin-bottom: 20px;
}

.goal-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.goal-card:hover .goal-icon-img {
  transform: scale(1.1);
}

.goal-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--white) !important;
  margin: 0;
  font-family: var(--font-family);
  padding: 0 15px;
}

/* ===== Benefits Section ===== */
.benefits-section {
  background: var(--light-green);
}

.benefit-item {
  padding: 20px;
  border-radius: 10px;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-green);
  position: relative;
}

/*.icon-circle::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
}
*/
/* ===== Strategic Goals Section ===== */
.goals-section {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  position: relative;
}

.goals-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/buyo-factory.png") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.goals-section .container {
  position: relative;
  z-index: 2;
}

.goal-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.goal-line {
  width: 80%;
  height: 2px;
  background: var(--primary-green);
  margin-top: 20px;
}

/* ===== Hero Products Grid ===== */
.hero-products-grid {
  padding: 20px;
}

.product-sample {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.product-sample:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-dots,
.product-material,
.product-powder,
.product-granules {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}

.dots-pattern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #8b4513 2px, transparent 2px);
  background-size: 6px 6px;
  border-radius: 50%;
}

.material-pattern {
  background: linear-gradient(45deg, var(--dark-green), var(--primary-green));
  border-radius: 4px;
}

.powder-pattern {
  background: #f5f5dc;
  border: 2px solid #ddd;
  border-radius: 50%;
}

.granules-pattern {
  background: linear-gradient(135deg, #87ceeb, #4682b4);
  border-radius: 50%;
}

/* ===== Process Steps Section ===== */
.process-steps-section {
  background: var(--light-green);
}

.process-step {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number .badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.step-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  border-radius: 10px;
  margin: 0 auto;
  width: 120px;
}

/* ===== Awards Section ===== */
.awards-section {
  background-color: #015231;
}

.awards-grid {
  width: 100%;
}

.awards-grid .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.award-item {
  padding: 10px 5px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-logo {
  transition: var(--transition);
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.award-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.award-photos img {
  transition: var(--transition);
}

.award-photos img:hover {
  transform: scale(1.05);
}

/* ===== Team Section ===== */
.team-section {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--primary-green) 100%
  );
}

/* ===== News Section ===== */
.news-section {
  background: var(--light-green);
}

/* News Blocks - Equal Size with Hover Overlay */
.news-block {
  height: 400px; /* Fixed height for all blocks */
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-block:hover {
  transform: translateY(-5px);
}

.news-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-block:hover .news-image {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  bottom: -100%; /* Start hidden below */
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(45, 90, 61, 0.95) 0%,
    rgba(45, 90, 61, 0.8) 50%,
    rgba(45, 90, 61, 0.6) 100%
  );
  color: white;
  padding: 30px 25px 25px;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-block:hover .news-overlay {
  bottom: 0; /* Slide up to show */
}

.news-content {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px 25px;
}

.news-block:hover .news-content {
  transform: translateY(0);
  opacity: 1;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: white;
  font-family: var(--font-family);
}

.news-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.news-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin: 0 0 10px 0;
}

/* ===== News Slider Styles ===== */
.news-slider-container {
  position: relative;
  padding: 0 50px; /* Space for navigation buttons */
}

/* Fallback styles when slider fails */
.news-slider.slider-fallback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.news-slider.slider-fallback .swiper-wrapper {
  display: contents;
}

.news-slider.slider-fallback .swiper-slide {
  width: auto !important;
  margin-right: 0 !important;
}

.news-swiper {
  overflow: visible;
}

.swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

/* Swiper Navigation Buttons */
.news-swiper-button-next,
.news-swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: var(--dark-green);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  margin-top: -25px; /* Center vertically */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

.news-swiper-button-next:hover,
.news-swiper-button-prev:hover {
  background-color: var(--primary-green);
  transform: scale(1.1);
  box-shadow: none !important;
}

.news-swiper-button-next::after,
.news-swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.news-swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.news-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(45, 90, 61, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--dark-green);
  transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .news-block {
    height: 350px;
  }

  .news-overlay {
    padding: 20px 20px 20px;
  }

  .news-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .news-description {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .news-slider-container {
    padding: 0 40px;
  }

  .news-swiper-button-next,
  .news-swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .news-swiper-button-next::after,
  .news-swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .news-block {
    height: 300px;
  }

  .news-overlay {
    padding: 15px 15px 15px;
  }

  .news-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .news-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .news-slider-container {
    padding: 0 30px;
  }

  .news-swiper-button-next,
  .news-swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .news-swiper-button-next::after,
  .news-swiper-button-prev::after {
    font-size: 14px;
  }
}

/* ===== Partners Section ===== */
/* Partner logo styles moved to inline styles replacement section */

/* ===== Footer ===== */
.footer-section {
  background: var(--dark-green);
  color: var(--white);
}

.footer-logo {
  height: 68px;
  width: auto;
}

.footer-description {
  max-width: 400px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44em;
}

.footer-contact-title {
  font-size: 25.05px;
  font-weight: 900;
  line-height: 1.0833em;
  font-family: var(--font-family);
}

.footer-section .col-lg-7 {
  padding-left: 80px;
}

.contact-office h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--light-green);
}

.contact-office p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44em;
  margin-bottom: 8px;
}

.contact-details {
  margin-top: 12px;
}

.contact-item {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 8px;
}

.contact-icon {
  background: var(--primary-green);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
}

/* Social Media Icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 18px;
  border: none;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon i {
  line-height: 1;
}

.copyright-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.44em;
  text-align: left;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(142, 198, 63, 0.4);
}

/* ===== Custom Buttons ===== */
.btn-success {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-success:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 82, 49, 0.3);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Loading States REMOVED ===== */
/* Loading states have been removed - hero section shows immediately */

/* ===== Scroll Direction Classes ===== */
body.scroll-down .navbar {
  transform: translateY(-100%);
}

body.scroll-up .navbar {
  transform: translateY(0);
}

/* ===== Touch Device Optimizations ===== */
.touch .hover-effect:hover {
  transform: none;
}

.touch .partner-logo:hover {
  transform: none;
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== Development Grid Overlay ===== */
.show-grid::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 9999;
}

/* ===== Lazy Loading ===== */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

img:not(.lazy) {
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
    line-height: 1.2;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 28px;
  }

  .benefit-text {
    font-size: 18px;
  }

  .goal-card {
    height: 250px;
    margin-bottom: 20px;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px 0;
    width: 100%;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }

  /* Disable parallax on mobile for performance */
  .hero-background {
    transform: none !important;
  }

  /* Hero products grid responsive */
  .hero-products-grid {
    padding: 10px;
    margin-top: 30px;
  }

  .product-sample {
    height: 100px;
    padding: 15px 10px;
  }

  .product-sample small {
    font-size: 12px;
  }

  /* Process steps responsive */
  .process-step {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .step-number .badge {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .step-image {
    width: 100px;
    height: 100px;
  }

  /* Awards responsive */
  .award-logo {
    height: 80px;
    padding: 10px;
  }
}

/* ===== Tablet Responsive (768px - 992px) ===== */
@media (max-width: 992px) and (min-width: 769px) {
  .hero-title {
    font-size: 64px;
  }

  .section-title {
    font-size: 48px;
  }

  .hero-products-grid {
    padding: 15px;
  }

  .product-sample {
    height: 110px;
  }

  .process-step {
    padding: 25px 20px;
  }

  .award-logo {
    height: 90px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .goal-card {
    height: 200px;
  }

  .goal-icon img {
    width: 60px;
    height: 60px;
  }

  .partner-logo {
    max-height: 40px;
  }

  /* Hero section mobile */
  .hero-section .row {
    flex-direction: column-reverse;
  }

  .hero-products-grid {
    margin-bottom: 30px;
    padding: 5px;
  }

  .product-sample {
    height: 80px;
    padding: 10px 5px;
  }

  .product-sample small {
    font-size: 10px;
  }

  /* Process steps mobile */
  .process-step {
    padding: 15px 10px;
  }

  .step-image {
    width: 80px;
    height: 80px;
  }

  /* Awards mobile */
  .award-logo {
    height: 60px;
    padding: 8px;
  }

  .award-photos .row {
    flex-direction: column;
  }

  .award-photos .col-lg-4 {
    margin-bottom: 15px;
  }

  /* Footer responsive */
  .footer-contact-title {
    font-size: 20px;
    margin-top: 30px;
  }

  .footer-section .col-lg-7 {
    padding-left: 15px;
  }

  .contact-details {
    flex-direction: column;
  }

  .contact-item {
    margin-bottom: 12px;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .copyright-text {
    text-align: center;
  }
}

/* ===== Loading Animation REMOVED ===== */
/* Loading screen styles have been removed as requested */

/* ===== Smooth Scrolling Enhancement ===== */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* ===== Image Hover Effects ===== */
.img-hover-zoom {
  transition: var(--transition);
}

.img-hover-zoom:hover {
  transform: scale(1.05);
}

/* ===== Text Animations ===== */
.text-animate {
  opacity: 0;
  animation: textFadeIn 0.8s ease forwards;
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-green);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

/* ===== Selection Colors ===== */
::selection {
  background: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--white);
}

/* ===== Performance Optimizations ===== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Focus Styles for Accessibility ===== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-arrow {
    animation: none;
  }
}

/* ===== Inline Styles Replacement Classes ===== */

/* Process step card hover effects */
.process-step-card {
  overflow: hidden; /* Ensures the zoomed image stays within the card boundaries */
}

.process-step-card img {
  transition: transform 0.3s ease-in-out;
}

.process-step-card:hover img {
  transform: scale(1.05);
}

/* Hero section row */
.hero-row {
  min-height: 60vh;
}

/* Why BUYO section background */
.why-buyo-benefits-section {
  background-color: #f5fbf3;
}

/* Why BUYO title */
.why-buyo-title {
  color: #2d5a3d !important;
  font-size: 3rem;
}

/* BUYO benefit cards */
.buyo-benefit-card-green {
  background-color: #0d8d48;
}

.buyo-benefit-card-dark {
  background-color: #015231;
}

/* Benefit icon circles */
.benefit-icon-circle {
  width: 80px;
  height: 80px;
}

/* Benefit icon styles */
.benefit-icon-green {
  font-size: 32px;
  color: #4a7c59;
}

/* Benefit description text */
.benefit-description {
  font-size: 14px;
}

/* Our process section */
.our-process-section {
  background-color: #f5fbf3;
}

/* Process lab image */
.process-lab-image img {
  width: 100%;
  object-fit: cover;
}

/* Process section title */
.process-section-title {
  color: #2d5a3d;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
}

/* Process description */
.process-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.8;
}

/* Process step cards */
.process-step-card {
  height: 500px;
}

.process-step-card img {
  object-fit: cover;
}

/* Process overlay gradient */
.process-overlay {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

/* Step number badges */
.step-number-badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Awards section */
.awards-section {
  background-color: #015231;
}

/* Awards title */
.awards-title {
  font-size: 3rem;
}

/* Awards image container */
.awards-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* News section */
.news-section {
  background-color: #f5fbf3;
}

/* Partners section */
.partners-section {
  background-color: #defbbc;
}

/* Partner with section */
.partner-with-section {
  background-color: #defbbc;
}

/* Partner logos - Updated */
.partner-logo {
  max-height: 60px;
  width: auto;
  opacity: 1;
  transition: var(--transition);
  filter: grayscale(0%);
}

.partner-logo:hover,
.partner-logo.animated {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Hero Section */
.contact-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/contact-hero-bg.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.contact-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #edffd8;
  padding: 100px 0;
}

.contact-form-title {
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-form-subtitle {
  font-size: 25px;
  font-weight: 500;
  color: var(--dark-green);
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-container {
  background: #defbbc;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-image {
  text-align: center;
  padding: 20px;
}

.contact-form-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styles */
.contact-form .form-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.contact-input,
.contact-textarea {
  background-color: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-green);
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  background-color: var(--white);
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(142, 198, 63, 0.1);
  outline: none;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: var(--primary-green);
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(142, 198, 63, 0.3);
}

.contact-submit-btn:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(1, 82, 49, 0.4);
}

/* Contact Info Section */
.contact-info-section {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding: 100px 0;
}

/* Left Column - Contact Information */
.contact-info-left {
  padding: 60px 80px;
  color: var(--light-green);
}

.contact-company-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 40px;
  font-family: var(--font-family);
}

.contact-office-block {
  margin-bottom: 30px;
}

.office-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--light-green);
  margin-bottom: 10px;
  font-family: var(--font-family);
}

.office-address {
  font-size: 18px;
  font-weight: 400;
  color: var(--light-green);
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: var(--font-family);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: var(--light-green);
  font-family: var(--font-family);
  flex-wrap: wrap;
}

.contact-separator {
  color: var(--primary-green);
  font-weight: 600;
  margin: 0 8px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--dark-green);
  flex-shrink: 0;
}

/* Social Media Section */
.social-media-section {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon-circle {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-green);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon-circle:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(142, 198, 63, 0.3);
}

/* Right Column - Product Image */
.contact-image-right {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-product-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-product-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments for Contact page */
@media (max-width: 768px) {
  .contact-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .contact-hero-title {
    font-size: 48px;
  }

  .contact-form-title {
    font-size: 36px;
  }

  .contact-form-subtitle {
    font-size: 18px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-image {
    margin-bottom: 30px;
  }

  .contact-info-left {
    padding: 40px 30px;
  }

  .contact-company-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .office-title {
    font-size: 18px;
  }

  .office-address {
    font-size: 14px;
  }

  .contact-item {
    font-size: 14px;
  }

  .contact-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .social-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-image-right {
    padding: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .contact-hero-title {
    font-size: 36px;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .contact-form-subtitle {
    font-size: 16px;
  }

  .contact-form-container {
    padding: 20px 15px;
  }

  .contact-input,
  .contact-textarea,
  .contact-select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .contact-submit-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .contact-info-left {
    padding: 30px 20px;
  }

  .contact-company-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .office-title {
    font-size: 16px;
  }

  .office-address {
    font-size: 13px;
  }

  .contact-item {
    font-size: 13px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .contact-image-right {
    padding: 15px;
    margin-top: 20px;
  }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Hero Section */
.about-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/about-hero-bg.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.about-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.about-hero-subtitle {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 3rem;
}

.about-hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

/* About Content Section */
.about-content-section {
  background-color: var(--dark-green);
  padding: 100px 0;
}

.about-content-title {
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-content-description {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

/* Material Advantage Section */
.material-advantage-section {
  background-color: #edffd8;
  padding: 100px 0;
}

.material-advantage-image {
  text-align: center;
}

.material-advantage-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Material Advantage Image Styles */
.material-advantage-image {
  text-align: center;
  margin: 0 auto;
}

.material-advantage-table-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.material-advantage-table-image:hover {
  transform: scale(1.02);
}

.material-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.material-comparison-table th,
.material-comparison-table td {
  padding: 20px 15px;
  text-align: center;
  vertical-align: middle;
  border: 2px solid var(--light-gray);
}

.material-comparison-table th {
  background-color: var(--dark-green);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.material-comparison-table .table-header:first-child {
  background-color: transparent;
  border: none;
  color: var(--dark-green);
  font-weight: 700;
  font-size: 18px;
}

.material-comparison-table .feature-name {
  background-color: var(--light-green);
  color: var(--dark-green);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  padding: 20px 25px;
}

.material-comparison-table .table-row-odd {
  background-color: var(--light-green);
}

.material-comparison-table .table-row-even {
  background-color: var(--white);
}

.material-comparison-table .checkmark-cell {
  background-color: var(--white);
}

.material-comparison-table .checkmark-cell i {
  font-size: 24px;
  color: var(--primary-green);
}

.material-comparison-table .empty-cell {
  background-color: var(--light-gray);
  opacity: 0.3;
}

/* Responsive table */
@media (max-width: 768px) {
  .material-advantage-table {
    padding: 15px;
    overflow-x: auto;
  }

  .material-comparison-table th,
  .material-comparison-table td {
    padding: 15px 10px;
    font-size: 14px;
  }

  .material-comparison-table .feature-name {
    font-size: 14px;
    padding: 15px 20px;
  }

  .material-comparison-table .checkmark-cell i {
    font-size: 20px;
  }
}

/* Factory Section */
.factory-section {
  background-color: var(--light-green);
  padding: 0;
}

.factory-image-wrapper {
  width: 100%;
}

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

/* Certifications Section */
.certifications-section {
  background-color: #edffd8;
  padding: 100px 0;
}

.certification-status {
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 1.5%;
}

.certification-item {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
}

.certification-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.certification-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.certification-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-green);
  line-height: 1.4;
  margin: 0;
}

/* Certification sections container */
.certification-section-container {
  background: #defbbc;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
  background-color: var(--light-green);
  padding: 100px 0;
}

.team-member {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid var(--primary-green);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .about-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .about-hero-title {
    font-size: 48px;
  }

  .about-hero-subtitle {
    font-size: 36px;
  }

  .about-hero-description {
    font-size: 16px;
  }

  .certification-status {
    font-size: 28px;
  }

  .team-image {
    width: 120px;
    height: 120px;
  }

  .material-advantage-section,
  .certifications-section,
  .team-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 28px;
  }

  .certification-item {
    padding: 20px 15px;
  }

  .team-image {
    width: 100px;
    height: 100px;
  }
}

/* ===== TEAM PAGE SPECIFIC STYLES ===== */

/* Team Hero Section */
.team-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.team-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-team.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.team-hero-title {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* Team Members Section */
.team-members-section {
  background-color: #edffd8;
  padding: 100px 0;
}

/* Team Member Images - Reusable class */
.team-member-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.team-member-image:hover {
  transform: scale(1.05);
}

/* Team Member Card */
.team-member-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-member-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 10px;
  line-height: 1.2;
}

.team-member-position {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.4;
}

/* Advisors Section */
.advisors-section {
  background-color: #edffd8;
  padding: 100px 0;
}

.advisor-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.advisor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.advisor-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--dark-green);
  transition: all 0.3s ease;
}

.advisor-card:hover .advisor-image {
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.advisor-card:hover .advisor-image img {
  transform: scale(1.1);
}

.advisor-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 10px;
  line-height: 1.2;
}

.advisor-position {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.4;
}

/* Responsive adjustments for Team page */
@media (max-width: 768px) {
  .team-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .team-hero-title {
    font-size: 48px;
  }

  .team-members-section,
  .advisors-section {
    padding: 60px 0;
  }

  .team-member-image {
    width: 120px;
    height: 120px;
  }

  .team-member-name,
  .advisor-name {
    font-size: 20px;
  }

  .team-member-position,
  .advisor-position {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .team-hero-title {
    font-size: 36px;
  }

  .team-member-image {
    width: 100px;
    height: 100px;
  }

  .team-member-name,
  .advisor-name {
    font-size: 18px;
  }

  .team-member-position,
  .advisor-position {
    font-size: 13px;
  }
}

/* ===== NEWS PAGE SPECIFIC STYLES ===== */

/* News Hero Section */
.news-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.news-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-lab-image.png") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.news-hero-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* News List Section */
.news-list-section {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.news-container {
  background: var(--light-gray);
  border-radius: 20px;
  border: 2px solid var(--primary-green);
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* News Item */
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary-green);
}

.news-item:last-child {
  margin-bottom: 0;
}

/* News Avatar */
.news-avatar {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image {
  transform: scale(1.05);
}

/* News Content */
.news-content {
  flex: 1;
  padding: 10px 0;
}

.news-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font-family);
}

.news-date {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-family: var(--font-family);
}

.news-description {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: var(--font-family);
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  box-shadow: 0 3px 10px rgba(142, 198, 63, 0.3);
}

.read-more-btn:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 82, 49, 0.4);
  text-decoration: none;
}

.read-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

/* News Pagination */
.news-pagination {
  margin-top: 60px;
  padding-top: 40px;
}

.news-pagination .pagination {
  margin: 0;
}

.news-pagination .page-link {
  background: var(--white);
  border: 2px solid var(--primary-green);
  color: var(--dark-green);
  font-weight: 600;
  padding: 12px 16px;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--font-family);
}

.news-pagination .page-link:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(142, 198, 63, 0.3);
}

.news-pagination .page-item.active .page-link {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
}

.news-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
  opacity: 0.6;
}

.news-pagination .page-link i {
  font-size: 14px;
}

/* Responsive adjustments for News page */
@media (max-width: 768px) {
  .news-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .news-hero-title {
    font-size: 48px;
  }

  .news-list-section {
    padding: 60px 0;
  }

  .news-container {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .news-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .news-avatar {
    width: 100%;
    height: 200px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-description {
    font-size: 14px;
  }

  .read-more-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .news-pagination {
    margin-top: 40px;
    padding-top: 30px;
  }

  .news-pagination .page-link {
    padding: 8px 12px;
    font-size: 14px;
    margin: 0 2px;
  }
}

@media (max-width: 576px) {
  .news-hero-title {
    font-size: 36px;
  }

  .news-container {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .news-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .news-avatar {
    height: 150px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-date {
    font-size: 14px;
  }

  .news-description {
    font-size: 13px;
  }

  .read-more-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .news-pagination .page-link {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* ===== SOLUTIONS SECTION STYLES ===== */

/* Solutions Section */
.solutions-section {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.solutions-headline {
  margin-bottom: 60px;
}

.solutions-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #2c4d3e;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.solutions-image-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(44, 77, 62, 0.15);
  transition: transform 0.3s ease;
}

.solutions-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments for Solutions section */
@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 0;
  }

  .solutions-headline {
    margin-bottom: 40px;
  }

  .solutions-title {
    font-size: 48px;
  }

  .solutions-image-container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .solutions-title {
    font-size: 36px;
  }

  .solutions-image-container {
    padding: 0 10px;
  }
}

/* ===== TECHNOLOGY PAGE SPECIFIC STYLES ===== */

/* Technology Hero Section */
.tech-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.tech-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-about.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.tech-hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

/* Technology Process Section */
.technology-process-section {
  background-color: var(--light-green);
  padding: 100px 0;
}

/* Technology Description */
.technology-description {
  max-width: 1100px;
  margin: 0 auto;
}

.technology-text {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2c4d3e;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Process Flow Container */
.process-flow-container {
  background-color: var(--light-gray);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(44, 77, 62, 0.1);
}

.process-flow-image-wrapper {
  text-align: center;
  padding: 20px;
}

.process-flow-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Laboratory Image Section */
.laboratory-image-section {
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1240px;
}

.lab-image-container {
  text-align: center;
  padding: 20px;
}

.lab-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(44, 77, 62, 0.15);
  transition: transform 0.3s ease;
}

.lab-image:hover {
  transform: scale(1.02);
}

/* Responsive adjustments for Technology page */
@media (max-width: 768px) {
  .technology-process-section {
    padding: 60px 0;
  }

  .technology-text {
    font-size: 15px;
    padding: 0 20px;
  }

  .process-flow-container {
    padding: 40px 20px;
    margin: 0 15px;
  }

  .process-flow-image-wrapper {
    padding: 10px;
  }

  .lab-image-container {
    padding: 10px;
  }

  .tech-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .tech-hero-title {
    font-size: 48px;
  }

  .technology-headline {
    font-size: 36px;
  }

  .technology-subtitle {
    font-size: 16px;
  }

  .technology-process-section {
    padding: 60px 0;
  }

  .flowchart-circle {
    padding: 20px;
    min-width: 120px;
    min-height: 120px;
  }

  .primary-circle {
    width: 140px;
    height: 140px;
  }

  .secondary-circle {
    width: 120px;
    height: 120px;
  }

  .flowchart-circle i {
    font-size: 24px;
  }

  .flowchart-circle span {
    font-size: 12px;
  }

  .flowchart-paths {
    flex-direction: column;
    gap: 20px;
  }

  .flowchart-applications {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .application-icon {
    width: 60px;
    height: 60px;
  }

  .application-icon i {
    font-size: 24px;
  }

  .flowchart-application span {
    font-size: 12px;
  }

  .lab-image-container {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .tech-hero-title {
    font-size: 36px;
  }

  .technology-headline {
    font-size: 28px;
  }

  .technology-subtitle {
    font-size: 14px;
  }

  .flowchart-circle {
    padding: 15px;
    min-width: 100px;
    min-height: 100px;
  }

  .primary-circle {
    width: 120px;
    height: 120px;
  }

  .secondary-circle {
    width: 100px;
    height: 100px;
  }

  .flowchart-circle i {
    font-size: 20px;
  }

  .flowchart-circle span {
    font-size: 11px;
  }

  .flowchart-applications {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .application-icon {
    width: 50px;
    height: 50px;
  }

  .application-icon i {
    font-size: 20px;
  }

  .flowchart-application span {
    font-size: 11px;
  }
}

/* ===== PRODUCT PAGE SPECIFIC STYLES ===== */

/* Product Hero Section */
.product-hero-section {
  min-height: 2em;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    rgba(1, 82, 49, 0.9) 100%
  );
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.product-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bg-about.jpg") center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.product-hero-title {
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.product-hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

/* Product Categories Section */
.product-categories-section {
  background-color: #f4ffe7;
  padding: 100px 0;
}

/* Product category styles are defined in individual sections */

.product-category-title {
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.product-category-description {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-green);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 2rem;
}

.product-category-image {
  text-align: center;
  margin: 0 auto;
}

.product-category-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-category-image img:hover {
  transform: scale(1.02);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.product-grid-item {
  background: #f4ffe7;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: #edffd8;
}

.product-grid-item img {
  max-width: 60px;
  height: auto;
  margin-bottom: 10px;
}

/* Learn More Button */
.learn-more-btn {
  background: var(--primary-green);
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(142, 198, 63, 0.3);
}

.learn-more-btn:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(1, 82, 49, 0.4);
  text-decoration: none;
}

.learn-more-btn img {
  width: 18px;
  height: 14px;
  transition: transform 0.3s ease;
}

.learn-more-btn:hover img {
  transform: translateX(3px);
}

/* Product Category Layouts */
.product-category-left {
  padding-right: 40px;
}

.product-category-right {
  padding-left: 40px;
}

.product-category-center {
  text-align: center;
}

/* Responsive adjustments for Product page */
@media (max-width: 768px) {
  .product-hero-section {
    min-height: 60vh;
    padding-top: 100px;
  }

  .product-hero-title {
    font-size: 48px;
  }

  .product-category-title {
    font-size: 36px;
  }

  .product-category-description {
    font-size: 16px;
  }

  .product-categories-section {
    padding: 60px 0;
  }

  .product-category-left,
  .product-category-right {
    padding: 0 20px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
  }

  .product-grid-item {
    padding: 15px;
    min-height: 100px;
  }

  .product-grid-item img {
    max-width: 50px;
  }

  .learn-more-btn {
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .product-hero-title {
    font-size: 36px;
  }

  .product-category-title {
    font-size: 28px;
  }

  .product-category-description {
    font-size: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .product-grid-item {
    padding: 10px;
    min-height: 80px;
  }

  .product-grid-item img {
    max-width: 40px;
  }

  .learn-more-btn {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* New Product Layout Styles */
.product-images-column {
  padding-right: 40px;
}

.product-info-column {
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.product-image-gallery {
  border-radius: 20px;
  padding: 10px;
}

.main-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--white);
}

.main-product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-product-image:hover img {
  transform: scale(1.05);
}

.product-thumbnails {
  margin-top: 20px;
}

.thumbnail-item {
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  background: var(--white);
  padding: 0;
}

.thumbnail-item.active {
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(142, 198, 63, 0.3);
}

.thumbnail-item:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.product-info {
  padding: 20px 0;
}

.product-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-description {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-green);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.view-details-btn {
  background: var(--primary-green);
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(142, 198, 63, 0.3);
}

.view-details-btn:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(1, 82, 49, 0.4);
  text-decoration: none;
}

/* Responsive for New Product Layout */
@media (max-width: 768px) {
  .product-images-column,
  .product-info-column {
    padding: 0 20px;
  }

  .product-info-column {
    margin-top: 40px;
    align-items: flex-start;
  }

  .product-image-gallery {
    padding: 20px;
  }

  .main-product-image img {
    height: 300px;
  }

  .thumbnail-item img {
    height: 80px;
  }

  .product-title {
    font-size: 32px;
  }

  .product-description {
    font-size: 16px;
  }

  .view-details-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .product-images-column,
  .product-info-column {
    padding: 0 15px;
  }

  .product-image-gallery {
    padding: 15px;
  }

  .main-product-image img {
    height: 250px;
  }

  .thumbnail-item {
    padding: 0;
  }

  .thumbnail-item img {
    height: 70px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-description {
    font-size: 14px;
  }

  .view-details-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.news-read-more:hover {
  background: linear-gradient(135deg, #218838, #1ea085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  color: white;
}

.news-pagination {
  margin-top: 30px;
}

.news-pagination .pagination .page-link {
  border: none;
  color: #28a745;
  margin: 0 5px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-pagination .pagination .page-link:hover {
  background-color: #28a745;
  color: white;
  transform: translateY(-2px);
}

.news-pagination .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.news-pagination .pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: transparent;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .news-content {
    padding: 25px;
  }

  .news-title {
    font-size: 22px;
  }

  .news-excerpt {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .news-list-section {
    padding: 60px 0;
  }

  .news-item {
    margin-bottom: 30px;
  }

  .news-image img {
    height: 250px;
  }

  .news-content {
    padding: 20px;
  }

  .news-title {
    font-size: 20px;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-read-more {
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .news-image img {
    height: 200px;
  }

  .news-content {
    padding: 15px;
  }

  .news-title {
    font-size: 18px;
  }

  .news-excerpt {
    font-size: 14px;
  }
}

/* ===== New News Item Design ===== */
.news-item-new {
  margin-bottom: 40px;
}

.news-card {
  background-color: #f0f8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-image-container {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.news-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content-new {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-title-new {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
  line-height: 1.2;
}

.news-date-new {
  font-size: 18px;
  color: var(--primary-green);
  font-weight: 500;
  margin-bottom: 20px;
}

.news-excerpt-new {
  font-size: 16px;
  color: var(--dark-green);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-read-more {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--dark-green);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-read-more:hover {
  background-color: var(--accent-green);
  color: var(--dark-green);
  transform: translateX(5px);
}

/* Responsive Design for New News Item */
@media (max-width: 991.98px) {
  .news-content-new {
    padding: 30px 25px;
  }

  .news-title-new {
    font-size: 28px;
  }

  .news-image-container {
    min-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .news-item-new {
    margin-bottom: 30px;
  }

  .news-card {
    border-radius: 8px;
  }

  .news-content-new {
    padding: 25px 20px;
  }

  .news-title-new {
    font-size: 24px;
  }

  .news-date-new {
    font-size: 16px;
  }

  .news-excerpt-new {
    font-size: 15px;
  }

  .news-image-container {
    min-height: 250px;
  }
}

@media (max-width: 575.98px) {
  .news-content-new {
    padding: 20px 15px;
  }

  .news-title-new {
    font-size: 20px;
  }

  .news-date-new {
    font-size: 15px;
  }

  .news-excerpt-new {
    font-size: 14px;
  }

  .news-image-container {
    min-height: 200px;
  }

  .btn-read-more {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ===== Modern News Card Design ===== */
.news-item-modern {
  margin-bottom: 40px;
}

.news-card-modern {
  background-color: #f2fbef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 24px 32px;
}

.news-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-image-modern {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.news-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.news-content-modern {
  padding: 0 0 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-headline-modern {
  font-size: 24px;
  font-weight: 700;
  color: #2c4d3e;
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

.news-date-modern {
  font-size: 14px;
  color: #7cb67b;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

.news-description-modern {
  font-size: 16px;
  color: #2c4d3e;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

.btn-read-more-modern {
  display: inline-block;
  background-color: #4ba74b;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

.btn-read-more-modern:hover {
  background-color: #3c8a3c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(75, 167, 75, 0.3);
  text-decoration: none;
}

/* Responsive Design for Modern News Card */
@media (max-width: 991.98px) {
  .news-content-modern {
    padding: 32px 0 0 0;
  }

  .news-image-modern {
    min-height: 250px;
    margin-bottom: 20px;
  }

  .news-headline-modern {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .news-card-modern {
    padding: 20px 24px;
  }

  .news-content-modern {
    padding: 0;
  }

  .news-image-modern {
    min-height: 200px;
    margin-bottom: 16px;
  }

  .news-headline-modern {
    font-size: 20px;
  }

  .news-date-modern {
    font-size: 13px;
  }

  .news-description-modern {
    font-size: 15px;
  }

  .btn-read-more-modern {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .news-card-modern {
    padding: 16px 20px;
  }

  .news-image-modern {
    min-height: 180px;
  }

  .news-headline-modern {
    font-size: 18px;
  }

  .news-date-modern {
    font-size: 12px;
  }

  .news-description-modern {
    font-size: 14px;
  }

  .btn-read-more-modern {
    padding: 8px 16px;
    font-size: 13px;
  }
}

/* ===== Manufacturing Capability Section ===== */
.manufacturing-capability-section {
  background-color: #f2fbef;
  padding: 80px 0;
  width: 100%;
}

.manufacturing-title {
  font-family: "Inter", "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #2c4d3e;
  margin-bottom: 0;
  line-height: 1.2;
}

.manufacturing-text {
  font-size: 16px;
  color: #2c4d3e;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.6;
}

.manufacturing-image-container {
  text-align: center;
  margin-top: 40px;
}

.manufacturing-image {
  width: 100%;
  max-width: 1240px;
  height: auto;
  border-radius: 8px;
  transition: var(--transition);
}

.manufacturing-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(44, 77, 62, 0.2);
}

/* Responsive Design for Manufacturing Section */
@media (max-width: 991.98px) {
  .manufacturing-capability-section {
    padding: 60px 0;
  }

  .manufacturing-title {
    font-size: 40px;
  }

  .manufacturing-text {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .manufacturing-capability-section {
    padding: 50px 0;
  }

  .manufacturing-title {
    font-size: 32px;
  }

  .manufacturing-text {
    font-size: 15px;
    padding: 0 20px;
  }

  .manufacturing-image-container {
    margin-top: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 575.98px) {
  .manufacturing-capability-section {
    padding: 40px 0;
  }

  .manufacturing-title {
    font-size: 28px;
  }

  .manufacturing-text {
    font-size: 14px;
    padding: 0 15px;
  }

  .manufacturing-image-container {
    margin-top: 25px;
    padding: 0 15px;
  }
}
