/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 03 2026 | 09:11:18 */
/* Layout Context & Container */
.supply-team-section {
  padding: 80px 20px;
  /* Soft, non-plain gradient background from white to light gray */
  background: linear-gradient(91deg, #ffffff 0%, #e6f5dbc9 100%);
  font-family: Arial, sans-serif;
}

.supply-team-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Balanced 50/50 split layout */
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center; /* Centers items vertically relative to columns */
}

/* Modern Header Style with Bottom Separator Line */
.section-title {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

/* Custom Separator Line using Palette Green (#018400) */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #018400;
  border-radius: 2px;
}

/* ================= LEFT SIDE: CAROUSEL TRACK ================= */
.custom-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  flex: 0 0 50%; 
  padding: 8px;
  box-sizing: border-box;
  display: flex;
  justify-content: center; /* Centers image horizontally inside slide frame */
  align-items: center;     /* Centers image vertically inside slide frame */
}

.carousel-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Centers image crop frame automatically */
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: block;
}

.carousel-slide img:hover {
  opacity: 0.9;
  transform: scale(0.99);
}

/* Slide Nav Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background-color 0.2s;
}

.carousel-btn:hover {
  background-color: #f59e0b; /* Accent Palette Amber */
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Carousel Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dot.active {
  background-color: #f59e0b; 
}

/* ================= RIGHT SIDE: COMPACT GRID LIST ================= */
.supply-intro {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 5px;
  margin-bottom: 25px;
}

.supply-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Forces two perfectly split columns */
  gap: 16px 24px; /* Row and column gaps */
}

.supply-list li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef0f2; /* Subtle underline across dynamic rows */
}

.list-icon {
  color: #018400; /* Palette Green Checkmarks */
  font-weight: bold;
  margin-right: 10px;
  font-size: 15px;
  flex-shrink: 0;
}

/* ================= INTERACTION SYSTEM: MODAL LIGHTBOX ================= */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.5);
  animation: zoomEffect 0.25s ease-out;
}

@keyframes zoomEffect {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-modal {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: color 0.2s;
  cursor: pointer;
}

.close-modal:hover {
  color: #f59e0b;
}

#lightboxCaption {
  margin: auto;
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  font-size: 16px;
}

/* ================= MEDIA RESPONSIVENESS OVERRIDES ================= */
@media (max-width: 992px) {
  .supply-team-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .supply-list {
    grid-template-columns: 1fr; /* Switch safely back to single column list on tiny screens */
    gap: 12px;
  }
  .carousel-slide {
    flex: 0 0 100%;
  }
  .lightbox-content {
    max-width: 95%;
  }
}