.floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
}

.fab-btn:hover {
  transform: translateY(-5px) scale(1.07);
}

.fab-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  background: rgba(26, 52, 9, 0.95);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.fab-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  background: linear-gradient(135deg, #1a3409, #264d12);
  animation: pulse 2.5s infinite;
}

.fab-btn.top {
  display: none;
  opacity: 0;
  transform: scale(0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 52, 9, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(26, 52, 9, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 52, 9, 0);
  }
}

:root {
  --primary-900: #1a3409;
  --primary-800: #234510;
  --primary-700: #2d5a14;
  --primary-600: #3d7a1c;
  --primary-500: #4a9222;
  --primary-400: #5cb02a;
  --primary-300: #7cc74d;
  --primary-200: #a8db82;
  --primary-100: #d4edc1;
  --primary-50: #f0f9e8;

  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #404040;
  --neutral-600: #525252;
  --neutral-500: #6b6b6b;
  --neutral-400: #8a8a8a;
  --neutral-300: #b0b0b0;
  --neutral-200: #d4d4d4;
  --neutral-100: #ebebeb;
  --neutral-50: #f7f7f7;
  --white: #ffffff;

  --accent-gold: #b8860b;
  --accent-gold-light: #daa520;
  --accent-warm: #8b7355;

  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base:
    0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  --radius-sm: 0.25rem;
  --radius-base: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--neutral-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-24) 0;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-900);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-600);
  margin-bottom: var(--space-4);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-300), var(--primary-600));
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: var(--space-12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-600) 0%,
    var(--primary-700) 100%
  );
  color: var(--white);
  box-shadow:
    var(--shadow-md),
    0 4px 14px rgba(45, 90, 20, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--primary-800) 100%
  );
  transform: translateY(-3px);
  box-shadow:
    var(--shadow-lg),
    0 6px 20px rgba(45, 90, 20, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-700);
  border-color: var(--primary-200);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-400);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-700);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn i {
  transition: transform var(--transition-base);
}

.btn:hover i {
  transform: translateX(4px);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.loader {
  width: 60px;
  height: 60px;
  position: relative;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.loader::before {
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary-100);
  border-top-color: var(--primary-600);
  animation: spin 1s linear infinite;
}

.loader::after {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border: 4px solid var(--primary-100);
  border-bottom-color: var(--primary-400);
  animation: spin 0.8s linear infinite reverse;
}

.loader-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-500);
  letter-spacing: 0.1em;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.top-bar {
  background: linear-gradient(
    135deg,
    var(--primary-800) 0%,
    var(--primary-900) 100%
  );
  padding: var(--space-3) 0;
  font-size: var(--text-sm);
  animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: var(--space-6);
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
}

.top-bar-contact a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.top-bar-contact i {
  font-size: var(--text-xs);
  color: var(--primary-300);
}

.top-bar-social {
  display: flex;
  gap: var(--space-3);
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base);
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-base);
}

.top-bar-social a:hover {
  background: var(--primary-500);
  color: var(--white);
  transform: translateY(-3px) rotate(5deg);
}

.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.logo img {
  height: 56px;
  width: auto;
  transition: transform var(--transition-base);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-base);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-600);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after {
  width: 60%;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary-700);
  background: var(--primary-50);
}

.nav-menu > li.active > a {
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-100);
  transform-origin: top center;
}

.nav-menu > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px) scale(1);
}

.dropdown-menu li {
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInLeft 0.3s ease forwards;
}

.nav-menu > li:hover .dropdown-menu li:nth-child(1) {
  animation-delay: 0.05s;
}
.nav-menu > li:hover .dropdown-menu li:nth-child(2) {
  animation-delay: 0.1s;
}
.nav-menu > li:hover .dropdown-menu li:nth-child(3) {
  animation-delay: 0.15s;
}
.nav-menu > li:hover .dropdown-menu li:nth-child(4) {
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--neutral-600);
  border-radius: var(--radius-base);
  transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--primary-50);
  color: var(--primary-700);
  padding-left: var(--space-5);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel {
  position: relative;
  height: 100%;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-item {
  display: none;
  position: relative;
  height: 100%;
  animation: fadeInScale 0.8s ease;
}

.carousel-item.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.carousel-item.active img {
  animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.carousel-indicators {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.carousel-indicators li.active {
  background: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.carousel-indicators li:hover {
  background: var(--white);
  transform: scale(1.1);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-700);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  opacity: 0;
}

.hero-carousel:hover .carousel-control {
  opacity: 1;
}

.carousel-control:hover {
  background: var(--white);
  color: var(--primary-700);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: var(--space-6);
}
.carousel-control.next {
  right: var(--space-6);
}

.carousel-control.prev:hover {
  transform: translateY(-50%) translateX(-3px) scale(1.1);
}
.carousel-control.next:hover {
  transform: translateY(-50%) translateX(3px) scale(1.1);
}

.about-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-100) 0%,
    var(--primary-200) 100%
  );
  border-radius: var(--radius-xl);
  z-index: -1;
  transition: all var(--transition-base);
}

.about-image:hover::before {
  transform: translate(-5px, -5px);
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: var(--primary-500);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.about-content {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: var(--text-base);
  color: var(--neutral-600);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  text-align: justify;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.feature-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-100);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-700));
  transition: height var(--transition-base);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) translateX(5px);
  border-color: var(--primary-200);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: var(--text-xl);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(45, 90, 20, 0.3);
}

.feature-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--neutral-900);
}

.feature-content p {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
}

.products-section {
  background: var(--neutral-50);
  position: relative;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-100) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.5;
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--neutral-100);
}

.product-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(45, 90, 20, 0.8) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: var(--space-6);
  text-align: center;
}

.product-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--neutral-900);
  transition: color var(--transition-fast);
}

.product-card:hover .product-content h3 {
  color: var(--primary-700);
}

.product-content .btn {
  width: 100%;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-700) 0%,
    var(--primary-900) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  animation: floatBubble 6s ease-in-out infinite reverse;
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.cta-image {
  flex: 0 0 auto;
}

.cta-image img {
  max-width: 200px;
  animation: bounce 3s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(45, 90, 20, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay .btn {
  transform: translateY(30px);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay .btn {
  transform: translateY(0);
}

.gallery-item {
  opacity: 0;
  transform: scale(0.8);
}

.gallery-item.animate {
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.contact-info-section {
  background: var(--white);
  margin-top: calc(var(--space-16) * -1);
  position: relative;
  z-index: 10;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: var(--space-2);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary-50) 0%,
    var(--primary-100) 100%
  );
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

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

.contact-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  box-shadow: 0 10px 30px rgba(45, 90, 20, 0.25);
  transition: all var(--transition-base);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(45, 90, 20, 0.35);
}

.contact-card-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  transition: transform var(--transition-base);
}

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

.contact-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--neutral-900);
}

.contact-card h3 a {
  color: inherit;
  transition: color var(--transition-fast);
}

.contact-card h3 a:hover {
  color: var(--primary-600);
}

.contact-card p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
  line-height: 1.6;
}

.footer {
  background: linear-gradient(180deg, var(--neutral-900) 0%, #0f0f0f 100%);
  color: var(--neutral-300);
  padding-top: var(--space-20);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(74, 146, 34, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(74, 146, 34, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: var(--radius-full);
  animation: expandLine 1s ease forwards;
  animation-delay: 0.5s;
}

@keyframes expandLine {
  to {
    width: 50px;
  }
}

.footer-products ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-products ul li {
  font-size: var(--text-sm);
  color: var(--neutral-400);
  padding-left: var(--space-4);
  position: relative;
  transition: all var(--transition-fast);
  cursor: default;
}

.footer-products ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-500);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.footer-products ul li:hover {
  color: var(--white);
  padding-left: var(--space-6);
}

.footer-products ul li:hover::before {
  width: 10px;
  background: var(--primary-400);
}

.footer-locations .location-block {
  margin-bottom: var(--space-5);
}

.footer-locations .company-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.footer-locations .location-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  transition: transform var(--transition-fast);
}

.footer-locations .location-item:hover {
  transform: translateX(5px);
}

.footer-locations .location-item i {
  color: var(--primary-400);
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.footer-locations .location-item:hover i {
  transform: scale(1.2);
}

.footer-locations .location-item strong {
  color: var(--neutral-200);
  display: block;
  margin-bottom: var(--space-1);
}

.footer-connect .contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-connect .contact-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--neutral-400);
  transition: all var(--transition-fast);
}

.footer-connect .contact-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-connect .contact-links a i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base);
  color: var(--primary-400);
  transition: all var(--transition-base);
}

.footer-connect .contact-links a:hover i {
  background: var(--primary-600);
  color: var(--white);
  transform: rotate(360deg);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-base);
  color: var(--neutral-300);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-600);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.footer-social a:hover::before {
  transform: translateY(0);
}

.footer-social a i {
  position: relative;
  z-index: 1;
}

.footer-social a:hover {
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  padding: var(--space-6) 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

.footer-bottom a {
  color: var(--primary-400);
  font-weight: 500;
  position: relative;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-400);
  transition: width var(--transition-base);
}

.footer-bottom a:hover::after {
  width: 100%;
}

.footer-bottom a:hover {
  color: var(--primary-300);
}

.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 52px;
  height: 52px;
  background: linear-gradient(
    135deg,
    var(--primary-600) 0%,
    var(--primary-700) 100%
  );
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all var(--transition-base);
  box-shadow: 0 10px 30px rgba(45, 90, 20, 0.3);
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(45, 90, 20, 0.4);
}

.scroll-top i {
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(74, 146, 34, 0.2);
  }
  to {
    box-shadow:
      0 0 20px rgba(74, 146, 34, 0.4),
      0 0 30px rgba(74, 146, 34, 0.2);
  }
}

.magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-2xl);
  z-index: 2000;
  transition: right var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--space-6);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--neutral-100);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-nav-close:hover {
  background: var(--primary-100);
  color: var(--primary-700);
  transform: rotate(90deg);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-menu a {
  display: block;
  padding: var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-base);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.mobile-nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--primary-50);
  transition: width var(--transition-base);
  z-index: -1;
}

.mobile-nav-menu a:hover::before,
.mobile-nav-menu a.active::before {
  width: 100%;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: var(--primary-700);
  padding-left: var(--space-6);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

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

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-image {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

@media (max-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: var(--space-3);
  }

  .top-bar-contact {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
    padding: var(--space-4);
  }

  .carousel-control {
    width: 44px;
    height: 44px;
  }

  .carousel-control.prev {
    left: var(--space-3);
  }
  .carousel-control.next {
    right: var(--space-3);
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --text-4xl: 1.75rem;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

/* --- NEW VISUAL ENHANCEMENTS START --- */

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}
[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}
[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}
[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}
[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}
[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}
[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.35), transparent 60%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.5)
    );
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 720px;
}

.page-header-content::before {
  content: "Chairperson • Vision • Leadership";
  display: inline-block;
  margin-bottom: var(--space-2);
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.24);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.1vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-3);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
  font-size: var(--text-base);
  color: rgba(241, 245, 249, 0.9);
  max-width: 520px;
  margin: 0 0 var(--space-5);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  color: var(--primary-200);
}
.breadcrumb a:hover {
  color: #ffffff;
}
.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

.message-section {
  background: radial-gradient(
    circle at top,
    #ecfdf5 0,
    #f8fafc 40%,
    #eef2ff 100%
  );
  position: relative;
}

.message-container {
  margin-top: calc(var(--space-14) * -1);
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-100);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.22);
  padding: var(--space-8);
}

.message-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: flex-start;
}

.message-content {
  flex: 1 1 0;
  min-width: 260px;
}

.profile-sidebar {
  flex: 0 0 320px;
  max-width: 320px;
}

.profile-card {
  background: linear-gradient(145deg, var(--primary-700), var(--primary-900));
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.6);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.11),
    transparent 70%
  );
}

.profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-image-container {
  position: relative;
  margin-bottom: var(--space-4);
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  display: block;
}

.profile-badge {
  position: absolute;
  bottom: 8px;
  right: calc(50% - 90px + 8px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@keyframes badgeGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
}
.profile-badge {
  animation: badgeGlow 3.5s ease-in-out infinite;
}

.profile-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.profile-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.profile-stats .stat-item {
  text-align: center;
}
.profile-stats .stat-number {
  font-size: var(--text-2xl);
  font-weight: 700;
}
.profile-stats .stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vision-card {
  margin-top: var(--space-5);
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
}
.vision-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.vision-card-title i {
  color: var(--primary-600);
}
.vision-card-text {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.8;
}

.message-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}
.message-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
}

.opening-quote {
  margin-bottom: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--primary-50) 0%,
    rgba(124, 199, 77, 0.06) 100%
  );
  border-left: 4px solid var(--primary-600);
}
.opening-quote p {
  font-family: "Merriweather", serif;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--primary-800);
  margin: 0;
  line-height: 1.8;
}

.message-text {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.9;
  margin-bottom: var(--space-4);
  text-align: justify;
}

.key-points {
  margin: var(--space-5) 0;
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: #f9fafb;
  border: 1px solid var(--neutral-100);
}
.key-points-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.key-points-title i {
  color: var(--primary-600);
}
.key-points-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.key-points-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--neutral-700);
}
.key-points-list li i {
  color: var(--primary-500);
  margin-top: 4px;
}

.signature-section {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--neutral-200);
  text-align: right;
}
.signature-name {
  font-family: "Merriweather", serif;
  font-size: var(--text-xl);
  font-weight: 700;
  font-style: italic;
  color: var(--neutral-900);
  margin-bottom: var(--space-1);
}
.signature-name::before {
  content: "— ";
  color: var(--primary-600);
}
.signature-position {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 992px) {
  .message-container {
    padding: var(--space-6);
    margin-top: calc(var(--space-10) * -1);
  }
  .message-grid {
    flex-direction: column;
  }
  .profile-sidebar {
    flex: 1 1 auto;
    max-width: 100%;
    order: -1;
  }
  .profile-card {
    max-width: 400px;
    margin: 0 auto var(--space-5);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-10);
  }
  .page-title {
    font-size: var(--text-3xl);
  }
  .message-title {
    font-size: var(--text-2xl);
  }
}

@media (max-width: 480px) {
  .profile-stats {
    flex-direction: column;
    gap: var(--space-3);
  }
  .signature-section {
    text-align: center;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}
[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}
[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}
[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}
[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}
[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 700px;
}

.page-header-content::before {
  content: "Contact • Offices • Support";
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.1vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-3);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
}

.breadcrumb a {
  color: var(--primary-200);
}
.breadcrumb a:hover {
  color: #ffffff;
}
.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

.page-header-decoration {
  display: none;
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-12) !important;
  }
  .page-title {
    font-size: var(--text-3xl);
  }
}

.contact-section {
  background: #f4f7f6;
  padding: var(--space-12) 0 var(--space-16);
}

.contact-section .container {
  position: relative;
}

.contact-container {
  margin-top: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.map-section {
  position: relative;
  background: #111827;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.35);
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  filter: grayscale(10%);
}

.map-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.map-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.5);
}

.map-label i {
  color: #dc2626;
  font-size: 13px;
}

.form-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.form-header {
  text-align: left;
  margin-bottom: 18px;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #14532d;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 13px;
  color: #6b7280;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-group {
  flex: 1 1 170px;
  min-width: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.form-group.full-width {
  flex-basis: 100%;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.form-control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 9px 11px;
  font-size: 14px;
  color: #111827;
  background-color: #f9fafb;
  outline: none;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-control::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

.form-control:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.7);
  background-color: #ffffff;
}

.form-control.textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-image: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.4);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.15s ease;
}

.submit-btn i {
  font-size: 13px;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.5);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.42);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: default;
}

.form-control.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.45);
}

.form-control.success {
  border-color: #16a34a !important;
}

.form-message {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  border-radius: 10px;
  padding: 9px 11px;
  border: 1px solid transparent;
  text-align: left;
}

.form-message i {
  margin-right: 6px;
}

.form-message.success {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.form-message.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.form-loading {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
  align-items: center;
  gap: 8px;
}

.form-loading.active {
  display: flex;
}

.spinner {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  border-top-color: #16a34a;
  animation: contactSpin 0.9s linear infinite;
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-info-section {
  padding: 60px 0;
  background-color: #f4f7f6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e0eadd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
  flex-shrink: 0;
}

.contact-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-card h3 a {
  color: #1b4d26;
  text-decoration: none;
}

.contact-card h3 a:hover {
  text-decoration: underline;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.contact-card p a {
  color: #1b4d26;
  text-decoration: none;
}

.contact-card p a:hover {
  text-decoration: underline;
}

.offices-section {
  background: #ffffff;
  padding: 70px 0 80px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 18px;
}

.office-card {
  position: relative;
  background: #f9fafb;
  border-radius: 18px;
  padding: 20px 20px 22px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.office-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #16a34a, #0ea5e9);
}

.office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(148, 163, 184, 0.35);
  border-color: #d1d5db;
}

.office-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #047857;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.office-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  margin-left: 10px;
}

.office-address {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  margin-left: 10px;
  margin-bottom: 10px;
}

.office-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
  margin-left: 10px;
}

.office-map-link i {
  font-size: 12px;
  transition: transform 0.15s ease;
}

.office-map-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 1200px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .offices-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding-top: var(--space-10);
  }
  .map-section {
    min-height: 240px;
    order: 2;
  }
  .form-section {
    order: 1;
  }
  .contact-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .office-card {
    padding: 18px 16px 20px;
  }
}

@media (max-width: 576px) {
  .contact-cards {
    gap: 15px;
    padding: 0 10px;
  }
  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    align-items: center;
    border-left: 5px solid #28a745;
  }
  .contact-icon {
    margin-bottom: 0;
    margin-right: 20px;
    width: 60px;
    height: 60px;
  }
  .contact-card h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
  }
  .contact-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding-inline: 10px;
    font-size: 11px;
  }
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
  .form-section {
    padding: 18px 14px 22px;
  }
}

.page-header::before {
  content: none !important;
  background: none !important;
}

.page-header::after {
  content: none !important;
}

.page-header-decoration {
  display: none !important;
}

.breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.breadcrumb a,
.breadcrumb-current,
.breadcrumb-separator {
  color: #ffffff !important;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 60%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.65),
      rgba(15, 23, 42, 0.4)
    );
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

#preloader {
  opacity: 1;
  visibility: visible;
  animation: contactHidePreloader 0.4s ease forwards;
  animation-delay: 0.7s;
}

@keyframes contactHidePreloader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.page-header {
  position: relative;

  min-height: 550px;
  padding: 140px 0 100px !important;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "" !important;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.35), transparent 55%),
    radial-gradient(
      circle at 100% 0,
      rgba(56, 189, 248, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.page-header::after {
  content: "" !important;
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -80px;
  height: 160px;
  background: #f8fafc;
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-content {
  max-width: 640px;
  text-align: left;
}

.page-header-content::before {
  content: "Contact • Offices • Support";
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(209, 250, 229, 0.7);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #bbf7d0;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.3vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  color: #f9fafb;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px !important;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7) !important;
  backdrop-filter: blur(10px) !important;
  font-size: 12px;
  color: #e5e7eb !important;
  box-shadow: none !important;
}

.breadcrumb a {
  color: #a5f3fc !important;
}
.breadcrumb a:hover {
  color: #e0f2fe !important;
}
.breadcrumb-separator {
  color: #9ca3af !important;
}
.breadcrumb-current {
  color: #ffffff !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 80px !important;
  }
  .page-title {
    font-size: var(--text-3xl);
  }
}

.login-section {
  padding: 100px 0;
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.login-card h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.btn-login {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #16a34a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-login:hover {
  background: #15803d;
}

.login-footer {
  margin-top: 20px;
}

.about-section .feature-cards .feature-card.mission-anim {
  animation: missionFromLeftBounce 0.8s ease-out forwards;
}

.about-section .feature-cards .feature-card.vision-anim {
  animation: visionFromRightBounce 0.8s ease-out 0.2s forwards;
}

@keyframes missionFromLeftBounce {
  0% {
    transform: translateX(-80px);
  }
  60% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-8px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes visionFromRightBounce {
  0% {
    transform: translateX(80px);
  }
  60% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

.about-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.about-grid-features {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.section-header {
  margin-bottom: 1rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #2563eb;
}
.section-title {
  margin: 0.4rem 0 0;
  font-size: 2rem;
  font-weight: 700;
}
.about-text {
  margin: 1rem 0 0;
  color: #4b5563;
  line-height: 1.7;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.feature-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
}
.feature-icon i {
  font-size: 1.1rem;
}

.feature-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.feature-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}
.feature-content .feature-subtext {
  margin-top: 0.6rem;
}

.about-cta {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .about-grid-main {
    grid-template-columns: 1fr;
  }
  .about-grid-features {
    grid-template-columns: 1fr;
  }
}

.about-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.contact-info-section {
  padding: 60px 0;
  background-color: #f4f7f6;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #e0eadd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-card-icon {
  width: 65px;
  height: 65px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
  flex-shrink: 0;
}

.contact-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-card h3 a {
  color: #1b4d26;
  text-decoration: none;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    align-items: center;
    border-left: 5px solid #28a745;
  }

  .contact-card-icon {
    margin-bottom: 0;
    margin-right: 20px;
    width: 60px;
    height: 60px;
  }

  .contact-card h3 {
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }
}

.page-header {
  position: relative;
  padding: var(--space-24) 0 var(--space-20);
  background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.7),
    rgba(15, 23, 42, 0.4)
  );
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 700px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.page-header-content::before {
  content: "Women-led. Farmer-focused. High-tech Agri Solutions.";
  display: inline-block;
  margin-bottom: var(--space-2);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb {
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: var(--primary-200);
}
.breadcrumb a:hover {
  color: var(--white);
}

.about-intro-section {
  background: var(--white);
  position: relative;
}

.about-intro-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  margin-top: calc(var(--space-16) * -1);
  position: relative;
  z-index: 10;
  border: 1px solid var(--neutral-100);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--space-8);
  align-items: start;
}

.about-intro-text {
  font-size: var(--text-base);
  color: var(--neutral-700);
  line-height: 1.8;
  text-align: justify;
}

.highlight-box {
  align-self: stretch;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-left: 4px solid var(--primary-600);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.highlight-box p {
  font-size: var(--text-sm);
  color: var(--primary-900);
  font-weight: 500;
  margin: 0;
}

.highlight-box ul {
  list-style: none;
  padding-left: 0;
  margin: var(--space-3) 0 0;
}
.highlight-box li {
  font-size: var(--text-sm);
  color: var(--primary-800);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.highlight-box li i {
  color: var(--primary-700);
}

@media (max-width: 992px) {
  .about-intro-card {
    grid-template-columns: 1fr;
    padding: var(--space-6);
    margin-top: calc(var(--space-10) * -1);
  }
}

.values-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(148, 163, 184, 0.25) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  text-align: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-lg);
}

.value-text {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.why-choose-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 992px) {
  .why-choose-image {
    order: 2;
  }
  .why-choose-content {
    order: 1;
  }
}

.why-choose-image {
  position: relative;
}
.why-choose-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}
.why-choose-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 15px 40px rgba(45, 90, 20, 0.4);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.feature-box {
  background: #ffffff;
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-200);
}

.feature-box h3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
}
.feature-box h3 i {
  color: var(--primary-600);
  font-size: var(--text-xl);
}

.feature-box p {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

.delegacy-section {
  background: #ffffff;
  position: relative;
}

.delegacy-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-10);
  align-items: center;
}

.delegacy-visual {
  position: relative;
}

.delegacy-card {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.5);
}

.delegacy-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
}

.delegacy-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: var(--text-3xl);
}

.delegacy-title {
  position: relative;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}
.delegacy-subtitle {
  position: relative;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

.delegacy-text-content {
  background: #f8fafc;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
}

.delegacy-text {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.9;
  text-align: justify;
}
.delegacy-text + .delegacy-text {
  margin-top: var(--space-4);
}

.delegacy-signature {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--neutral-200);
  text-align: right;
}
.delegacy-signature .name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--neutral-900);
}
.delegacy-signature .position {
  font-size: var(--text-xs);
  color: var(--primary-600);
}

@media (max-width: 992px) {
  .delegacy-content {
    grid-template-columns: 1fr;
  }
  .delegacy-text-content {
    padding: var(--space-6);
  }
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  position: relative;
  overflow: hidden;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.5);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .stat-number {
    font-size: var(--text-3xl);
  }
}

html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.cart-section {
  padding: var(--space-16) 0;
  background: var(--white);
}

.cart-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-empty {
  text-align: center;
  color: #777;
  padding: 40px 0;
  font-size: 1.05rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.cart-table th,
.cart-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.cart-table th {
  background: #f8fafc;
  font-weight: 600;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 2px 8px;
}

.qty-controls button {
  border: none;
  background: none;
  padding: 0 4px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.qty-controls span {
  min-width: 24px;
  text-align: center;
}

.btn-remove {
  border: none;
  background: none;
  color: #e53935;
  cursor: pointer;
  font-size: 0.9rem;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .cart-card {
    padding: 16px;
  }

  .cart-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.why-choose-section .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;

  width: 130px;
  height: 130px;
  border-radius: 50%;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 10px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.why-choose-section .experience-badge .number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.why-choose-section .experience-badge .text {
  font-size: 0.7rem;
  line-height: 1.2;
  white-space: normal;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 15px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}

[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}

[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}

[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}

[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}

[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.product-details-section {
  padding: var(--space-16) 0;
  background: var(--white);
}

.product-main-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-100);
}

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

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

.product-info-wrapper {
  padding-left: var(--space-8);
}

.product-detail-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary-900);
  margin-bottom: 1rem;
}

.product-meta {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.meta-item {
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.meta-item i {
  color: var(--primary-600);
}

.product-short-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.custom-tabs .nav-tabs {
  border-bottom: 2px solid #e5e5e5;
  gap: 1rem;
}

.custom-tabs .nav-link {
  border: none;
  color: #666;
  font-weight: 600;
  padding: 1rem 1.5rem;
  transition: all 0.3s;
}

.custom-tabs .nav-link.active {
  color: var(--primary-700);
  border-bottom: 3px solid var(--primary-600);
  background: transparent;
}

.tab-content {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 1rem;
  margin-top: 1rem;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.spec-table th,
.spec-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.spec-table th {
  background: #f0f9e8;
  color: var(--primary-800);
  width: 40%;
  font-weight: 600;
}

.review-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer {
  background: linear-gradient(180deg, var(--neutral-900) 0%, #0f0f0f 100%);
  color: var(--neutral-300);
  padding-top: var(--space-20);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-500);
  border-radius: 2px;
}

.footer-products ul li {
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}

.footer-products ul li:hover {
  transform: translateX(5px);
  color: var(--primary-400);
  cursor: pointer;
}

.footer-locations .location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-locations .location-item i {
  color: var(--primary-500);
  margin-top: 5px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.contact-links a:hover {
  color: var(--primary-400);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  color: #fff;
}

.footer-social a:hover {
  background: var(--primary-600);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #888;
}

.footer-bottom a {
  color: var(--primary-400);
}

@media (max-width: 992px) {
  .product-info-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.product-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 400px;
}

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

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s scale;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
  opacity: 1;
}

.product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(60px);
}

.product-card:hover .product-content {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.95);
}

.product-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  transition: color 0.4s ease;
}

.product-card:hover .product-content h3 {
  color: #333;
}

.product-content .btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.product-card:hover .btn {
  opacity: 1;
  visibility: visible;
}

.product-content .btn i {
  transition: transform 0.3s ease;
}

.product-content .btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .product-card {
    height: 350px;
  }
  .product-content {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.9);
  }
  .product-content h3 {
    color: #333;
    margin-bottom: 10px;
  }
  .product-content .btn {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
    padding: 10px;
  }

  .product-card {
    height: auto !important;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
  }

  .product-image {
    position: relative !important;
    height: 220px !important;
    width: 100%;
    z-index: 1;
  }

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

  .product-overlay {
    display: none !important;
  }

  .product-content {
    position: relative !important;
    transform: translateY(0) !important;
    background: #ffffff !important;
    padding: 20px !important;
    width: 100% !important;
    text-align: center;
    backdrop-filter: none !important;
    border-top: 1px solid #f0f0f0;
  }

  .product-content h3 {
    color: #1a1a1a !important;
    font-size: 1.25rem !important;
    margin-bottom: 15px !important;
    font-weight: 600;
  }

  .product-content .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    background-color: var(--primary-color, #007bff);
    color: #fff;
    padding: 12px;
  }

  .product-content .btn i {
    margin-left: 10px;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-card {
    height: 350px !important;
  }
}

body {
  background: #f5f5f5;
}
.page-wrapper {
  padding: 40px 0;
}
.card {
  border-radius: 12px;
}
.cart-summary-table th,
.cart-summary-table td {
  font-size: 0.9rem;
  padding: 6px 8px;
}

.login-section {
  padding: 100px 0;
  background: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-card {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.login-card h2 {
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.form-group input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.btn-login {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #16a34a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}
.btn-login:hover {
  background: #15803d;
}
.login-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
.login-footer a {
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
}
.login-footer a:hover {
  text-decoration: underline;
}

.about-section .feature-cards .feature-card {
  opacity: 1 !important;
}

.about-section .feature-cards .feature-card:nth-child(1) {
  animation: missionFromLeftBounce 0.9s ease-out 0.1s both;
}

.about-section .feature-cards .feature-card:nth-child(2) {
  animation: visionFromRightBounce 0.9s ease-out 0.25s both;
}

@keyframes missionFromLeftBounce {
  0% {
    transform: translateX(-80px) scale(0.9);
  }
  60% {
    transform: translateX(0) scale(1.04);
  }
  80% {
    transform: translateX(-8px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes visionFromRightBounce {
  0% {
    transform: translateX(80px) scale(0.9);
  }
  60% {
    transform: translateX(0) scale(1.04);
  }
  80% {
    transform: translateX(8px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.values-section {
  background: radial-gradient(
    circle at top,
    #ecfdf5 0,
    #f9fafb 40%,
    #e5f0ff 100%
  );
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.values-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-10);
}

.values-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
}

.values-subtitle {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.values-card {
  position: relative;
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.values-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top left,
    rgba(34, 197, 94, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.values-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
}

.values-card:hover::before {
  opacity: 1;
}

.values-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 60%);
  color: var(--primary-700);
  font-size: var(--text-xl);
}

.values-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-3);
}

.values-card-text {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.9;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}
[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}
[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}
[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}
[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}
[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 60%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(15, 23, 42, 0.65),
      rgba(15, 23, 42, 0.4)
    );
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 700px;
}

.page-header-content::before {
  content: "Gallery • Facility • Fields • Products";
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.1vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-3);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  color: var(--primary-200);
}
.breadcrumb a:hover {
  color: #ffffff;
}
.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

.page-header-decoration {
  display: none;
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-12) !important;
  }
  .page-title {
    font-size: var(--text-3xl);
  }
}

.gallery-section {
  background: #ffffff;
  position: relative;
}

.gallery-intro-card {
  margin-top: calc(var(--space-14) * -1);
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--neutral-100);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  text-align: center;
}
.gallery-intro-text {
  font-size: var(--text-base);
  color: var(--neutral-700);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .gallery-intro-card {
    padding: var(--space-6);
    margin-top: calc(var(--space-10) * -1);
  }
}

.gallery-filters-section {
  background: #f1f5f9;
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--space-4) 0;
  position: sticky;
  top: 80px;
  z-index: 50;
}
.gallery-filters {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-filters::-webkit-scrollbar {
  height: 4px;
}
.gallery-filters::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.filter-btn {
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.filter-btn i {
  font-size: var(--text-sm);
}
.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
  border-color: var(--primary-400);
  color: var(--primary-700);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff;
  border-color: var(--primary-600);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
}

.gallery-grid-section {
  background: radial-gradient(
    circle at top,
    #ecfdf3 0,
    #f9fafb 40%,
    #eef2ff 100%
  );
  padding: var(--space-12) 0 var(--space-16);
}

.gallery-grid {
  column-count: 4;
  column-gap: 24px;
}

.gallery-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  cursor: zoom-in;

  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;

  transform-origin: center bottom;
  transform: translateY(0) scale(1);
  transition:
    transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.96) 0%,
    rgba(15, 23, 42, 0.5) 40%,
    transparent 80%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  border-color: rgba(34, 197, 94, 0.4);
}
.gallery-item:hover img {
  transform: scale(1.12) translate3d(0, -4px, 0);
}
.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item-view {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: translate3d(0, -8px, 0) scale(0.8);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.gallery-item:hover .gallery-item-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.gallery-item-view:hover {
  background: var(--primary-600);
  color: #022c22;
}

.gallery-item-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem 1rem;
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}
.gallery-item:hover .gallery-item-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 0.15rem;
}
.gallery-item-category {
  font-size: 0.8rem;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gallery-item-category i {
  color: #bbf7d0;
}

@media (max-width: 1200px) {
  .gallery-grid {
    column-count: 3;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    column-gap: 18px;
  }
  .gallery-item {
    margin-bottom: 18px;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    column-count: 1;
    column-gap: 0;
  }
  .gallery-item {
    margin-bottom: 16px;
  }
}

.no-results {
  -webkit-column-span: all;
  column-span: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.98)
  );
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  width: calc(100% - 3rem);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(18px) scale(0.94);
  opacity: 0;
  transition:
    transform 0.26s ease,
    opacity 0.26s ease;
}
.lightbox.active .lightbox-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.lightbox-close:hover {
  background: var(--primary-600);
  color: #022c22;
  border-color: var(--primary-600);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.85);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}
.lightbox-nav:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #022c22;
  transform: translateY(-50%) translateY(-2px);
}
.lightbox-nav.prev {
  left: -56px;
}
.lightbox-nav.next {
  right: -56px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 1.1rem;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.9);
}

.lightbox-caption {
  margin-top: 0.9rem;
  text-align: center;
  color: #e5e7eb;
}
.lightbox-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.lightbox-caption p {
  font-size: 0.82rem;
  color: #9ca3af;
}
.lightbox-counter {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

@media (max-width: 992px) {
  .lightbox-nav.prev {
    left: 8px;
  }
  .lightbox-nav.next {
    right: 8px;
  }
}
@media (max-width: 640px) {
  .lightbox-content {
    width: calc(100% - 1.8rem);
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

.gallery-stats-section {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  position: relative;
  overflow: hidden;
}
.gallery-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#1e293b 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
  mix-blend-mode: soft-light;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--space-6);
}
.stat-item {
  text-align: center;
  color: #ffffff;
  padding: 1.2rem 1.1rem;
  border-radius: 1.3rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
}
.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto var(--space-3);
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}
.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-1);
}
.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.load-more-section {
  text-align: center;
  padding: var(--space-8) 0 var(--space-12);
  background: #ffffff;
}
.load-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 22px;
  border-radius: 999px;
  border: 1px solid #22c55e;
  background: #ffffff;
  color: #065f46;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.load-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.25), transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.load-more-btn:hover::before {
  transform: translateX(100%);
}
.load-more-btn:hover {
  background: #22c55e;
  color: #022c22;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(22, 163, 74, 0.5);
}
.load-more-btn i {
  font-size: 0.9rem;
}

.no-results {
  width: 100%;
  margin-top: var(--space-10);
  padding: var(--space-8) var(--space-4);
  border-radius: 1.2rem;
  background: #ffffff;
  border: 1px dashed #d1d5db;
  text-align: center;
  color: #111827;
}
.no-results-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #9ca3af;
}
.no-results h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.no-results p {
  font-size: 0.88rem;
  color: #6b7280;
}

.gallery-item.hidden {
  display: none;
}
.gallery-item.show {
  animation: thumbReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes thumbReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

html,
body {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.agroplast-section {
  padding: 60px 0;
  margin: 80px 0;
  background: transparent;
}

.agroplast-section .container {
  background: linear-gradient(180deg, #f9fafb 0%, #ecfdf3 45%, #f9fafb 100%);
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  padding: 60px 40px;
}

.agroplast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .agroplast-section {
    padding: 40px 0;
    margin: 50px 0;
  }
  .agroplast-section .container {
    padding: 24px 16px;
    border-radius: 18px;
  }
}

.agroplast-features {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.agroplast-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agroplast-features .feature-card {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .agroplast-features {
    grid-template-columns: 1fr;
  }
}

.agroplast-section .section-label {
  font-size: 1rem;
  padding: 6px 20px;
  letter-spacing: 0.14em;
}

.agroplast-section .section-title {
  font-size: 2rem;
}

.btn-login-small {
  font-size: 0.85rem;
  padding: 6px 16px;
}

.agro-what-text {
  margin: 8px 0 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4b5563;
}

.agro-bullet-list {
  margin: 6px 0 0;
  padding-left: 1.2rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #4b5563;
  list-style-type: disc;
}

.agro-bullet-list li {
  margin-bottom: 4px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 28px 6px 12px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  color: #333;

  height: 34px;
  line-height: normal;
  cursor: pointer;

  transition: all 0.2s ease;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.nav-menu li select {
  align-self: center;
}

.nav-menu li:has(#languageSelector) {
  margin-left: 8px;
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
}

.header nav {
  display: flex;
  align-items: center;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}

[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}

[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}

[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}

[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}

[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: #000;

  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 60%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.75),
      rgba(15, 23, 42, 0.4)
    );
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 700px;
}

.page-header-content::before {
  content: "Product Range • Films • Nets • Eco Solutions";
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.1vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-3);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a {
  color: var(--primary-200);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

.page-header-decoration {
  display: none;
}

.products-intro-section {
  background: #ffffff;
}

.products-intro-card {
  margin-top: calc(var(--space-14) * -1);
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 1px solid var(--neutral-100);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.products-intro-text {
  font-size: var(--text-base);
  color: var(--neutral-700);
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto;
}

.product-stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

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

.product-stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-600);
}

.product-stat-label {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 992px) {
  .products-intro-card {
    padding: var(--space-6);
    margin-top: calc(var(--space-10) * -1);
  }
}

.product-categories-section {
  background: #f1f5f9;
  border-bottom: 1px solid var(--neutral-200);
  padding: var(--space-4) 0;
  position: sticky;
  top: 80px;
  z-index: 50;
}

.product-categories {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-categories::-webkit-scrollbar {
  height: 4px;
}

.product-categories::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.7);
  border-radius: 999px;
}

.category-btn {
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--neutral-200);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--neutral-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.category-btn i {
  font-size: var(--text-sm);
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.15);
  border-color: var(--primary-400);
  color: var(--primary-700);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff;
  border-color: var(--primary-600);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.45);
}

.products-grid-section {
  background: radial-gradient(
    circle at top,
    #ecfdf3 0,
    #f9fafb 40%,
    #eef2ff 100%
  );
  padding: var(--space-12) 0 var(--space-16);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  border-radius: var(--radius-2xl);
  background: #ffffff;
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.22);
  border-color: rgba(34, 197, 94, 0.5);
}

.product-image-wrapper {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--neutral-100);
}

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

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-image-overlay {
  display: none;
}

.quick-view-btn {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-700);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.4);
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--primary-600);
  color: #ffffff;
}

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: var(--text-2xs);
  padding: var(--space-1) var(--space-2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #f9fafb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-content {
  flex: 1;
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: var(--space-1);
}

.product-category-tag i {
  font-size: 6px;
}

.product-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-description {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.feature-tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--neutral-100);
  font-size: var(--text-2xs);
  color: var(--neutral-700);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.feature-tag i {
  font-size: 8px;
  color: var(--primary-500);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars i {
  color: #facc15;
  font-size: var(--text-xs);
}

.rating-count {
  font-size: var(--text-2xs);
  color: var(--neutral-500);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--neutral-100);
  margin-top: auto;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: var(--success-600);
  font-weight: 600;
}

.availability i {
  font-size: var(--text-xs);
}

.availability.out-of-stock {
  color: var(--error-600);
}

.view-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 999px;
  padding: var(--space-2) var(--space-4);
  border: none;
  background: #0f172a;
  color: #f9fafb;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.view-details-btn:hover {
  background: #020617;
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
}

.view-details-btn i {
  transition: transform 0.2s ease;
}

.view-details-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image-wrapper {
    flex: 1 1 auto;
    max-width: 100%;
    border-right: none;
  }
}

.why-products-section {
  background: #ffffff;
}

.why-products-section::before {
  display: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-5);
}

@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(34, 197, 94, 0.4);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  font-size: var(--text-2xl);
}

.benefit-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
}

.benefit-text {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  display: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  text-align: center;
  color: #ffffff;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto var(--space-3);
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
  padding: var(--space-6);
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  max-width: 900px;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-base);
  position: relative;
}

.product-modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-image {
  width: 50%;
  height: 100%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-details {
  width: 50%;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--neutral-200);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.modal-close:hover {
  background: var(--primary-600);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-body-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: var(--space-4);
}

.modal-body-scroll::-webkit-scrollbar {
  width: 6px;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.modal-category {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-2xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: var(--space-1);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
}

.modal-description {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.modal-features {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
}

.modal-features h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

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

.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--neutral-600);
  padding: var(--space-1) 0;
}

.modal-features li i {
  color: var(--primary-600);
  margin-top: 3px;
}

.modal-actions {
  display: flex;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--neutral-200);
}

.modal-btn {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.modal-btn.primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #ffffff;
}

.modal-btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 90, 20, 0.25);
}

.modal-btn.secondary {
  background: #ffffff;
  border: 1px solid var(--primary-600);
  color: var(--primary-700);
}

.modal-btn.secondary:hover {
  background: #ecfdf5;
}

@media (max-width: 992px) {
  .modal-content {
    flex-direction: column;
    height: 90vh;
  }

  .modal-image {
    width: 100%;
    height: 230px;
  }

  .modal-details {
    width: 100%;
    padding: var(--space-5);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-12);
  }

  .page-title {
    font-size: var(--text-3xl);
  }

  .product-categories-section {
    position: relative;
    top: 0;
  }
}

.product-card.hidden {
  display: none;
}

.product-card.show {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section .about-content > div:last-child {
  text-align: center;
  margin-top: 10px;
}

html,
body {
  -webkit-user-select: none;

  -moz-user-select: none;

  -ms-user-select: none;

  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.nav-auth {
  margin-left: 8px;
}

.nav-auth .auth-btn {
  border: 1px solid #84eebc;
  background: transparent;
  color: #a8d5c0;
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-auth .auth-btn:hover {
  background: #afb3b1;
  color: #fff;
}

.btn-login-small {
  font-size: 0.85rem;
  padding: 6px 16px;
}

.products-grid-section .product-footer {
  justify-content: flex-start;
  gap: 10px;
}

.products-grid-section .btn-add-cart,
.products-grid-section .view-details-btn {
  flex: 1 1 0;
  min-width: 0;
}

.products-grid-section .btn-add-cart {
  padding: 6px 10px !important;
  font-size: 12px !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.products-grid-section .btn-add-cart i {
  font-size: 12px;
}

.products-grid-section .view-details-btn {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-700);
  border: 1px solid var(--primary-400);
  box-shadow: none;
}

.products-grid-section .view-details-btn:hover {
  background: var(--primary-50);
  color: var(--primary-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

@media (max-width: 768px) {
  .products-grid-section .product-footer {
    flex-direction: column;
  }

  .products-grid-section .btn-add-cart,
  .products-grid-section .view-details-btn {
    width: 100%;
  }
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

html,
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.header .nav-menu > li > a {
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  padding: 8px 6px !important;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .nav-menu > li {
  display: flex;
  align-items: center;
}

#languageSelector {
  height: 34px;
  font-size: 13px;
  padding: 4px 10px;
  margin: 0;
  display: flex;
  align-items: center;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav .text-center {
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.btn-login-small {
  height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 16px;
  font-size: 13px;
}

#languageSelector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 6px 35px 6px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  cursor: pointer;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%234b5563' height='12' viewBox='0 0 20 20' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M5.23 7.21a1 1 0 011.41.02L10 10.71l3.36-3.48a1 1 0 111.44 1.38l-4.08 4.23a1 1 0 01-1.44 0L5.21 8.61a1 1 0 01.02-1.4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

#languageSelector:hover {
  border-color: #16a34a;
}

#languageSelector:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: #f4f4f4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-overlay .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 8px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.gallery-overlay .btn-outline:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    align-items: flex-end;
    padding-bottom: 10px;
  }

  .gallery-overlay .btn-outline {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

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

.about-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.about-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.3);
  cursor: pointer;
}

.about-content {
  width: 100%;
  max-width: 900px;
}

.about-section .section-header {
  text-align: left;
  margin-bottom: 10px;
}
.about-section .section-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(22, 101, 52, 0.08);
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
}
.about-section .section-title {
  margin-top: 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  color: #0f172a;
}

.about-text {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #334155;
  margin: 10px 0 18px;
  padding-left: 14px;
  border-left: 3px solid #22c55e;
  background: rgba(248, 250, 252, 0.8);
}

.feature-cards {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.feature-card {
  width: 400%;
  max-width: 500px;
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 30px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.35);
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 1rem;
}

.feature-card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
  color: #14532d;
}
.feature-card p {
  font-size: 0.88rem;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 576px) {
  .about-section {
    padding: 60px 0;
  }
  .about-image img {
    max-width: 100%;
  }
  .feature-card {
    max-width: 100%;
  }
}

.hero-carousel {
  position: relative;
  min-height: 75vh;
  overflow: hidden;
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(22, 101, 52, 0.75),
    rgba(34, 197, 94, 0.45),
    rgba(250, 204, 21, 0.3)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.hero-carousel::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -40px;
  height: 120px;
  background: #ffffff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 1;
}

.hero-carousel .carousel-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.4rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-carousel .carousel-indicators li {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.7);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero-carousel .carousel-indicators li.active {
  background: #f59e0b;
  transform: scale(1.1);
}

.hero-carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.6);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-carousel .carousel-control.prev {
  left: 1.7rem;
}

.hero-carousel .carousel-control.next {
  right: 1.7rem;
}

.hero-carousel .carousel-control:hover {
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-50%) scale(1.07);
}

@media (max-width: 992px) {
  .hero-carousel {
    min-height: 65vh;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    min-height: 55vh;
  }

  .hero-carousel::after {
    bottom: -30px;
    height: 90px;
  }

  .hero-carousel .carousel-control {
    display: none;
  }

  .hero-carousel .carousel-indicators {
    bottom: 1.6rem;
  }
}

.about-section .feature-cards .feature-card:nth-child(1).aos-animate {
  animation: missionFromLeftBounce 0.9s ease-out 0.1s both;
}

.about-section .feature-cards .feature-card:nth-child(2).aos-animate {
  animation: visionFromRightBounce 0.9s ease-out 0.25s both;
}

@keyframes missionFromLeftBounce {
  0% {
    transform: translateX(-80px) scale(0.9);
  }
  60% {
    transform: translateX(0) scale(1.04);
  }
  80% {
    transform: translateX(-6px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

@keyframes visionFromRightBounce {
  0% {
    transform: translateX(80px) scale(0.9);
  }
  60% {
    transform: translateX(0) scale(1.04);
  }
  80% {
    transform: translateX(6px) scale(1);
  }
  100% {
    transform: translateX(0) scale(1);
  }
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

.mobile-lang-select {
  margin: 20px;
  width: calc(100% - 40px);
  padding: 10px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}
[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}
[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}
[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}
[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}
[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }

  33% {
    content: ".";
  }

  66% {
    content: "..";
  }

  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }

  #preloader .loader-text {
    font-size: 11px;
  }
}

.applications-section {
  background: #ffffff;
}

.app-highlight {
  font-weight: 700;
  color: var(--primary-700);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.application-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.application-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(34, 197, 94, 0.4);
}

.application-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.application-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-2);
}

.application-text {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.application-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.application-tags li {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--neutral-100);
  font-size: var(--text-2xs);
  color: var(--neutral-700);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }

  50% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }

  33% {
    content: ".";
  }

  66% {
    content: "..";
  }

  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }

  #preloader .loader-text {
    font-size: 11px;
  }
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;

  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";

  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;

  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}

.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}

.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}

.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}

.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}

.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;

  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}

.products-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ecfdf5 45%, #f9fafb 100%);
}

.products-section .products-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow: hidden;
  padding: 10px 0;
}

.products-section .product-card {
  flex: 0 0 280px;
  max-width: 280px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.products-section .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
}

.products-section .product-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  z-index: 1;
}

.products-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}
.products-section .product-card:hover .product-image img {
  transform: scale(1.08);
}

.products-section .product-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.7);
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.products-section .product-overlay::before {
  color: #e5e7eb;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  content: "Product";
}

.products-section .product-card:nth-child(1) .product-overlay::before {
  content: "Mulch";
}
.products-section .product-card:nth-child(2) .product-overlay::before {
  content: "Stretch";
}
.products-section .product-card:nth-child(3) .product-overlay::before {
  content: "Shrink";
}
.products-section .product-card:nth-child(4) .product-overlay::before {
  content: "Shade";
}
.products-section .product-card:nth-child(5) .product-overlay::before {
  content: "Bio";
}
.products-section .product-card:nth-child(6) .product-overlay::before {
  content: "Food Pack";
}

.products-section .product-content {
  position: relative;
  padding: 14px 16px 18px;
  background: #ffffff;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 2;
}

.products-section .product-content h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
}

.products-section .product-content .btn {
  margin-top: 8px;
  align-self: flex-start;
  opacity: 1;
  visibility: visible;
  width: auto;
  display: inline-flex;
}

.products-section .product-content .btn i {
  transition: transform 0.25s ease;
}
.products-section .product-content .btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .products-section .product-card {
    flex: 0 0 240px;
    max-width: 240px;
  }
  .products-section .product-image {
    height: 170px;
  }
}
@media (max-width: 480px) {
  .products-section .products-grid {
    gap: 14px;
    padding-inline: 6px;
  }
}

html[lang="ta"] .page-title,
html[lang="ta"] .section-title {
  font-family: "Noto Sans Tamil", "Latha", sans-serif !important;
}

#languageSelector {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  margin-left: 15px;
}

[lang="hi"] body,
[lang="mr"] body {
  font-family: "Noto Sans Devanagari", "Inter", sans-serif !important;
}
[lang="gu"] body {
  font-family: "Noto Sans Gujarati", "Inter", sans-serif !important;
}
[lang="pa"] body {
  font-family: "Noto Sans Gurmukhi", "Inter", sans-serif !important;
}
[lang="ta"] body {
  font-family: "Noto Sans Tamil", "Inter", sans-serif !important;
}
[lang="te"] body {
  font-family: "Noto Sans Telugu", "Inter", sans-serif !important;
}
[lang="bn"] body {
  font-family: "Noto Sans Bengali", "Inter", sans-serif !important;
}

.page-header {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 60%),
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.8),
      rgba(15, 23, 42, 0.5)
    );
}

.page-header::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -60px;
  height: 120px;
  background: #f8fafc;
  transform: skewY(-4deg);
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 740px;
}

.page-header-content::before {
  content: "Leadership • Board • Advisors";
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: var(--space-2);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.25);
  color: #dcfce7;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.1vw, 3rem);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: var(--space-3);
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}
.page-subtitle {
  font-size: var(--text-base);
  color: rgba(241, 245, 249, 0.9);
  max-width: 540px;
  margin: 0 0 var(--space-4);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  color: var(--primary-200);
}
.breadcrumb a:hover {
  color: #ffffff;
}
.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-current {
  color: #ffffff;
  font-weight: 500;
}

.page-header-decoration {
  display: none;
}

.board-section {
  position: relative;
  background: radial-gradient(
    circle at top,
    #ecfdf5 0,
    #f8fafc 40%,
    #eef2ff 100%
  );
}

.board-section::before {
  display: none;
}

.chairman-card {
  position: relative;
  border-radius: var(--radius-2xl);
  background: #ffffff;
  padding: var(--space-8);
  margin-top: calc(var(--space-14) * -1);
  margin-bottom: var(--space-8);
  border: 1px solid var(--neutral-100);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
}

.chairman-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -40px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-400), transparent);
}

.chairman-inner {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.chairman-image {
  flex-shrink: 0;
}
.chairman-image img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 3px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.chairman-card:hover .chairman-image img {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.35);
}

.chairman-badge {
  position: absolute;
  inset: auto auto auto auto;
  display: none;
}

.chairman-content {
  flex: 1;
}
.chairman-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.chairman-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-1);
}
.chairman-position {
  font-size: var(--text-sm);
  color: var(--primary-700);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.chairman-description {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.9;
}
.chairman-action {
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .chairman-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .chairman-image img {
    width: 140px;
    height: 180px;
  }
}

.members-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.member-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
}

.member-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 3px solid var(--primary-100);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.member-card:hover .member-image img {
  transform: translateY(-4px);
  border-color: var(--primary-400);
}

.member-overlay {
  display: none;
}

.member-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--neutral-900);
}
.member-position {
  font-size: var(--text-xs);
  color: var(--neutral-600);
  font-weight: 500;
}

.role-badge {
  margin-top: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: var(--text-2xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.member-card:hover::before {
  opacity: 1;
}

@media (max-width: 1200px) {
  .members-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 720px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: var(--radius-2xl);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 2001;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.8);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  padding: var(--space-6);
  position: relative;
}
.modal-header::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  cursor: pointer;
  z-index: 1;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.modal-profile {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.modal-image {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.modal-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-1);
}
.modal-info p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.modal-body {
  padding: var(--space-6);
  max-height: 380px;
  overflow-y: auto;
}
.modal-body p {
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.9;
  text-align: justify;
}
.modal-body p + p {
  margin-top: var(--space-3);
}

.modal-body::-webkit-scrollbar {
  width: 6px;
}
.modal-body::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: 999px;
}
.modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-300);
  border-radius: 999px;
}

@media (max-width: 992px) {
  .page-header {
    padding: var(--space-16) 0 var(--space-12);
  }
  .page-title {
    font-size: var(--text-3xl);
  }

  .message-container {
    margin-top: calc(var(--space-10) * -1);
    padding: var(--space-6);
  }

  .message-grid {
    flex-direction: column;
  }

  .profile-sidebar {
    flex: 1 1 auto;
    max-width: 100%;
    order: -1;
  }

  .profile-card {
    max-width: 400px;
    margin: 0 auto var(--space-5);
  }
}

@media (max-width: 768px) {
  .modal-header {
    padding: var(--space-5);
  }
  .modal-profile {
    flex-direction: column;
    text-align: center;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-container::before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #15803d;
  margin-bottom: 4px;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

#preloader .loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  min-width: 220px;
}

#preloader .loader-logo {
  width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 4px;
}

#preloader .loader-container::before {
  content: none !important;
}

#preloader .loader {
  position: relative;
  width: 160px;
  height: 7px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

#preloader .loader::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 0 16px rgba(22, 163, 74, 0.6);
  animation: preloader-bar-move 1.2s ease-in-out infinite;
}

#preloader .loader-text {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #14532d;
  text-align: center;
}

#preloader .loader-text::after {
  content: "...";
  animation: preloader-dots 1.4s steps(3, end) infinite;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloader-bar-move {
  0% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes preloader-dots {
  0% {
    content: "";
  }
  33% {
    content: ".";
  }
  66% {
    content: "..";
  }
  100% {
    content: "...";
  }
}

@media (max-width: 480px) {
  #preloader .loader {
    width: 140px;
  }
  #preloader .loader-text {
    font-size: 11px;
  }
}

.board-philosophy-section {
  background: #0f172a;
}

.board-philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: var(--space-10);
  align-items: flex-start;
}

.board-philosophy-text {
  color: #e5e7eb;
}

.philosophy-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #f9fafb;
  margin-bottom: var(--space-3);
}

.philosophy-desc {
  font-size: var(--text-sm);
  color: #cbd5f5;
  line-height: 1.8;
}

.board-philosophy-steps {
  position: relative;
  padding-left: var(--space-6);
  border-left: 2px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.philosophy-item {
  position: relative;
  display: flex;
  gap: var(--space-3);
  color: #e5e7eb;
}

.philosophy-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.philosophy-step-number {
  font-size: var(--text-lg);
  font-weight: 700;
  color: #a5f3fc;
  min-width: 2.5rem;
}

.philosophy-step-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #f9fafb;
  margin-bottom: 2px;
}

.philosophy-step-text {
  font-size: var(--text-xs);
  color: #cbd5f5;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .board-philosophy-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-6);
  }
  .board-philosophy-steps {
    margin-top: var(--space-2);
  }
}

.board-philosophy-section {
  background: #f8fafc;
}

.board-philosophy-inner {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  padding: var(--space-6);
}

.board-philosophy-text {
  color: #111827;
}

.philosophy-label {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.philosophy-title {
  color: #111827;
}

.philosophy-desc {
  color: #4b5563;
}

.board-philosophy-steps {
  border-left: 2px solid #e5e7eb;
}

.philosophy-item {
  color: #111827;
}

.philosophy-item::before {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.philosophy-step-number {
  color: #15803d;
}

.philosophy-step-title {
  color: #111827;
}

.philosophy-step-text {
  color: #4b5563;
}

@media (max-width: 992px) {
  .board-philosophy-inner {
    padding: var(--space-5);
  }
}

.board-philosophy-steps {
  gap: var(--space-5, 1.25rem);
}

.philosophy-item {
  margin-bottom: 4px;
}

.philosophy-desc {
  line-height: 1.9;
  margin-bottom: var(--space-3, 0.75rem);
}

.philosophy-step-text {
  line-height: 1.9;
}

.board-philosophy-steps {
  padding-left: var(--space-7, 1.75rem);
}

.header nav {
  background: #ffffff;
  padding: 6px 14px 10px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}

.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav-menu > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 6px 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.header .nav-menu > li > a span {
  font-size: 13px;
}

.header .nav-menu > li > a::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  content: "";
}

.header .nav-menu > li:nth-child(1) > a::before {
  content: "\f015";
}

.header .nav-menu > li:nth-child(2) > a::before {
  content: "\f1ad";
}

.header .nav-menu > li:nth-child(3) > a::before {
  content: "\f0c0";
}

.header .nav-menu > li:nth-child(4) > a::before {
  content: "\f49e";
}

.header .nav-menu > li:nth-child(5) > a::before {
  content: "\f03e";
}

.header .nav-menu > li:nth-child(6) > a::before {
  content: "\f0e0";
}

.header .nav-menu > li:last-child {
  margin-left: 8px;
}

.header .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 18px;
  height: 7px;
  background: #16a34a;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header .nav-menu > li > a:hover {
  color: #16a34a;
  transform: translateY(-3px);
}
.header .nav-menu > li > a:hover::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li > a:hover::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li.active > a {
  color: #15803d;
  font-weight: 600;
}
.header .nav-menu > li.active > a::before {
  transform: translateY(-1px) scale(1.05);
}
.header .nav-menu > li.active > a::after {
  transform: translateX(-50%) scaleY(1);
  opacity: 1;
}

.header .nav-menu > li:nth-child(2) {
  position: relative;
}
.header .nav-menu > li:nth-child(2) > a i {
  display: none;
}

@media (max-width: 992px) {
  .header nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .header .nav-menu {
    display: none;
  }
}

.header nav {
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header .header-inner {
  padding: 10px 0;
}

.header .nav-menu > li > a {
  padding-top: 8px;
  padding-bottom: 10px;
}
/* --- NEW VISUAL ENHANCEMENTS END --- */
@keyframes spinFast {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-image:hover .spin-fast {
  animation: spinFast 0.5s linear;
}
.flip-card {
  perspective: 1000px;
  position: relative;
  height: 230px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

.flip-back {
  transform: rotateY(180deg);
}
