body {
  overflow-x: hidden;
}
/* HERO */
.hero-section {
  background: #fff;
}

.hero-image {
  max-width: 80%;
  height: auto;
}

/* LEFT */
.hero-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.05rem;
  color: #555;
  max-width: 480px;
}

.hero-btn {
  background: #2d3cf5;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
}

.hero-btn:hover {
  background: #1f2fd1;
  color: #fff;
}

.floating-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  /* uniform shadow */
}


/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  text-align: left;
}

/* Card Positions */
.card-solutions {
  top: 30px;
  left: 10px;
  width: 180px;
}

.card-collaborate {
  bottom: 40px;
  left: 10px;
  width: 200px;
}

.card-team {
  bottom: 60px;
  right: 0;
  width: 260px;
}

/* Team mini cards */
.team-box {
  background: #f4f4f4;
  padding: 8px;
  border-radius: 10px;
  flex: 1;
}

.team-box small {
  font-size: 11px;
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
    flex-direction: column;
  }

  .floating-card {
    display: none;
    /* hide cards on mobile */
  }

  .hero-title {
    font-size: 2rem;
  }
}



/* core values  */

.core-values-section {
  background-color: #f6fbef;

}

/* Number */
.value-number {
  font-size: 42px;
  font-weight: 600;
  color: #6b6b6b;
  display: block;
  margin-bottom: 10px;
}

/* Title */
.value-title {
  font-size: 16px;
  font-weight: 600;
  color: #729E40;
  /* brand green */
  margin-bottom: 8px;
}

/* Description */
.value-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Box spacing */
.value-box {
  padding: 10px 15px;
}

.value-box {
  padding: 10px 15px;
  transition: all 0.35s ease;
  border-radius: 12px;
}

.value-box:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Animate number on hover */
.value-box:hover .value-number {
  color: #729E40;
  transform: scale(1.1);
}

/* Smooth text animation */
.value-number,
.value-title,
.value-text {
  transition: all 0.35s ease;
}

/** 10 cards  **/

.card-rotator {
  position: relative;
  min-height: 520px;

}

/* Card animation */
.info-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.info-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
  gap: 2rem;
}


.cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* spacing between cards */
  justify-content: center;
}

.card {
  flex: 1 1 250px;
  max-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%;
  max-width: 520px;
  max-height: 300px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .card-img {
    max-height: 220px;
  }
}

.rotating-cards-section .card-img {
  border-radius: 18px !important;
}


/*  */
.stat-box {
  padding: 15px;
  border-radius: 8px;
  color: #fff;
}

.stat-green {
  background-color: #28a745;
}

.stat-blue {
  background-color: #007bff;
}

.brand-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 12px 15px;
}

.brand-card img.brand-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

/*  */
/* ---------------- ROTATION MODE ---------------- */
.cards-wrapper {
  position: relative;
  overflow: hidden;
}

.info-card {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-card.active {
  display: block;
  opacity: 1;
  position: relative;
}

/* ---------------- MOBILE STACK MODE ---------------- */
.cards-wrapper.stack-mode {
  overflow: visible;
}

.cards-wrapper.stack-mode .info-card {
  display: block !important;
  position: relative !important;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 2rem;
}

.cards-wrapper.stack-mode .info-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* View All button only mobile */
@media (min-width: 992px) {
  #viewAllBtn {
    display: none;
  }
}

/* Hide stats section on mobile only */
@media (max-width: 991px) {
  .info-card .row.g-3.mb-4.mt-4 {
    display: none !important;
  }
}

.cards-wrapper.stack-mode .info-card {
  display: block !important;
  position: relative !important;
  opacity: 1;
  transform: translateY(20px);
}

/* Default: disable clicks */
.info-card {
  pointer-events: none;
}

/* Desktop rotation: active card clickable */
.info-card.active {
  pointer-events: auto;
}

/* Mobile stack mode: all visible cards clickable */
.cards-wrapper.stack-mode .info-card {
  pointer-events: auto !important;
}

/* service */
/* Section */
/* ===================================
   OUR SERVICES SECTION - FINAL CLEAN
=================================== */

.service-section {
  position: relative;
  overflow: hidden;
    margin-top: 0 !important;
    padding-top: 30px;
    /* adjust if needed */
  }

@media (max-width: 768px) {
  .service-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* Slider wrapper */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Slider track */
.slider-track {
  display: flex;
  gap: 30px; /* spacing between cards */
  transition: transform 0.5s ease-in-out;
}

/* Cards */
.service-card {
  flex: 0 0 calc(25% - 22.5px); /* 4 cards desktop */
  max-width: calc(25% - 22.5px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* Image */
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}



/* Badge */
.image-wrapper {
  position: relative;
  overflow: hidden;
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #28a745;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
}

/* Navigation Arrows */
.nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #2d5bff;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #1e40d0;
}

.left-btn {
  left: -10px;
}

.right-btn {
  right: -10px;
}

/* ==========================
   TABLET (2 CARDS)
========================== */

@media (max-width: 991px) {
  .service-card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .left-btn {
    left: 10px;
  }

  .right-btn {
    right: 10px;
  }
}

/* ==========================
   MOBILE (1 CARD)
========================== */

@media (max-width: 768px) {
  .slider-track {
    gap: 15px;
  }

  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-card img {
    height: 200px;
  }

  .nav-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}




/* ================= WHO WE ARE SECTION ================= */

/* Headings */
.section-title {
  font-size: 2rem;
  font-weight: 450;
  margin-bottom: 0.5rem;
}

.brand-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.tagline {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Image Styling */
.image-container {
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
  transform: translateY(-6px);
}
/* Image Wrapper */
.image-wrapper {
  width: 100%;
}

/* Image Container */
.image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* Proper Responsive Image */
.plant-image {
  width: 100%;
  height: 500px;            /* Desktop height */
  object-fit: cover;        /* Prevent stretching */
  border-radius: 20px;
  display: block;
}
/* Content Section */
.content-section {
  margin-bottom: 2rem; /* Desktop spacing */
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.content-section h3:first-of-type {
  margin-top: 0;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

/* Bullet List Styling */
.content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.content-list li {
  position: relative;
  padding-left: 26px;
  font-size: 1.05rem;
  color: var(--text-light);
}

.content-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 14px;
}

/* ================= ANIMATIONS ================= */

#who-we-are {
  overflow: hidden;
}

.image-wrapper {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 1.1s ease forwards;
}

.content-section {
  opacity: 0;
  transform: translateX(60px);
  animation: slideInRight 1.1s ease forwards;
  animation-delay: 0.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  /* Remove bottom spacing for mobile */
  #who-we-are {
    text-align: center;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .main-container {
    padding: 40px 20px;
    margin-bottom: 0 !important;
  }

  .content-section {
    margin-bottom: 0 !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .image-wrapper {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .image-container {
    transform: none !important;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .brand-title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  #who-we-are .content-section h3,
  #who-we-are .section-title,
  #who-we-are .brand-title {
    text-align: center;
  }
}

/* CTA SECTION */


.cta-section {
  position: relative;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 95, 193, 0.3);
}

/* Background Image */
.cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Color Overlay */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(74, 95, 193, 0.9),
      rgba(107, 127, 215, 0.85));
  z-index: 2;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-title strong {
  font-weight: 700;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  background-color: #fff;
  color: #4a5fc1;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #4a5fc1;
  background-color: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 30px;
    border-radius: 15px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.6rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

/* About Section */

.about-section {
  margin-top: 40px;
}

/* Image */
.about-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Text */
.section-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}


.about-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Points */
.about-point p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: #222;
  margin: 25px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .section-label,
  .about-text,
  .about-point p {
    text-align: center;
  }

  .divider {
    margin-left: auto;
    margin-right: auto;
  }
}

.about-image-wrapper {
  max-width: 520px;
  /* reduce image size */
  margin-right: auto;
  /* keep left aligned */
}

@media (max-width: 768px) {
  .about-image-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-label {
  font-size: 2rem;
  /* BIG like h2 */
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* faq section */

.faq-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
}

.faq-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 60px;
}

.faq-row {
  display: flex;
  gap: 60px;
}

/* LEFT */
.faq-questions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: transparent;
  border: none;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
    text-align: center;
  }
}

.faq-item.active {
  background: #e3e6ff;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* RIGHT */
.faq-answer {
  flex: 0.8;
  background: #f7f8ff;
  /* white card */
  padding: 40px;
  border-radius: 20px;
  /* smooth corners */
  box-shadow:
    0px 10px 30px rgba(0, 0, 0, 0.08);
  /* soft shadow */
}


.faq-answer h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.faq-answer {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-row {
    flex-direction: column;
  }
}