
    :root {
  --primary: #2e7d32;
  --primary-light: #4caf50;
  --highlight: #ffbe00;
  --dark-bg: #25602c;
  --dark-footer: #29462c;
  --text-dark: #333;
  --text-light: #777;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  
  /* === Background Styles Start === */
  background-color: #f9fef9; /* A very light green background */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(46, 125, 50, 0.07) 1px, transparent 0);
  background-size: 30px 30px;
  /* === Background Styles End === */

  scroll-behavior: smooth;
  color: var(--text-dark);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* to ensure all containers stay within viewport */
.container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  /* Add this to fix potential overflow issues */
  body {
    position: relative;
    width: 100%;
  }
  
  /* Ensure all sections don't cause overflow */
  .section, .contact-section {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px);
  }
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  position: relative;
  margin: 0 8px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: var(--highlight);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.logo-img {
  height: 50px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.navbar-brand:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

/* Fix for navbar toggler */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  left: 0;
  transition: all 0.3s ease;
}
.navbar-toggler-icon::before {
  transform: translateY(-6px);
}
.navbar-toggler-icon::after {
  transform: translateY(6px);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: auto;
  min-height: 90vh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(46,125,50,0.1) 0%, rgba(255,255,255,0.1) 100%);
  margin-top: 70px;
  padding: 2rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: url('images/farm-seed.jpg') center/cover no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  text-align: center;
}

.hero-text {
  flex: 1;
  max-width: 100%;
  padding: 1.5rem;
  background-color: rgba(255,255,255,0.85);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  margin-bottom: 2rem;
}

.hero-title-line {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-title-main {
  display: block;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(to right, #2e7d32, #4caf50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 8s ease infinite;
  background-size: 200% 200%;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding: 2rem;
  background-color: rgba(255,255,255,0.85);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}

.hero-title-line {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero-title-main {
  display: block;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--highlight);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(to right, #2e7d32, #4caf50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes titleGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.highlight-text {
  color: var(--highlight);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--highlight);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.hero-subtitle:hover .highlight-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: var(--highlight);
  color: #333;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(255,190,0,0.3);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary:hover {
  background-color: #e6ac00;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255,190,0,0.4);
}

.btn-hero-primary::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: 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-secondary {
  background-color: transparent;
  color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(46,125,50,0.2);
}

.hero-image-container {
  position: relative;
  flex: 1;
  max-width: 600px;
  margin-left: 3rem;
}

.hero-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: perspective(1000px) rotateY(0deg);
}


.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  z-index: 2;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(-10px); }
  60% { transform: rotate(45deg) translateY(-5px); }
}

/* Stats Section - Modern */
.stats-section {
  /* background-color: #f7fdf7; */
  /* background-image:
    radial-gradient(circle at 1px 1px, rgba(46, 125, 50, 0.1) 1px, transparent 0); */
  background-size: 25px 25px;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.stats-section .section-header h2 span {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-section .section-header h2 {
    color: var(--text-dark); /* Fallback color */
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px 0 rgba(46, 125, 50, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px 0 rgba(46, 125, 50, 0.15);
}

.stat-card .stat-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 15px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease-in-out;
}

.stat-card:hover .stat-icon {
  transform: rotate(10deg) scale(1.1);
}

.stat-content {
  text-align: left;
}

h3.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 0 0 0.5rem 0;
  position: relative;
  display: inline-block;
}

h3.stat-number::after {
  content: '+';
  position: absolute;
  top: 0;
  right: -25px;
  font-size: 2rem;
  font-weight: 600;
  color: var(--highlight);
}

p.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 576px) {
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .stat-content {
    text-align: center;
  }
  h3.stat-number::after {
    right: -20px;
    font-size: 1.5rem;
  }
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46,125,50,0.05) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: all 0.3s ease;
}

.stat-wave, .counting-complete .stat-number::after {
  display: none;
}

/* Remove the pulse animation */
@keyframes statPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.stat-card:hover {
  animation: statPulse 2s ease-in-out infinite;
}
/* Sections */
.section {
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--highlight));
}

.section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--highlight);
}

 /* Vision & Mission Section - Modern Redesign */
#vision-mission {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9f5e9 100%); */
  position: relative;
  overflow: hidden;
}


.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradient 8s ease infinite;
  background-size: 200% 200%;
}

.value-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(46,125,50,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(46,125,50,0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: rgba(46,125,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: white;
  transform: rotate(15deg) scale(1.1);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.value-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

.value-card:hover h3::after {
  width: 80px;
}

.value-content p, .value-content li {
  color: var(--text-dark);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.value-content ul {
  list-style: none;
  padding-left: 0;
}

.value-content li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.value-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--highlight);
  position: absolute;
  left: 0;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .value-card {
    padding: 1.8rem;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .value-content li {
    padding-left: 1.8rem;
  }
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

 /* Products Tab Section */
#productTabs {
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 0 2rem;
}

#productTabs .nav-item {
  margin: 0 10px;
}

#productTabs .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 0;
  position: relative;
  background: transparent !important;
  border: none;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  margin: 0 15px;
  transition: color 0.3s ease;
}

#productTabs .nav-link:hover {
  color: var(--primary);
}

#productTabs .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Yellow highlight underline */
#productTabs .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

#productTabs .nav-link:hover::after,
#productTabs .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

#productTabs .nav-link i {
  margin-right: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #productTabs {
    justify-content: space-between;
  }
  
  #productTabs .nav-item {
    margin: 0;
    flex: 1;
  }
  
  #productTabs .nav-link {
    margin: 0;
    padding: 12px 5px;
    font-size: 0.9rem;
    justify-content: center;
  }
  
  #productTabs .nav-link i {
    margin-right: 5px;
    font-size: 0.9rem;
  }
}

/* Founders & Directors Section */
.founders-section, .directors-section {
  margin-top: 3rem;
}

.founder-card, .director-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.founder-image, .director-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 10px;
}

.founder-image img, .director-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.founder-image:hover img, .director-image:hover img {
  transform: scale(1.03);
}

.founder-info, .director-info {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
}

.founder-info h3, .director-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}

.founder-info h3::after, .director-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--highlight);
}

.founder-info p, .director-info p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.founder-role, .director-role {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: block;
}

/* Carousel Buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(46,125,50,0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#achievementCarousel:hover .carousel-control-prev,
#achievementCarousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Achievements Styles */
.hover-lift {
  transition: all 0.25s ease;
  border: 1px solid rgba(46, 125, 50, 0.1) !important;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(46, 125, 50, 0.1) !important;
}

.icon-wrapper {
  transition: all 0.3s ease;
}

.card:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

   /* Awards Section */
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.award-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--highlight);
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.award-icon {
  width: 50px;
  height: 50px;
  background: rgba(46,125,50,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.award-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.award-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.award-carousel-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  
  .award-item {
    padding: 1rem;
    gap: 1rem;
  }
  
  .award-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Gallery Section */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  transition: all 0.5s ease;
  padding: 10px;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46,125,50,0.9);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Contact Section */
.contact-section h2, .contact-section h3 {
  color: var(--primary);
}

.contact-section {
  background-color: #fff;
  padding: 4rem 1rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-card {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
}

.contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  width: 40px;
  text-align: center;
}

.map-container {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* Footer Styles */
.new-footer {
  background-color: var(--dark-bg);
  color: white;
  padding: 4rem 0 1rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 2rem;
  padding: 0 15px;
}

.footer-column h3 {
  color: var(--highlight);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--highlight);
}

.footer-column p, .footer-column a {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.8rem;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  color: white;
  background-color: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--highlight);
  color: var(--dark-bg);
  transform: translateY(-3px) rotate(5deg);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  background-color: var(--dark-footer);
  margin-top: 2rem;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255,255,255,0.1);
  margin: 2rem auto;
  max-width: 1200px;
}

/* Floating Buttons */
.whatsapp-link {
  text-decoration: none;
}

.floating-btn {
  position: fixed;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn {
  left: 20px;
  bottom: 20px;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: scale(1.1) rotate(5deg);
  animation: none;
}

.back-to-top {
  right: 20px;
  bottom: 20px;
  background-color: var(--primary);
  color: white;
  font-size: 20px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #1b5e20;
  transform: scale(1.1) rotate(5deg);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Particles Animation */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background-color: rgba(46,125,50,0.2);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title-main {
    font-size: 3.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 0px;
  }
  
  .hero-text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .hero-image-container {
    margin-left: 0;
    max-width: 500px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-title-line {
    font-size: 1.5rem;
  }
  
  .hero-title-main {
    font-size: 3.5rem;
  }
  
  .founder-card, .director-card {
    flex-direction: column;
  }
  
  .founder-image, .director-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 700px;
  }
  
  .hero-title-main {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn-hero-primary, 
  .btn-hero-secondary {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  
  .floating-badge {
    width: 100px;
    height: 100px;
  }
  
  .badge-number {
    font-size: 2rem;
  }
  
  .footer-column {
    flex: 100%;
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-btn {
    left: 15px;
    bottom: 15px;
    font-size: 25px;
  }
  
  .back-to-top {
    right: 15px;
    bottom: 15px;
    font-size: 18px;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title-main {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-hero-primary, 
  .btn-hero-secondary {
    width: 100%;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .founder-info, .director-info {
    padding: 0;
  }
  
  .gallery-img {
    height: 200px;
  }
}



/* Products Section Fixes */
#productTabsContent {
  overflow: hidden;
  width: 100%;
}

.tab-content {
  width: 100%;
}

.tab-pane {
  width: 100%;
  overflow: hidden;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  #productTabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  
  #productTabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  #productTabs .nav-item {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  
  .product-item {
    min-width: 0;
  }
}

/* Awards Section Fixes */
#achievementCarousel {
  height: 400px; /* Fixed height */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

#achievementCarousel .carousel-item {
  height: 100%;
  position: relative;
}

#achievementCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain to show full image */
  background-color: #f8f9fa; /* Background for transparent areas */
}

.award-carousel-container {
  height: auto;
  min-height: 400px;
}

.award-description {
  margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  #achievementCarousel {
    height: 350px;
  }
}

@media (max-width: 768px) {
  #achievementCarousel {
    height: 300px;
  }
}

@media (max-width: 576px) {
  #achievementCarousel {
    height: 250px;
  }
}