:root {
  --primary-green: #037333;
  --secondary-green: #4a7c59;
  --accent-green: #6ba368;
  --light-green: #a8d5ba;
  --dark-green: #1a3009;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

.duck-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(30, 60, 90, 0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  transition: box-shadow 0.2s;
}

@media (max-width: 600px) {
  .duck-chatbot {
    width: 100vw;
    max-width: 100vw;
    right: 0;
    bottom: 0;
  }
}

.duck-chatbot-header {
  background: linear-gradient(135deg, #1eae60, #047857);
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#duckChatbotClose {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4em;
  cursor: pointer;
  margin-left: 10px;
}

.duck-chatbot-messages {
  padding: 16px;
  background: #f8f9fa;
  flex: 1 1 auto;
  max-height: 320px;
  overflow-y: auto;
  font-size: 1em;
}

.duck-chatbot-msg {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 90%;
  word-break: break-word;
  line-height: 1.5;
}

.duck-chatbot-msg-bot {
  background: #e6f4ea;
  color: #037333;
  align-self: flex-start;
}

.duck-chatbot-msg-user {
  background: #1eae60;
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
}

.duck-chatbot-form {
  display: flex;
  border-top: 1px solid #e0ece4;
  background: #fff;
}

#duckChatbotInput {
  flex: 1 1 auto;
  border: none;
  padding: 12px 14px;
  font-size: 1em;
  border-radius: 0 0 0 16px;
  outline: none;
  background: #f8f9fa;
}

.duck-chatbot-form button {
  background: #1eae60;
  border: none;
  color: #fff;
  font-size: 1.2em;
  padding: 0 18px;
  border-radius: 0 0 16px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.duck-chatbot-form button:hover {
  background: #047857;
}

.duck-chatbot-open {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  background: #1eae60;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 1.1em;
  box-shadow: 0 4px 16px rgba(30, 60, 90, 0.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.duck-chatbot-open:hover {
  background: #047857;
}

@media (max-width: 600px) {

  .duck-chatbot,
  .duck-chatbot-open {
    right: 8px;
    bottom: 8px;
  }

  .duck-chatbot {
    width: 70vw;
    /* max-width: 98vw; */
  }
}

.duck-chatbot-suggestions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 10px 14px 0 14px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0ece4;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #e6f4ea #f8f9fa;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.duck-chatbot-suggestions::-webkit-scrollbar {
  height: 6px;
}

.duck-chatbot-suggestions::-webkit-scrollbar-thumb {
  background: #e6f4ea;
  border-radius: 8px;
}

.duck-suggestion {
  white-space: nowrap;
  background: #e6f4ea;
  color: #037333;
  border: none;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 0.98em;
  cursor: pointer;
  transition: background 0.2s;
  flex: 0 0 auto;
}

.duck-suggestion:hover {
  background: #1eae60;
  color: #fff;
}

@media (max-width: 600px) {
  .duck-chatbot-suggestions {
    flex-direction: row;
    gap: 6px;
    padding: 8px 6px 0 6px;
  }
}

/* Add to styles.css for Boiler Services section */
.boiler-services-section {
  background: linear-gradient(90deg, #f8f9fb 0%, #e0f7fa 100%);
  padding: 56px 0 32px 0;
}

.boiler-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
}

.boiler-service {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 12px;
  text-align: left;
  position: relative;
  margin-bottom: 24px;
}

.service-icon {
  font-size: 2.2em;
  color: #1fa463;
  margin-bottom: 12px;
  display: inline-block;
}

.boiler-service h3 {
  margin: 0 0 8px 0;
  font-size: 1.15em;
  color: #2563eb;
  font-weight: 700;
}

.boiler-service p {
  margin: 0 0 10px 0;
  color: #444;
  font-size: 1em;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .boiler-services-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .boiler-service {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
}

/* Product Series Section - Modern Design */

.product-series-section {
  width: 100%;
  color: #fff;
  font-family: Arial, sans-serif;
}

.product-container {
  display: flex;
  min-height: 500px;
}

/* Left Side */
.product-left {
  flex: 1;
  background: var(--primary-green);
  /* Red background */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.product-left p {
  margin-bottom: 30px;
  font-size: 16px;
}

.product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.product-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.product-btn:hover {
  background: #fff;
  color: var(--primary-green);
}



/* Right Side */
.product-right {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  /* align text to top */
  justify-content: flex-start;
  /* align to left */
  padding: 60px;
  background: center/cover no-repeat fixed;
  background-attachment: fixed;
  /* enables parallax */
  color: #fff;
  overflow: hidden;
}

/* Overlay (optional subtle tint) */
.product-right .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(3, 115, 51, 0.25);  */
  z-index: 1;
}

/* Text content */
.product-text {
  position: relative;
  z-index: 2;
  padding: 10px;
  /* max-width: 700px; */
}

/* List Styling */
.product-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-text ul li {
  margin: 14px 0;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  line-height: 50px;
  font-family: "Playfair Display", serif;
}

.product-text ul li i {
  color: #9fffb0;
  /* lighter accent of your green */
  font-size: 1.3rem;
}

@media (max-width: 900px) {
  .product-text ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Hover Effect */
.product-text ul li:hover {
  transform: translateX(6px);
  color: #eaffea;
}


.nav {
  margin-left: auto;
}

.products-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}

.products-slider {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: slideProducts 30s linear infinite;
}

.products-slider:hover {
  animation-play-state: paused;
  /* pause on hover */
}


.product-card {
  min-width: 320px;
  max-width: 320px;
  flex: 0 0 320px;
  /* ...your existing styles... */
}

@keyframes slideProducts {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .product-card {
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 260px;
  }

  .products-slider {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .products-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .products-slider {
    gap: 16px;
    width: max-content;
  }

  .product-card {
    min-width: 280px;
    max-width: 280px;
    flex: 0 0 280px;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-width: 250px;
    max-width: 250px;
    flex: 0 0 250px;
  }

  .products-slider {
    gap: 12px;
  }
}

.mobile-dropdown-link {
  text-decoration: none;
  color: black;
}

/* Dropdown styles */
.nav-item.dropdown {
  position: relative;
}

.nav-item .dropdown-toggle {
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.nav-item .dropdown-toggle:hover {
  color: var(--primary-green);
}

.nav-item .dropdown-toggle i {
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 1000;
  padding: 16px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: dropdownFadeIn 0.3s ease-out;
  list-style: none;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-subcategory {
  position: relative;
  border-bottom: 1px solid #f0f0f0;

}

.dropdown-subcategory:last-child {
  border-bottom: none;
}

.dropdown-subcategory:hover .subcategory-menu {
  display: block;

}

.subcategory-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: -16px;
  background: #fff;
  min-width: 140px;
  max-width: 280px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  z-index: 1001;
  padding: 16px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: dropdownFadeIn 0.3s ease-out;
  list-style: none;
}

.subcategory-menu.left {
  left: auto;
  right: 100%;
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.dropdown-link:hover {
  background: linear-gradient(135deg, rgba(3, 115, 51, 0.08), rgba(74, 124, 89, 0.08));
  color: var(--primary-green);
  padding-left: 28px;
}

.dropdown-link i {
  color: #999;
  transition: all 0.3s ease;
  font-size: 12px;
}

.dropdown-link:hover i {
  color: var(--primary-green);
  transform: translateX(2px);
}

.subcategory-menu a {
  display: block;
  padding: 12px 24px;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-size: 13px;
  border-left: 3px solid transparent;
}

.subcategory-menu a:hover {
  background: rgba(3, 115, 51, 0.05);
  color: var(--primary-green);
  padding-left: 28px;
  border-left-color: var(--primary-green);
}

.nav-item.dropdown:hover>.dropdown-menu {
  display: block;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 100%;
  }

  .subcategory-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin-top: 8px;
    margin-left: 20px;
  }

  .dropdown-link {
    padding: 16px 20px;
    font-size: 16px;
  }

  .subcategory-menu a {
    padding: 14px 20px 14px 40px;
    font-size: 15px;
  }
}

/* Add to styles.css for active link styling */
.nav-link.active,
.mobile-nav-link.active {
  color: var(--primary-green);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-green);
  /* background: linear-gradient(90deg, #e0f7fa 0%, #fff 100%); */
}

/* Add to styles.css for new product sections */

/* Product Categories */
.product-categories-section {
  background: white;
  padding: 48px 0;
}

.categories-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(30, 60, 90, 0.08);
  padding: 32px 24px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.category-card:hover {
  box-shadow: 0 8px 32px rgba(30, 60, 90, 0.13);
  transform: translateY(-6px) scale(1.03);
}

.category-icon {
  font-size: 2.2em;
  color: var(--primary-green);
  margin-bottom: 12px;
}

/* Why Choose Us */
.why-choose-section {
  background: #fff;
  padding: 48px 0;
}

.choose-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.choose-card {
  background: #f8f9fb;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30, 60, 90, 0.07);
  padding: 32px 24px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.choose-card:hover {
  box-shadow: 0 6px 24px rgba(30, 60, 90, 0.13);
  transform: translateY(-4px) scale(1.02);
}

.choose-icon {
  font-size: 2em;
  color: var(--primary-green);
  margin-bottom: 12px;
}


/* Add to styles.css for creative sections */

/* Vision & Mission */


.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  justify-content: center;
}

.vision-card,
.mission-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(30, 60, 90, 0.12);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(3, 115, 51, 0.1);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30, 60, 90, 0.15);
}

.vision-card h3,
.mission-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
  font-size: 1.4em;
  font-weight: 600;
}

.vision-card i,
.mission-card i {
  margin-right: 8px;
  color: var(--primary-green);
}

.vision-card p,
.mission-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 0;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vision-card,
  .mission-card {
    padding: 30px 20px;
  }

  .vision-card h3,
  .mission-card h3 {
    font-size: 1.2em;
  }

  .vision-card p,
  .mission-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .vision-mission-section {
    padding: 40px 0;
  }

  .vision-card,
  .mission-card {
    padding: 25px 15px;
  }

  .vision-card h3,
  .mission-card h3 {
    font-size: 1.1em;
  }
}

/* Timeline */
.timeline-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e6f4ea 100%);
}

.timeline {
  position: relative;
  margin: 40px auto 0 auto;
  max-width: 800px;
  padding: 0 20px;
}

.timeline-vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-green);
  border-radius: 2px;
  z-index: 0;
  transform: translateX(-50%);
  /* Animation */
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  animation: timelineLineGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes timelineLineGrow {
  to {
    transform: translateX(-50%) scaleY(1);
  }
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-green);
  border-radius: 50%;
  margin: 0 30px;
  box-shadow: 0 4px 12px rgba(30, 166, 99, 0.3);
  border: 4px solid #fff;
  z-index: 1;
  position: relative;
}

.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(3, 115, 51, 0.1);
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
  margin: 0 0 12px 0;
  color: var(--primary-green);
  font-size: 1.3em;
  font-weight: 600;
}

.timeline-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 0;
  }

  .timeline {
    max-width: 100%;
    padding: 0 15px;
  }

  .timeline-vertical-line {
    left: 30px;
    transform: translateX(0) scaleY(0);
    transform-origin: top;
  }

  @keyframes timelineLineGrow {
    to {
      transform: translateX(0) scaleY(1);
    }
  }

  .timeline-item {
    flex-direction: row !important;
    margin-bottom: 40px;
    align-items: flex-start;
  }

  .timeline-item .timeline-content {
    text-align: left !important;
  }

  .timeline-dot {
    margin: 6px 20px 0 0;
    flex-shrink: 0;
  }

  .timeline-content {
    padding: 20px;
    max-width: none;
  }

  .timeline-content h4 {
    font-size: 1.1em;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 40px 0;
  }

  .timeline-vertical-line {
    left: 20px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
    margin: 4px 15px 0 0;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-content h4 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }
}

.founder-section {
  /* padding: 80px 0 60px 0; */
  background: linear-gradient(135deg, #f8f9fa 0%, #e6f4ea 50%, #f8f9fa 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.founder-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(30, 60, 90, 0.15);
  border: 4px solid #fff;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 50px rgba(30, 60, 90, 0.2);
}

.founder-info {
  padding: 20px 0;
}

.founder-info h3 {
  color: var(--primary-green);
  font-size: 2em;
  margin-bottom: 8px;
  font-weight: 600;
}

.founder-role {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.founder-info p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.founder-signature img {
  height: 40px;
  opacity: 0.9;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }

  .founder-photo img {
    height: 240px;
  }

  .founder-info h3 {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 60px 0 40px 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .founder-photo img {
    height: 200px;
    max-width: 200px;
    margin: 0 auto;
  }

  .founder-info h3 {
    font-size: 1.4em;
  }

  .founder-role {
    font-size: 1.1em;
  }

  .founder-info p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .founder-section {
    padding: 40px 0 30px 0;
  }

  .founder-grid {
    gap: 20px;
  }

  .founder-photo img {
    height: 160px;
    max-width: 160px;
  }

  .founder-info h3 {
    font-size: 1.2em;
  }

  .founder-role {
    font-size: 1em;
  }

  .founder-info p {
    font-size: 0.95rem;
  }
}

/* Creative Stats */
.creative-stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
}

.creative-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.creative-stat {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30, 60, 90, 0.12);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(3, 115, 51, 0.08);
  position: relative;
  overflow: hidden;
}

.creative-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 115, 51, 0.05), transparent);
  transition: left 0.5s ease;
}

.creative-stat:hover::before {
  left: 100%;
}

.creative-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(30, 60, 90, 0.18);
}

.stat-icon {
  font-size: 3em;
  color: var(--primary-green);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.creative-stat:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5em;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .creative-stats-section {
    padding: 60px 0;
  }

  .creative-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .creative-stat {
    padding: 30px 20px;
  }

  .stat-icon {
    font-size: 2.5em;
  }

  .stat-number {
    font-size: 2.2em;
  }

  .stat-label {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .creative-stats-section {
    padding: 40px 0;
  }

  .creative-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .creative-stat {
    padding: 25px 15px;
  }

  .stat-icon {
    font-size: 2em;
  }

  .stat-number {
    font-size: 1.8em;
  }

  .stat-label {
    font-size: 0.95em;
  }
}

.spec-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

/* service support */
/* Add to styles.css */
.service-support-section {
  background-color: white;
  padding: 30px 0 40px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .service-support-section {
    padding: 60px 0 40px 0;
  }
}

@media (max-width: 480px) {
  .service-support-section {
    padding: 40px 0 30px 0;
  }
}

.service-support-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-support-header .section-badge {
  display: inline-block;
  background: #1fa463;
  color: #fff;
  padding: 6px 18px;
  border-radius: 18px;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.service-support-header .section-title {
  font-size: 2.3rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.service-support-header .section-subtitle {
  color: #475569;
  font-size: 1.15rem;
  margin-bottom: 0;
}

.service-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.support-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(30, 60, 90, 0.08);
  padding: 10px 17px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.support-card:hover {
  box-shadow: 0 8px 32px rgba(30, 60, 90, 0.13);
  transform: translateY(-6px) scale(1.03);
}

.support-icon {
  font-size: 2.5em;
  color: var(--primary-green);
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px #1fa46333);
}

.support-card h3 {
  font-size: 1.18em;
  color: var(--primary-green);
  margin-bottom: 10px;
  font-weight: 700;
}

.support-card p {
  color: #444;
  font-size: 1em;
  margin-bottom: 0;
}

.service-support-cta {
  text-align: center;
  margin-top: 24px;
}

.service-support-cta .btn-primary {
  font-size: 1.08em;
  padding: 12px 32px;
  border-radius: 24px;
  background: var(--primary-green);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.service-support-cta .btn-primary:hover {
  background: #178c4e;
}

@media (max-width: 700px) {
  .service-support-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-support-section {
    padding: 36px 0 24px 0;
  }
}

/* parallex effect */
/* Add to styles.css */
.parallax-tech {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -400px;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url('/images/hero6.jpg');
  background-size: cover;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s;
}

.parallax-tech .container,
.parallax-tech .section-header,
.parallax-tech .tech-grid {
  position: relative;
  z-index: 1;
}


.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #1fa463; */
  color: #fff;
  border-radius: 50%;
  /* width: 40px; */
  height: 40px;
  font-size: 1.2em;
  transition: background 0.2s;
  text-decoration: none;
}


.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6em;
  color: #1fa463;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-content {
    gap: 12px;
  }
}

/* Add to your styles.css */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.2em;
  color: #1fa463;
  transition: background 0.2s;
}

.testimonial-arrow.left {
  left: -20px;
}

.testimonial-arrow.right {
  right: -20px;
}

.testimonial-arrow:hover {
  background: #f0f0f0;
}

.testimonials-slider {
  position: relative;
}

/* Add to styles.css */
.header-phone {
  display: flex;
  align-items: center;
  margin-left: 20px;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.header-phone i {
  margin-right: 8px;
  font-size: 1.1em;
}

.header-phone:hover {
  color: var(--primary-green);
}

.button-cstm {
  padding: 10px;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
}

/* Hero Carousel Section */
.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
  padding-top: 90px;
}

@media (max-width: 768px) {
  .hero-carousel {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .hero-carousel {
    padding-top: 50px;
  }
}

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

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.6)); */
  z-index: 1;
}

/* .slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 20px;
} */

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-btn {
  position: relative;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-bg {
  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;
}

.hero-btn:hover .btn-bg {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Carousel Controls */
.carousel-nav {
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 30px;
}

.carousel-nav.next {
  right: 30px;
}

.carousel-nav i {
  color: white;
  font-size: 1.2rem;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 40px 20px;
  margin: 0 auto;
  background: rgba(3, 115, 51, 0.25);
  border-radius: 12px;

  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: bounce-arrow 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(5px);
  }

  60% {
    transform: rotate(45deg) translateY(3px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
  }

  .carousel-nav.prev {
    left: 20px;
  }

  .carousel-nav.next {
    right: 20px;
  }
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}

.container {
  max-width: 2200px;
  margin: 0 auto;
  padding: 0 70px;
}

/* Loading Screen */
.loading-screen {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  perspective: 1000px;
  margin-bottom: 30px;
}

.logo-3d {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotate3d 3s infinite linear;
  margin: 0 auto;
}

.logo-face {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
}

.logo-face.front {
  transform: rotateY(0deg) translateZ(50px);
}

.logo-face.back {
  transform: rotateY(180deg) translateZ(50px);
}

.logo-face.right {
  transform: rotateY(90deg) translateZ(50px);
}

.logo-face.left {
  transform: rotateY(-90deg) translateZ(50px);
}

.logo-face.top {
  transform: rotateX(90deg) translateZ(50px);
}

.logo-face.bottom {
  transform: rotateX(-90deg) translateZ(50px);
}

@keyframes rotate3d {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.loading-text {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.loading-letter {
  font-size: 1.5rem;
  font-weight: bold;
  animation: bounce 1.5s infinite;
}

.loading-letter:nth-child(1) {
  animation-delay: 0s;
}

.loading-letter:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-letter:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-letter:nth-child(4) {
  animation-delay: 0.3s;
}

.loading-letter:nth-child(5) {
  animation-delay: 0.4s;
}

.loading-letter:nth-child(6) {
  animation-delay: 0.5s;
}

.loading-letter:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--light-green), white);
  border-radius: 2px;
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    width: 0%;
  }

  50% {
    width: 70%;
  }

  100% {
    width: 100%;
  }
}

.loading-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Custom Cursor */
/* .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
} */

/* .cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
} */

/* .cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid var(--primary-green);
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
  opacity: 0.5;
} */

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  /* padding: 15px 0; */
}

.logo-container {
  position: relative;
  /* top: 3px; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  height: 70px;
  transition: transform var(--transition-normal);
}

@media (max-width: 600px) {
  .header {
    height: 50px;
  }

  .logo-img {
    height: 35px;
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.logo-container:hover .logo-glow {
  opacity: 0.3;
}

.logo-container:hover .logo-img {
  transform: scale(1.1);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  transition: color var(--transition-normal);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language,
.search,
.theme-toggle {
  cursor: pointer;
  color: var(--gray-600);
  transition: all var(--transition-normal);
  padding: 8px;
  border-radius: 50%;
  position: relative;
}

.language:hover,
.search:hover,
.theme-toggle:hover {
  color: var(--primary-green);
  background: rgba(45, 80, 22, 0.1);
  transform: scale(1.1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/images/hero1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Add overlay for better text readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(110, 110, 110, 0.144);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-particles {
  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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.25)"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.6));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px black;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px black;

}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* margin-bottom: 60px; */
  opacity: 0;
  transform: translateY(30px);
}

.hero-btn {
  position: relative;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-bg {
  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;
}

.hero-btn:hover .btn-bg {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: bounce-arrow 2s infinite;
}

@keyframes bounce-arrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(5px);
  }

  60% {
    transform: rotate(45deg) translateY(3px);
  }
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float-shape 20s infinite linear;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: -7s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 15px;
  line-height: 1.2;
  margin-top: 30px;
}

.section-title-invert {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: white;
  /* max-width: 600px; */
  /* margin: 0 auto; */
  line-height: 1.6;
  margin-bottom: 30px;
}

/* About Section */
.about-section {
  padding: 25 20px;
  background-color: white;
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 15px;
  }
}

.about-content {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  place-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  /* margin-bottom: 5px; */
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-description {
  margin-bottom: 30px;
}

.about-description p {
  margin-bottom: 20px;
  /* line-height: 1.8; */
  color: #000;
  font-weight: 600;
  font-size: 18px;
  padding-top:15px;
}

/* About section list and image layout */
.about-description .about-list-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.about-description .about-list {
  flex: 1;
  padding-left: 20px;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.about-description .about-image-container {
  flex-shrink: 0;
  margin-bottom: 37px;
  margin-right: 0;
}

.about-description .about-image {
  width: 190px;
  height: auto;
  margin-top: -50px;
}

@media (max-width: 768px) {
  .about-description .about-list-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .about-description .about-list {
    padding-left: 0;
    text-align: center;
  }

  .about-description .about-image-container {
    margin-bottom: 20px;
  }

  .about-description .about-image {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .about-description .about-list-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-description .about-list {
    padding-left: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  .about-description .about-image-container {
    margin-bottom: 15px;
  }

  .about-description .about-image {
    width: 100px;
  }
}

.about-visual {
  position: relative;
  overflow: hidden;
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  background-color: white;
  width: 100%;
  max-width: 427px;
  margin: 0 auto;
  /* Center the container */
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* transition: transform var(--transition-slow); */
}


.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-green);
  cursor: pointer;
  opacity: 0;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.about-image-container:hover .image-overlay {
  opacity: 1;
}

.about-image-container:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* .about-image-container:hover {
  transform: scale(1.05);
} */

/* Technology Section */
.technology-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .technology-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 40px 0;
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.tech-card {
  position: relative;
  padding: 20px 30px;
  background: #ffffff80;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green));
  transition: left 0.5s ease;
  z-index: -1;
}

.tech-card:hover::before {
  left: 0;
}

.tech-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.tech-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.tech-icon i {
  font-size: 3rem;
  color: var(--primary-green);
  transition: all var(--transition-normal);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  border-radius: 50%;
}

.tech-card:hover .tech-icon i {
  color: white;
  transform: scale(1.2);
}

.tech-card:hover .icon-glow {
  opacity: 0.3;
}

.tech-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--gray-800);
  transition: color var(--transition-normal);
}

.tech-card:hover h3 {
  color: white;
}

.tech-card p {
  color: var(--gray-600);
  line-height: 1.6;
  transition: color var(--transition-normal);
}

.tech-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.tech-bg-animation {
  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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(45,80,22,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
  opacity: 0.5;
}

/* Products Section */
.products {
   /* padding: 80px 0; */
  background: var(--primary-green);
}

@media (max-width: 768px) {
  .products {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 40px 0;
  }
}

.product-categories {
  margin-bottom: 40px;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.category-btn.active,
.category-btn:hover {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border-color: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:45px;
}

.product-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

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

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

@media (max-width: 768px) {
  .product-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 180px;
  }
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.6)); */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.action-btn:hover {
  background: white;
  color: var(--primary-green);
  transform: scale(1.1);
}




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

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

.product-content {
  padding: 0px 30px;
}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--gray-800);
  /* margin-bottom: 10px; */
}

.product-content p {
  color: var(--gray-600);
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-width: 300px; */
  /* margin-bottom: 20px; */
}

@media (max-width: 768px) {
  .product-content h3 {
    font-size: 1.1rem;
  }

  .product-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .product-content h3 {
    font-size: 1rem;
  }

  .product-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

.product-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.spec {
  padding: 5px 12px;
  background: var(--gray-100);
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
}

.product-btn {
  width: 100%;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Case Studies Section */
.case-studies {
  padding: 120px 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.case-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  cursor: pointer;
}

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

.case-image {
  position: relative;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.case-info {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.case-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.case-info p {
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.case-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.case-btn:hover {
  background: white;
  color: var(--primary-green);
}

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

.case-card:hover .case-info {
  transform: translateY(0);
}

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

/* Team Section */
.team-section {
  padding: 120px 0;
  background: var(--primary-green);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: center;
}

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

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: white;
  color: var(--primary-green);
  transform: scale(1.1);
}

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

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

.team-info {
  padding: 30px;
}

.team-info h3 {
  font-size: 1.3rem;
  color: var(--gray-800);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-info span {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 40px 0;
  }
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 400px;
}

.testimonial-card {
  background: white;
  border-radius: 6px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonials-slider {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 25px 15px;
  }

  .testimonials-slider {
    min-height: 320px;
  }
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 40px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--gray-800);
  margin-bottom: 5px;
  font-size: 25px;
}

.author-info span {
  /* color: var(--gray-600); */
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.nav-dot.active {
  background: var(--primary-green);
  transform: scale(1.2);
}

.rating {
    color: #f4b400; 
    font-size: 20px;
  
}

/* News Section */
.news-center {
  padding: 120px 0;
  background: var(--gray-100);
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.news-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.news-item.featured {
  grid-row: span 2;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-item.featured .news-image img {
  height: 400px;
}

.news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  background: var(--primary-green);
  color: white;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-item:hover .news-image img {
  transform: scale(1.1);
}

.news-content {
  padding: 30px;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.news-content h3 {
  font-size: 1.2rem;
  color: var(--gray-800);
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-item.featured .news-content h3 {
  font-size: 1.5rem;
}

.news-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-green);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.read-more-btn:hover {
  gap: 15px;
  color: var(--secondary-green);
}

/* Contact Section */
.contact-section {
  padding: 70px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--gray-800);
  margin-bottom: 10px;
}

.contact-details p {
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-form {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: transparent;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--gray-500);
  transition: all var(--transition-normal);
  pointer-events: none;
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--primary-green);
  background: white;
  padding: 0 5px;
}

.form-submit {
  grid-column: span 2;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 84px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  color: var(--light-green);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--light-green);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--light-green);
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-logo img {
    height: 60px;
  }

  .social-links {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer-section li {
    margin-bottom: 6px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    padding-top: 15px;
    margin-top: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

.footer-logo img {
  height: 84px;
  margin-bottom: 20px;
}

.footer-logo p {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--light-green);
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-section a:hover {
  color: var(--light-green);
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all var(--transition-normal);
  /* margin-right: 15px; */
}

.social-link:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 0px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-normal);
}

.footer-links a:hover {
  color: var(--light-green);
}

/* Back to Top */
.back-to-top {
  display: none !important;
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Justify text content on tablets and mobile */
  .about-description p,
  .product-content p,
  .support-card p,
  .testimonial-content p {
    text-align: justify;
  }

  .about-description .about-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px;
  }

  .about-text {
    text-align: center;
  }

  .about-image-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-description p {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  @media (max-width: 768px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 10px;
    }

    .about-text {
      text-align: center;
    }

    .about-image-container {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }

    .about-description p {
      font-size: 0.95rem;
    }

    .about-stats {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .stat-item {
      padding: 15px;
    }

    .stat-number {
      font-size: 2rem;
    }

    .stat-label {
      font-size: 0.85rem;
    }
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.mobile-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease-in-out;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    max-height: 600px;
    overflow-y: auto;
}


.hamburger {
  display: none;
}

@media (max-width: 768px) {
  .header {
    height: 60px !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Hide desktop nav */
  .nav-list {
    display: none;
  }

  /* Show hamburger menu button */
  .hamburger {
    display: flex;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }

  /* Mobile menu container */
  .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu.active {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

  .mobile-menu.active {
    display: block;
    max-height: 600px;
    overflow-y: auto;
  }

  /* Navigation list */
  .mobile-nav-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
  }

  .mobile-nav-item {
    list-style: none !important;
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-nav-item::marker {
    display: none !important;
  }

  .mobile-nav-item:last-child {
    border-bottom: none;
  }

  /* Navigation links */
  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    text-decoration: none;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:focus {
    background-color: #f9fafb;
    color: #037333;
  }

  /* Dropdown toggle button */
  .mobile-dropdown-toggle {
    font-family: inherit;
  }

  .dropdown-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .mobile-nav-item.active .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Dropdown menu */
 .mobile-dropdown-menu {
  background-color: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown-menu {
  max-height: 600px;
}
  .mobile-nav-item.active .mobile-dropdown-menu {
    max-height: 500px;
  }

  .mobile-dropdown-menu li {
    list-style: none !important;
    border-bottom: 1px solid #e5e7eb;
  }

  .mobile-dropdown-menu li::marker {
    display: none !important;
  }

  .mobile-dropdown-menu li:last-child {
    border-bottom: none;
  }

  /* Dropdown links */
  .mobile-dropdown-link {
    display: block;
    padding: 14px 20px 14px 40px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
  }

  .mobile-dropdown-link:hover,
  .mobile-dropdown-link:focus {
    background-color: #ffffff;
    color: #037333;
    padding-left: 44px;
  }

  /* Adjust header layout for mobile */
  .header-content {
    justify-content: space-between;
    height: 60px;
  }

  .header-actions {
    margin-left: 10px;
  }

  .header-phone div {
    display: none;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-submit {
    grid-column: span 1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 15px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 30px;
  }

  /* Header adjustments for 320px */
  .header {
    height: 45px;
  }

  .logo-img {
    height: 30px;
  }

  .header-phone div {
    display: none;
  }

  .hamburger {
    padding: 6px;
  }

  /* Footer adjustments for 320px */
  .footer {
    padding: 20px 0 15px;
  }

  .footer-content {
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer-logo img {
    height: 60px;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    gap: 20px;
  }
}


/* 🔧 Footer Mobile Layout Enhancement */
@media (max-width: 480px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-section:nth-child(1) {
    /* logo */
    grid-column: span 2;
  }

  .footer-section:nth-child(2) {
    /* products */
    grid-column: span 2;
  }

  /* Left-align footer sections for professional look */
  .footer-section {
    text-align: left;
  }

  /* Keep logo and bottom centered */
  .footer-logo,
  .footer-logo p,
  .footer-bottom-content {
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 15px;
  }

  /* Center social icons */
  .social-links {
    justify-content: center;
  }

  /* Keep footer bottom content vertical and centered */
  .footer-bottom-content {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}



/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --black: #ffffff;
    --gray-100: #2a2a2a;
    --gray-200: #3a3a3a;
    --gray-300: #4a4a4a;
    --gray-800: #037333;
    --gray-900: #f0f0f0;
  }
}

/* Add to styles.css for FAQ accordion */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e7ef;
  margin-bottom: 8px;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.08em;
  font-weight: 600;
  color: #000000;
  padding: 16px 0;
  cursor: pointer;
  outline: none;
  transition: color 0.2s;
}

.faq-question.active,
.faq-question:hover {
  color: #178c4e;
}

.faq-answer {
  display: none;
  padding: 0 0 16px 0;
  color: #444;
  font-size: 1em;
  line-height: 1.7;
}

.faq-question.active+.faq-answer {
  display: block;
}

/* Sticky Social Media Links */
.social-media-sticky {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 8px;
  /* background: rgb(235 235 235 / 18%); */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10000;
  /* backdrop-filter: blur(10px); */
}

.social-media-sticky-right {
  position: fixed;
  top: 50%;
  /* left: 0; */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px 8px;
  /* background: rgb(235 235 235 / 18%); */
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10000;
  /* backdrop-filter: blur(10px); */
}

.social-media-sticky-right .social-link {
  width: 40px;
  height: 40px;
  background: white;
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}



.social-media-sticky .social-link {
  width: 40px;
  height: 40px;
  background: white;
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.social-media-sticky .social-link:hover {
  background: var(--secondary-green);
  color: white;
  transform: scale(1.1);
}

/* Responsive: hide sticky social links on small screens */
@media (max-width: 768px) {

  .social-media-sticky,
  .social-media-sticky-right {
    display: none;
  }
}

.mobile-dropdown-menu,
.mobile-subcategory-menu {
  display: none;
  padding-left: 10px;
  background: #f8f9fa;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.mobile-nav-item.open>.mobile-dropdown-menu,
.dropdown-subcategory.open>.mobile-subcategory-menu {
  display: block;
  animation: fadeInSubmenu 0.3s;
}

@keyframes fadeInSubmenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-link.dropdown-toggle,
.mobile-dropdown-link.dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 1em;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.mobile-dropdown-link.dropdown-toggle:focus {
  outline: 2px solid var(--primary-green, #2563eb);
}



.careers-header {
  text-align: center;
  padding: 70px 20px 40px;
}

.careers-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1d4d30;
  margin-bottom: 15px;
  margin-top: 20px;
}

.careers-header p {
  color: #555;
  font-size: 16px;
}

.careers-cards {
  padding: 50px 20px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.career-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.career-card h3 {
  color: #0b6623;
  margin-bottom: 10px;
}

.career-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.career-card span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  background: #0b6623;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #094d1a;
}


.job-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.job-modal-content {
  background: #fff;
  width: 90%;
  max-width: 450px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.3s ease;
}

.job-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

.job-modal-content h2 {
  margin-bottom: 20px;
  color: #0b6623;
  text-align: center;
}

#jobApplicationForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

#jobApplicationForm input,
#jobApplicationForm select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.submit-btn {
  width: 100%;
  background: #0b6623;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  background: #094d1a;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
