/* Home Page – NAFED‑Inspired Styles */

/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-top: 0;
}
.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.hero-nav:hover { background: var(--color-white); color: var(--color-primary); }
.hero-nav.prev { left: 30px; }
.hero-nav.next { right: 30px; }

/* Our Business Box inside Hero */
.hero-business-box {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: #f4f6f8;
  border-radius: 60px;
  padding: 15px 25px;
  z-index: 10;
  width: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hbb-top {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #555;
  gap: 10px;
  margin-bottom: 15px;
}
.hbb-top i { font-size: 16px; }
.hbb-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.hbb-icons > img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hbb-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.hbb-logo img { width: 32px; height: auto; border: none; border-radius: 0; }
.hbb-logo span { font-size: 8px; font-weight: 700; color: var(--color-secondary); text-align: center; line-height: 1.1; margin-top: 4px; }


/* ===========================
   STATS COUNTER SECTION
   =========================== */
.stats-section {
  background: linear-gradient(135deg, #1a3a1a 0%, #0d3c1e 50%, #0a4f32 100%);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  background-size: 20px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(140, 198, 63, 0.3);
}
.stat-number::after {
  content: '+';
  font-size: 36px;
  color: var(--color-secondary);
  margin-left: 2px;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.5;
}
.stat-label span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { font-size: 42px; }
}

/* ===========================
   WHY RAMSAAGRO
   =========================== */
.why-ramsa-section {
  padding: 80px 0;
  background: var(--color-white);
}
.why-ramsa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-ramsa-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}
.why-ramsa-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.why-ramsa-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.why-ramsa-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.why-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.why-slide.active {
  opacity: 1;
}

.why-ramsa-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  background: linear-gradient(transparent, rgba(26, 58, 26, 0.85));
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.why-ramsa-dots {
  position: absolute;
  bottom: 70px;
  left: 30px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.why-dot.active {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 968px) {
  .why-ramsa-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-ramsa-content h2 { font-size: 32px; }
}


/* ===========================
   ABOUT US – SPLIT LAYOUT
   =========================== */
.split-layout { display: flex; gap: 60px; align-items: center; }
.split-content { flex: 1; position: relative; }
.split-image-wrap { flex: 1; max-height: 450px; overflow: hidden; border-radius: 16px; }
.split-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.nafed-subtitle {
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.text-center .nafed-subtitle { justify-content: center; }
.nafed-subtitle .dots {
  display: inline-flex;
  gap: 5px;
}
.nafed-subtitle .dots::before,
.nafed-subtitle .dots::after,
.nafed-subtitle .dots span {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.nafed-subtitle .dots::after { background-color: var(--color-secondary); }

.nafed-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 25px;
}
.nafed-desc {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 90%;
}


/* ===========================
   +20 YEARS GRAPHIC (FIXED)
   =========================== */
.years-graphic {
  display: inline-flex;
  align-items: baseline;
  font-weight: 800;
  position: relative;
  margin-top: 10px;
  padding: 15px 0;
}
.years-graphic .plus {
  font-size: 72px;
  line-height: 1;
  color: var(--color-primary);
  margin-right: 0;
}
.years-graphic .year-num {
  font-size: 120px;
  line-height: 1;
  color: var(--color-secondary);
  font-weight: 800;
  font-family: var(--font-heading);
}
.years-graphic .year-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-left: 10px;
  align-self: flex-end;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ===========================
   OUR SERVICES CAROUSEL
   =========================== */
.services-carousel-section {
  padding: 80px 0;
  background: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.services-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px;
}
.services-carousel::before,
.services-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.services-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white), transparent);
}
.services-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white), transparent);
}

.services-carousel-track {
  display: flex;
  gap: 28px;
  animation: svcScroll 24s linear infinite;
  width: max-content;
  will-change: transform;
}
.services-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes svcScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 14px)); }
}

.service-carousel-card {
  flex: 0 0 300px;
  background: var(--color-bg-light);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}
.service-carousel-card:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(140, 198, 63, 0.12);
}

.service-carousel-icon {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1;
}

.service-carousel-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.service-carousel-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .service-carousel-card {
    flex: 0 0 250px;
    padding: 30px 20px;
  }
}


/* ===========================
   OUR BUSINESS – REDESIGNED HEX GRID
   =========================== */
.business-hex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 30px;
}
.biz-hex-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.biz-hex-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(8, 140, 66, 0.18);
}
.biz-hex-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.biz-hex-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}
.biz-hex-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.biz-hex-card:hover .biz-hex-img img {
  transform: scale(1.1);
}
.biz-hex-body {
  padding: 28px 24px 24px;
  position: relative;
  flex: 1;
}
.biz-hex-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: absolute;
  top: -28px;
  left: 24px;
  border: 4px solid var(--color-white);
  box-shadow: 0 6px 18px rgba(140, 198, 63, 0.3);
  transition: all 0.3s ease;
}
.biz-hex-card:hover .biz-hex-icon {
  transform: rotate(-8deg) scale(1.1);
}
.biz-hex-body h4 {
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 16px;
  color: var(--color-text-dark);
  font-weight: 700;
}
.biz-hex-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
}


/* ===========================
   GROUNDNUT R&D – REDESIGNED
   =========================== */
.groundnut-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fdf4 0%, #eef6e5 50%, #f4f6f8 100%);
  overflow: hidden;
}
.groundnut-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.06);
  z-index: 0;
}
.groundnut-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(8, 140, 66, 0.05);
  z-index: 0;
}
.groundnut-section .container {
  position: relative;
  z-index: 1;
}
.groundnut-header {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.groundnut-header-text {
  flex: 1;
}
.groundnut-header-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  position: relative;
}
.groundnut-header-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.groundnut-header-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8, 140, 66, 0.15), transparent);
  pointer-events: none;
}
.groundnut-stat-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.groundnut-stat-badge .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  font-family: var(--font-heading);
}
.groundnut-stat-badge .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
}

/* Groundnut Feature Cards */
.groundnut-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.groundnut-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(140, 198, 63, 0.15);
}
.groundnut-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--color-primary);
}
.groundnut-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: 4px 0 0 4px;
}
.groundnut-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(140, 198, 63, 0.12), rgba(8, 140, 66, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.groundnut-card:hover .groundnut-card-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
}
.groundnut-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}
.groundnut-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}


/* ===========================
   EMPOWERING FARMERS – REDESIGNED
   =========================== */
.farmer-empower-section {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #1a3a1a 0%, #0d2e0d 100%);
  overflow: hidden;
}
.farmer-empower-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/groundnut_field.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}
.farmer-empower-section .container {
  position: relative;
  z-index: 1;
}
.farmer-empower-header {
  text-align: center;
  margin-bottom: 60px;
}
.farmer-empower-header .subtitle-handwritten {
  color: var(--color-primary);
}
.farmer-empower-header h2 {
  color: var(--color-white);
  font-size: 42px;
  margin-top: 8px;
}
.farmer-empower-header p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
}

.farmer-empower-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.farmer-empower-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.farmer-empower-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.farmer-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.farmer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.farmer-empower-card:hover .farmer-card-image img {
  transform: scale(1.08);
}
.farmer-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}
.farmer-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.farmer-card-body i {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(140, 198, 63, 0.3));
}
.farmer-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.farmer-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}


/* ===========================
   SUSTAINABLE FARMING
   =========================== */
/* Info Boxes */
.info-boxes { display: flex; gap: 30px; margin-top: 40px; }
.info-box { 
  background: var(--color-bg-light); border-left: 3px solid var(--color-secondary); 
  padding: 30px; border-radius: 0 var(--radius-card) var(--radius-card) 0; flex: 1;
  transition: var(--transition);
}
.info-box:hover { background: var(--color-white); border-color: var(--color-primary); }


/* ===========================
   PARTNERS & CERTIFICATES
   =========================== */
.partners-certs-section {
  padding: 80px 0;
  background-color: var(--color-white);
}

.pc-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.pc-row:last-child {
  margin-bottom: 0;
}

.pc-title-col {
  flex: 0 0 250px;
  text-align: right;
  padding-right: 40px;
  border-right: 2px solid #ccc;
}

.pc-title-col h3 {
  font-size: 26px;
  color: #444;
  font-weight: 700;
  margin: 0;
}

.pc-logos-col {
  flex: 1;
  padding-left: 40px;
}

.pc-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.pc-logos-grid img {
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
}

.pc-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 15px;
  font-weight: 800;
  color: var(--color-secondary);
  font-size: 22px;
}

@media (max-width: 768px) {
  .pc-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pc-title-col {
    flex: none;
    text-align: left;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 2px solid #ccc;
    width: 100%;
    margin-bottom: 30px;
  }
  .pc-logos-col {
    padding-left: 0;
  }
}


/* ===========================
   BENEFIT LIST (R&D / BIO Sections)
   =========================== */
.benefit-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-list .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(140, 198, 63, 0.15), rgba(8, 140, 66, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-secondary);
}
.benefit-list h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--color-text-dark);
}
.benefit-list p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}


/* ===========================
   HERO OVERLAY TEXT
   =========================== */
.hero-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 60px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  z-index: 5;
}
.hero-overlay-text h1 {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  margin-bottom: 10px;
  line-height: 1.2;
}
.hero-overlay-text p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}


/* ===========================
   MANAGEMENT & CORE TEAM
   =========================== */
.team-section {
  background: var(--color-white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(8, 140, 66, 0.15);
}
.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.team-social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(8, 140, 66, 0.9), transparent);
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.team-card:hover .team-social-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-social-overlay a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  transition: all 0.3s ease;
}
.team-social-overlay a:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}
.team-info {
  padding: 22px 16px;
}
.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 14px;
  color: var(--color-primary-dark);
  font-weight: 500;
}


/* ===========================
   LATEST NEWS & AWARDS
   =========================== */
.news-awards-section {
  background: var(--color-white);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.07);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.news-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.06);
}
.news-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-tag {
  display: inline-block;
  background: rgba(140, 198, 63, 0.12);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-light);
  flex: 1;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.3s ease;
}
.news-read-more:hover {
  color: var(--color-primary);
  gap: 10px;
}


/* ===========================
   COMPANY ADDRESS & MAP
   =========================== */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.map-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.map-info-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transform: translateX(4px);
}
.map-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(140, 198, 63, 0.12), rgba(8, 140, 66, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-secondary);
}
.map-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.map-info-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}
.map-info-card a {
  color: var(--color-secondary);
  font-weight: 500;
}
.map-info-card a:hover {
  color: var(--color-primary);
}
.map-embed {
  border-radius: 20px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.map-embed iframe {
  display: block;
  border-radius: 20px;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .business-hex-grid { grid-template-columns: repeat(2, 1fr); }
  .groundnut-features { grid-template-columns: repeat(2, 1fr); }
  .farmer-empower-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
  .hero-slider { height: 500px; }
  .split-layout { flex-direction: column; gap: 30px; }
  .reverse-split { flex-direction: column; }
  .nafed-title { font-size: 36px; }
  .years-graphic .plus { font-size: 50px; }
  .years-graphic .year-num { font-size: 80px; }
  .years-graphic .year-text { font-size: 18px; margin-bottom: 12px; }
  .info-boxes { flex-direction: column; }
  .groundnut-header { flex-direction: column; gap: 30px; }
  .groundnut-features { grid-template-columns: 1fr; }
  .hero-business-box { display: none; }
  .hero-overlay-text h1 { font-size: 26px; }
  .hero-overlay-text p { font-size: 15px; }
  .hero-overlay-text { padding: 40px 30px 30px; }
  .map-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 300px; }
  .msp-ticker-bar { height: 32px; }
  .msp-ticker-label { font-size: 11px; padding: 0 12px; }
  .msp-item { font-size: 12px; padding: 0 20px; }
}

@media (max-width: 640px) {
  .hero-slider { height: 350px; }
  .business-hex-grid { grid-template-columns: 1fr; }
  .farmer-empower-grid { grid-template-columns: 1fr; }
  .groundnut-header-image img { height: 260px; }
  .nafed-title { font-size: 28px; }
  .years-graphic .plus { font-size: 40px; }
  .years-graphic .year-num { font-size: 60px; }
  .ticker-title { padding: 0 15px; font-size: 13px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 180px; }
  .team-photo img { object-fit: contain; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-overlay-text h1 { font-size: 20px; }
  .hero-overlay-text p { font-size: 13px; }
  .hero-overlay-text { padding: 30px 20px 20px; }
}


/* ===========================
   ABOUT US – OPEN LAYOUT
   =========================== */
.about-open {
  padding: 80px 0;
  background: var(--color-white);
}

.about-open-top {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-open-text {
  flex: 1;
}

.about-open-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.about-open-reg {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.about-open-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.about-open-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.about-open-cta:hover {
  gap: 14px;
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.about-open-image {
  flex: 1;
  max-width: 480px;
}
.about-open-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

/* Mission + Vision – open text, no cards */
.about-open-bottom {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.about-mv-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0;
}
.about-mv-item:first-child {
  padding-right: 32px;
}
.about-mv-item:last-child {
  padding-left: 32px;
}

.about-mv-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.about-mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}
.about-mv-icon.mission-accent {
  background: rgba(139, 195, 74, 0.12);
  color: var(--color-secondary);
}
.about-mv-icon.vision-accent {
  background: rgba(46, 125, 50, 0.10);
  color: var(--color-deep-green);
}

.about-mv-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.about-mv-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .about-open-top {
    flex-direction: column;
    gap: 36px;
  }
  .about-open-image {
    max-width: 100%;
  }
  .about-open-heading {
    font-size: 32px;
  }
  .about-open-bottom {
    flex-direction: column;
    gap: 32px;
  }
  .about-mv-divider {
    width: 100%;
    height: 1px;
  }
  .about-mv-item {
    padding: 0;
  }
}

