:root {
  /* Primary Colors */
  --primary-green: #2d7d32;
  --primary-light-green: #4caf50;
  --primary-dark-green: #1b5e20;
  --secondary-orange: #ff6f00;
  --secondary-light-orange: #ff9800;
  --secondary-dark-orange: #e65100;
  --accent-blue: #0277bd;
  --accent-light-blue: #03a9f4;
  --accent-dark-blue: #01579b;
  --neutral-brown: #5d4037;
  --neutral-light-brown: #8d6e63;
  --neutral-dark-brown: #3e2723;
  --highlight-yellow: #fbc02d;
  --highlight-light-yellow: #ffeb3b;
  --highlight-dark-yellow: #f57f17;
  
  /* Supporting Colors */
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --text-light: #ffffff;
  --text-dark: #333333;
  --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--primary-light-green));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--secondary-light-orange));
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-green) !important;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 100px 0 50px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../BEN_images/hero-grocery.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 80px 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--neutral-brown);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

/* Button Styles */
.btn {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Service Items */
.services-section .card {
  background: white;
  border: 1px solid rgba(45, 125, 50, 0.1);
}

.services-section .card-body {
  padding: 2rem;
}

.services-section .card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.services-section .card-text {
  margin-bottom: 1.5rem;
}

.services-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.services-section li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.services-section li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background: var(--light-bg);
}

.features-section .fa-2x {
  margin-bottom: 1rem;
}

.features-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Team Section */
.team-section .card {
  background: white;
  text-align: center;
}

.team-section .card-img-top {
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1rem auto;
  width: 200px;
}

.team-section .card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-section .card-text {
  font-size: 1rem;
  color: var(--neutral-brown);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-bg);
}

.reviews-section .card {
  background: white;
  border-left: 4px solid var(--primary-green);
}

.reviews-section .card-body {
  padding: 2rem;
}

.reviews-section .card-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.reviews-section .blockquote-footer {
  font-size: 0.9rem;
  color: var(--primary-green);
  font-weight: 500;
}

/* Process Steps */
.process-step {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Styles */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-green);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--primary-green);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-green);
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.timeline-content h4 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

/* Case Study Cards */
.casestudy-section .card {
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.casestudy-section .card:hover {
  transform: translateY(-5px);
}

/* Career Cards */
.career-section .card {
  border-left: 4px solid var(--primary-green);
  position: relative;
}

.career-section .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* Core Info Icons */
.coreinfo-section i {
  margin-bottom: 1rem;
}

.coreinfo-section h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section .card {
  border: none;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.blog-section .btn {
  margin-top: auto;
}

/* Gallery Styles */
#gallery img {
  transition: transform 0.3s ease;
  cursor: pointer;
}

#gallery img:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 500;
  color: var(--primary-green);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-green);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 1.5rem;
  background: white;
}

/* Contact Section */
.contact-section {
  background: var(--light-bg);
}

.form-label {
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid rgba(45, 125, 50, 0.1);
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 125, 50, 0.25);
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h4 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 1rem;
  color: var(--primary-green);
  width: 20px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  padding: 100px 0 20px;
  background: var(--light-bg);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 0;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.breadcrumb-item:hover img {
  opacity: 1;
}

.breadcrumb-item.active img {
  opacity: 1;
}

/* Space Section */
.space-section {
  min-height: 80vh;
  background: var(--light-bg);
  padding: 120px 0;
}

.space-placeholder {
  background: white;
  padding: 4rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: 2px dashed var(--primary-green);
}

/* Impact Cards */
.impact-card {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

.impact-icon {
  margin-bottom: 1.5rem;
}

/* Counter Boxes */
.counter-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.counter-box h3 {
  color: var(--primary-green);
  font-weight: 700;
}

/* Footer */
footer {
  background: var(--dark-bg) !important;
  color: var(--text-light);
}

footer h5 {
  color: var(--primary-light-green);
  margin-bottom: 1rem;
}

footer a, footer p {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light-green);
}

/* Footer Disclaimer */
#site_disclaimer {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-green) !important;
}

.text-secondary {
  color: var(--secondary-orange) !important;
}

.bg-primary {
  background: var(--gradient-primary) !important;
}

.bg-light {
  background: var(--light-bg) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .card-img-top {
    height: 150px;
  }
  
  .team-section .card-img-top {
    height: 200px;
    width: 150px;
  }
  
  .timeline {
    padding-left: 1rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  section {
    padding: 40px 0;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .timeline-content {
    padding: 1rem;
  }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
