  :root {
      --color-brand: #2d5016;
      --color-accent: #f37016;
      --color-background: #f5f7fa;
      --color-text: #333333;
      --color-light: #ffffff;
      --color-gray: #6c757d;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      --radius: 12px;
      --transition: all 0.3s ease;
  }

  body {
      font-family: 'Poppins', sans-serif;
      color: var(--color-text);
      background-color: var(--color-background);
  }

  /* Header Styles */
  .header {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar {
      padding: 0.8rem 0;
  }

  .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
  }

  .logo-img {
      height: 55px;
      object-fit: contain;
  }


  .brand-icon {
      color: var(--color-accent);
      font-size: 1.5rem;
      margin-right: 0.5rem;
  }

  .brand-text {
      color: var(--color-brand);
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .nav-link {
      font-weight: 500;
      transition: var(--transition);
      position: relative;
      padding: 0.5rem 1rem !important;
      margin: 0 0.2rem;
      border-radius: 6px;
  }

  .nav-link:hover {
      color: var(--color-accent) !important;
      background-color: rgba(243, 112, 22, 0.08);
  }

  .nav-link.active {
      color: var(--color-accent) !important;
      font-weight: 600;
  }

  .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 15%;
      width: 70%;
      height: 3px;
      background-color: var(--color-accent);
      border-radius: 2px;
  }

  .navbar-toggler {
      border: none;
      padding: 0.25rem 0.5rem;
  }

  .navbar-toggler:focus {
      box-shadow: none;
  }

  .location-selector {
      display: flex;
      align-items: center;
      background: rgba(45, 80, 22, 0.05);
      border-radius: 20px;
      padding: 0.4rem 1rem;
      margin-right: 1rem;
      cursor: pointer;
      transition: var(--transition);
  }

  .location-selector:hover {
      background: rgba(45, 80, 22, 0.1);
  }

  .location-icon {
      color: var(--color-brand);
      margin-right: 0.5rem;
      font-size: 0.9rem;
  }

  .location-text {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--color-brand);
  }

  .location-dropdown {
      font-size: 0.8rem;
      color: var(--color-gray);
      margin-left: 0.3rem;
  }

  .search-container {
      position: relative;
      margin-right: 1rem;
      flex-grow: 1;
      max-width: 500px;
  }

  .search-input {
      border-radius: 25px;
      padding: 0.6rem 1rem 0.6rem 2.5rem;
      border: 1px solid #e0e0e0;
      width: 100%;
      font-size: 0.9rem;
      transition: var(--transition);
  }

  .search-input:focus {
      outline: none;
      border-color: var(--color-accent);
      box-shadow: 0 0 0 2px rgba(243, 112, 22, 0.2);
  }

  .search-icon {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-gray);
  }

  .business-cta {
      background: linear-gradient(135deg, var(--color-brand), #3a6c1d);
      color: white;
      border: none;
      border-radius: 20px;
      padding: 0.6rem 1.2rem;
      font-weight: 500;
      font-size: 0.9rem;
      transition: var(--transition);
      white-space: nowrap;
  }

  .business-cta:hover {
      background: linear-gradient(135deg, #3a6c1d, var(--color-brand));
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
  }

  @media (max-width: 991.98px) {
      .search-container {
          margin: 1rem 0;
          max-width: 100%;
      }

      .location-selector {
          margin: 0.5rem 0;
      }

      .business-cta {
          margin-top: 0.5rem;
      }
  }



  /* Hero Section */
  .hero-carousel-section {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
  }

  .hero-carousel {
      height: 100%;
  }

  .carousel-slide {
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .slide-1 {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
  }

  .slide-2 {
      background: linear-gradient(135deg, rgba(243, 112, 22, 0.05) 0%, rgba(45, 80, 22, 0.05) 100%);
  }

  .slide-3 {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
  }

  .carousel-slide::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(243, 112, 22, 0.1) 100%);
      border-radius: 50%;
      z-index: 0;
  }

  .carousel-slide::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
      border-radius: 50%;
      z-index: 0;
  }

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

  .hero-title {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      animation: fadeInUp 0.8s ease-out;
  }

  .text-accent {
      color: var(--color-accent);
      position: relative;
      display: inline-block;
  }

  .text-accent::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 8px;
      background-color: rgba(243, 112, 22, 0.2);
      z-index: -1;
      border-radius: 4px;
  }

  .hero-subtitle {
      font-size: 1.2rem;
      color: var(--color-gray);
      margin-bottom: 2rem;
      line-height: 1.6;
      animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .search-container {
      margin-bottom: 2.5rem;
      animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .search-bar {
      box-shadow: var(--shadow);
      border-radius: 50px;
      overflow: hidden;
      background: var(--color-light);
      padding: 5px;
      transition: var(--transition);
  }

  .search-bar:focus-within {
      box-shadow: 0 6px 20px rgba(243, 112, 22, 0.2);
      transform: translateY(-2px);
  }

  .search-bar .form-control {
      border: none;
      padding: 15px 25px;
      font-size: 1rem;
  }

  .search-bar .form-control:focus {
      box-shadow: none;
  }

  .search-bar .form-control::placeholder {
      color: var(--color-gray);
  }

  .btn-accent {
      background-color: var(--color-accent);
      color: var(--color-light);
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
      white-space: nowrap;
  }

  .btn-accent:hover {
      background-color: #e05f0a;
      color: var(--color-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(243, 112, 22, 0.3);
  }

  .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      animation: fadeInUp 0.8s ease-out 0.6s both;
  }

  .stat {
      text-align: center;
  }

  .stat h4 {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
  }

  .stat p {
      color: var(--color-gray);
      margin-bottom: 0;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

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

  .hero-image {
      border-radius: var(--radius);
      overflow: hidden;
      transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
      transition: var(--transition);
      position: relative;
      animation: fadeInRight 0.8s ease-out 0.4s both;
  }

  .hero-image:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
  }

  .hero-image img {
      width: 100%;
      height: auto;
      transition: var(--transition);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
  }

  /* Carousel Navigation */
  .carousel-navigation {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      z-index: 10;
      pointer-events: none;
  }

  .carousel-nav-btn {
      position: absolute;
      background: var(--color-light);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      pointer-events: all;
      color: var(--color-accent);
      font-size: 1.2rem;
  }

  .carousel-nav-btn:hover {
      background: var(--color-accent);
      color: var(--color-light);
      transform: scale(1.1);
  }

  .prev-btn {
      left: 30px;
  }

  .next-btn {
      right: 30px;
  }

  /* Custom Dots */
  .owl-dots {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
  }

  .owl-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5) !important;
      transition: var(--transition);
  }

  .owl-dot.active {
      background: var(--color-accent) !important;
      transform: scale(1.2);
  }

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

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

  @keyframes fadeInRight {
      from {
          opacity: 0;
          transform: translateX(30px) perspective(1000px) rotateY(-5deg) rotateX(5deg);
      }

      to {
          opacity: 1;
          transform: translateX(0) perspective(1000px) rotateY(-5deg) rotateX(5deg);
      }
  }

  /* Floating Elements */
  .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
  }

  .floating-element {
      position: absolute;
      background-color: var(--color-light);
      border-radius: 50%;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: float 6s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
      width: 60px;
      height: 60px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
      width: 40px;
      height: 40px;
      top: 70%;
      left: 10%;
      animation-delay: 2s;
  }

  .floating-element:nth-child(3) {
      width: 50px;
      height: 50px;
      top: 30%;
      right: 5%;
      animation-delay: 4s;
  }

  .floating-element i {
      color: var(--color-accent);
      font-size: 1.2rem;
  }

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

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

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

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .hero-carousel-section {
          height: auto;
          min-height: auto;
      }

      .carousel-slide {
          height: auto;
          min-height: auto;
          padding: 80px 0;
          text-align: center;
      }

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

      .hero-stats {
          justify-content: center;
          gap: 1.5rem;
      }

      .hero-image {
          margin-top: 3rem;
          transform: none;
      }

      .hero-image:hover {
          transform: none;
      }

      .carousel-navigation {
          display: none;
      }
  }

  @media (max-width: 767.98px) {
      .carousel-slide {
          padding: 60px 0;
      }

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

      .search-bar {
          border-radius: var(--radius);
      }

      .btn-accent {
          width: 100%;
          margin-top: 10px;
          border-radius: var(--radius);
      }

      .hero-stats {
          gap: 1rem;
      }

      .stat h4 {
          font-size: 1.5rem;
      }

      .owl-dots {
          bottom: 15px;
      }
  }



.btn-download-app {
    background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
    border: none;
    color: var(--color-light);
    padding: 14px 30px;
    font-weight: 600;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-download-app:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(45, 80, 22, 0.25);
    color: var(--color-light);
}






  /* Section Titles */
  .how-it-works {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .steps-container {
      position: relative;
  }

  .steps-connector {
      position: absolute;
      top: 40px;
      left: 10%;
      width: 80%;
      height: 2px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      z-index: 1;
  }

  .steps-connector::before,
  .steps-connector::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--color-accent);
      top: 50%;
      transform: translateY(-50%);
  }

  .steps-connector::before {
      left: 0;
  }

  .steps-connector::after {
      right: 0;
  }

  .step-card {
      background-color: var(--color-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 2.5rem 1.5rem;
      position: relative;
      z-index: 2;
      height: 100%;
      border: 1px solid rgba(45, 80, 22, 0.05);
      overflow: hidden;
  }

  .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      transform: scaleX(0);
      transition: var(--transition);
  }

  .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .step-card:hover::before {
      transform: scaleX(1);
  }

  .step-number {
      position: absolute;
      top: 10px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      box-shadow: 0 4px 10px rgba(45, 80, 22, 0.3);
  }

  .step-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 36px;
      margin: 0 auto 1.5rem;
      transition: var(--transition);
      position: relative;
  }

  .step-card:hover .step-icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.15), rgba(243, 112, 22, 0.15));
  }

  .step-icon::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid transparent;
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      opacity: 0;
      transition: var(--transition);
  }

  .step-card:hover .step-icon::after {
      opacity: 1;
  }

  .step-card h4 {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 1rem;
      transition: var(--transition);
  }

  .step-card:hover h4 {
      color: var(--color-accent);
  }

  .step-card p {
      color: var(--color-gray);
      line-height: 1.6;
      margin-bottom: 0;
  }

  /* Decorative Elements */
  .bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d5016' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 0;
  }

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .how-it-works {
          padding: 80px 0;
      }

      .steps-connector {
          display: none;
      }

      .step-card {
          margin-bottom: 2rem;
      }
  }

  @media (max-width: 767.98px) {
      .how-it-works {
          padding: 60px 0;
      }

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

      .step-card {
          padding: 2rem 1.5rem;
      }

      .step-icon {
          width: 80px;
          height: 80px;
          font-size: 32px;
      }
  }

  /* Features Section */
  .features {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .feature-card {
      background-color: var(--color-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 2.5rem 1.5rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(45, 80, 22, 0.05);
      z-index: 1;
  }

  .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(243, 112, 22, 0.03) 100%);
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
  }

  .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .feature-card:hover::before {
      opacity: 1;
  }

  .feature-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 32px;
      margin: 0 auto 1.5rem;
      transition: var(--transition);
      position: relative;
      z-index: 1;
  }

  .feature-card:hover .feature-icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      box-shadow: 0 10px 25px rgba(45, 80, 22, 0.3);
  }

  .feature-icon::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid transparent;
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent)) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      opacity: 0;
      transition: var(--transition);
  }

  .feature-card:hover .feature-icon::after {
      opacity: 1;
  }

  .feature-card h4 {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 1rem;
      transition: var(--transition);
  }

  .feature-card:hover h4 {
      color: var(--color-accent);
  }

  .feature-card p {
      color: var(--color-gray);
      line-height: 1.6;
      margin-bottom: 0;
  }

  /* Floating Animation */
  @keyframes float {

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

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


  /* Background Elements */
  .bg-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  .bg-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(243, 112, 22, 0.05));
      animation: float 8s ease-in-out infinite;
  }

  .bg-element:nth-child(1) {
      width: 100px;
      height: 100px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .bg-element:nth-child(2) {
      width: 150px;
      height: 150px;
      top: 20%;
      right: 8%;
      animation-delay: 2s;
  }

  .bg-element:nth-child(3) {
      width: 80px;
      height: 80px;
      bottom: 15%;
      left: 10%;
      animation-delay: 4s;
  }

  .bg-element:nth-child(4) {
      width: 120px;
      height: 120px;
      bottom: 25%;
      right: 5%;
      animation-delay: 6s;
  }

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .features {
          padding: 80px 0;
      }

      .feature-card {
          margin-bottom: 2rem;
      }

      .feature-icon {
          width: 80px;
          height: 80px;
          font-size: 28px;
      }
  }

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

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

      .feature-card {
          padding: 2rem 1.5rem;
      }
  }

  /* Business Section */
  .business-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .business-image {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      transform: perspective(1000px) rotateY(-5deg);
      transition: var(--transition);
  }

  .business-image:hover {
      transform: perspective(1000px) rotateY(0);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  }

  .business-image img {
      width: 100%;
      height: auto;
      transition: var(--transition);
  }

  .business-image:hover img {
      transform: scale(1.05);
  }

  .business-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(243, 112, 22, 0.1) 100%);
      z-index: 1;
      opacity: 0;
      transition: var(--transition);
  }

  .business-image:hover::before {
      opacity: 1;
  }

  .business-content {
      padding-left: 2rem;
  }

  .business-intro {
      color: var(--color-gray);
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
  }

  .business-features {
      margin-bottom: 2.5rem;
  }

  .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
      padding: 1.5rem;
      background: var(--color-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      border-left: 4px solid transparent;
  }

  .feature-item:hover {
      transform: translateX(10px);
      border-left: 4px solid var(--color-accent);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 1.2rem;
      margin-right: 1.5rem;
      flex-shrink: 0;
      transition: var(--transition);
  }

  .feature-item:hover .feature-icon {
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      transform: scale(1.1);
  }

  .feature-content h5 {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 0.5rem;
      transition: var(--transition);
  }

  .feature-item:hover .feature-content h5 {
      color: var(--color-accent);
  }

  .feature-content p {
      color: var(--color-gray);
      margin-bottom: 0;
      line-height: 1.6;
  }

  .btn-brand {
      background: linear-gradient(135deg, var(--color-brand), #3a6c1d);
      color: var(--color-light);
      border: none;
      border-radius: 50px;
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
      position: relative;
      overflow: hidden;
  }

  .btn-brand::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: var(--transition);
  }

  .btn-brand:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
      background: linear-gradient(135deg, #3a6c1d, var(--color-brand));
      color: var(--color-light);
  }

  .btn-brand:hover::before {
      left: 100%;
  }

  /* Background Elements */
  .bg-shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  .shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(243, 112, 22, 0.05));
      animation: float 8s ease-in-out infinite;
  }

  .shape:nth-child(1) {
      width: 120px;
      height: 120px;
      top: 10%;
      right: 5%;
      animation-delay: 0s;
  }

  .shape:nth-child(2) {
      width: 80px;
      height: 80px;
      bottom: 20%;
      left: 3%;
      animation-delay: 2s;
  }

  .shape:nth-child(3) {
      width: 60px;
      height: 60px;
      bottom: 10%;
      right: 15%;
      animation-delay: 4s;
  }

  @keyframes float {

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

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

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .business-section {
          padding: 80px 0;
      }

      .business-content {
          padding-left: 0;
          margin-top: 3rem;
      }

      .business-image {
          transform: none;
      }

      .business-image:hover {
          transform: none;
      }
  }

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

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

      .feature-item {
          padding: 1.25rem;
      }

      .feature-icon {
          width: 45px;
          height: 45px;
          font-size: 1.1rem;
          margin-right: 1rem;
      }
  }



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

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .testimonial-card {
      background-color: var(--color-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
      padding: 2.5rem 2rem;
      height: 100%;
      position: relative;
      border: 1px solid rgba(45, 80, 22, 0.05);
      overflow: hidden;
  }

  .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      transform: scaleX(0);
      transition: var(--transition);
  }

  .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .testimonial-card:hover::before {
      transform: scaleX(1);
  }

  .testimonial-card::after {
      content: '"';
      position: absolute;
      top: 20px;
      right: 25px;
      font-size: 5rem;
      color: rgba(45, 80, 22, 0.05);
      font-family: Georgia, serif;
      line-height: 1;
      z-index: 0;
  }

  .rating {
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 1;
  }

  .rating i {
      color: #ffc107;
      margin-right: 2px;
      font-size: 1.1rem;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .testimonial-text {
      color: var(--color-text);
      line-height: 1.7;
      margin-bottom: 2rem;
      font-style: italic;
      position: relative;
      z-index: 1;
  }

  .user {
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
  }

  .user img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid rgba(45, 80, 22, 0.1);
      transition: var(--transition);
  }

  .testimonial-card:hover .user img {
      border-color: var(--color-accent);
      transform: scale(1.05);
  }

  .user-info {
      margin-left: 1rem;
  }

  .user-info h6 {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 0.25rem;
  }

  .user-info small {
      color: var(--color-gray);
      font-size: 0.85rem;
  }

  /* Testimonial Categories */
  .testimonial-category {
      display: inline-block;
      background: rgba(243, 112, 22, 0.1);
      color: var(--color-accent);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
  }

  /* Floating Animation */
  @keyframes float {

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

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


  /* Background Elements */
  .testimonials-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  .testimonial-bg-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.03), rgba(243, 112, 22, 0.03));
      animation: float 10s ease-in-out infinite;
  }

  .testimonial-bg-element:nth-child(1) {
      width: 150px;
      height: 150px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .testimonial-bg-element:nth-child(2) {
      width: 100px;
      height: 100px;
      bottom: 15%;
      right: 8%;
      animation-delay: 3s;
  }

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .testimonials {
          padding: 80px 0;
      }

      .testimonial-card {
          margin-bottom: 2rem;
      }
  }

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

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

      .testimonial-card {
          padding: 2rem 1.5rem;
      }

      .user img {
          width: 50px;
          height: 50px;
      }
  }

  /* Carousel Navigation */
  .testimonial-nav {
      display: flex;
      justify-content: center;
      margin-top: 3rem;
      gap: 1rem;
  }

  .testimonial-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(45, 80, 22, 0.2);
      cursor: pointer;
      transition: var(--transition);
  }

  .testimonial-dot.active {
      background-color: var(--color-accent);
      transform: scale(1.2);
  }










  /* App Download Section */
  .app-download {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--color-brand) 0%, #3a6c1d 100%);
      position: relative;
      overflow: hidden;
  }

  .app-download::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 1;
  }

  .app-content {
      position: relative;
      z-index: 2;
  }

  .app-download h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
  }

  .app-download p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0.9;
      max-width: 500px;
  }

  .app-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .app-btn {
      display: flex;
      align-items: center;
      background: var(--color-light);
      color: var(--color-brand);
      border: none;
      border-radius: 15px;
      padding: 1rem 1.5rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      position: relative;
      overflow: hidden;
  }

  .app-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: var(--transition);
  }

  .app-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
      color: var(--color-brand);
  }

  .app-btn:hover::before {
      left: 100%;
  }

  .app-btn i {
      font-size: 1.5rem;
      margin-right: 0.75rem;
  }

  .app-btn .btn-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }

  .app-btn .btn-text small {
      font-size: 0.75rem;
      font-weight: 400;
      opacity: 0.7;
  }

  .app-image-container {
      position: relative;
      z-index: 2;
  }

  .app-image {
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
      transition: var(--transition);
  }

  .app-image:hover {
      transform: perspective(1000px) rotateY(0) rotateX(0);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  }

  .app-image img {
      width: 100%;
      height: auto;
      transition: var(--transition);
  }

  .app-image:hover img {
      transform: scale(1.05);
  }

  .app-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.2) 0%, rgba(243, 112, 22, 0.2) 100%);
      z-index: 1;
      opacity: 0;
      transition: var(--transition);
  }

  .app-image:hover::before {
      opacity: 1;
  }

  /* Floating Elements */
  .floating-app-icons {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
  }

  .floating-icon {
      position: absolute;
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-light);
      font-size: 1.5rem;
      animation: float 6s ease-in-out infinite;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .floating-icon:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
  }

  .floating-icon:nth-child(2) {
      top: 60%;
      left: 15%;
      animation-delay: 2s;
  }

  .floating-icon:nth-child(3) {
      top: 30%;
      right: 10%;
      animation-delay: 4s;
  }

  .floating-icon:nth-child(4) {
      top: 70%;
      right: 15%;
      animation-delay: 1s;
  }

  @keyframes float {

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

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

  /* App Features List */
  .app-features {
      margin-top: 2rem;
  }

  .app-feature {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      opacity: 0.9;
  }

  .app-feature i {
      color: var(--color-accent);
      margin-right: 0.75rem;
      font-size: 1.1rem;
  }

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .app-download {
          padding: 80px 0;
      }

      .app-download h2 {
          font-size: 2rem;
      }

      .app-image {
          margin-top: 3rem;
          transform: none;
      }

      .app-image:hover {
          transform: none;
      }
  }

  @media (max-width: 767.98px) {
      .app-download {
          padding: 60px 0;
      }

      .app-download h2 {
          font-size: 1.75rem;
      }

      .app-buttons {
          justify-content: center;
      }

      .app-btn {
          padding: 0.875rem 1.25rem;
      }

      .floating-icon {
          width: 50px;
          height: 50px;
          font-size: 1.25rem;
      }
  }



  /* FAQ Section */
  .faq {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .faq-header {
      text-align: center;
      margin-bottom: 4rem;
  }

  .faq-categories {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 3rem;
  }

  .faq-category {
      background: var(--color-light);
      border: 2px solid rgba(45, 80, 22, 0.1);
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      font-weight: 500;
      color: var(--color-brand);
      cursor: pointer;
      transition: var(--transition);
  }

  .faq-category:hover,
  .faq-category.active {
      background: var(--color-brand);
      color: var(--color-light);
      border-color: var(--color-brand);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
  }

  .accordion {
      max-width: 800px;
      margin: 0 auto;
  }

  .accordion-item {
      background: var(--color-light);
      border: 1px solid rgba(45, 80, 22, 0.1);
      border-radius: var(--radius);
      margin-bottom: 1rem;
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: var(--transition);
  }

  .accordion-item:hover {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .accordion-button {
      background: var(--color-light);
      color: var(--color-brand);
      font-weight: 600;
      padding: 1.5rem 2rem;
      border: none;
      box-shadow: none;
      font-size: 1.1rem;
      transition: var(--transition);
      position: relative;
  }

  .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(243, 112, 22, 0.05));
      color: var(--color-brand);
      border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  }

  .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d5016'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      transition: var(--transition);
      transform: rotate(0);
  }

  .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f37016'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      transform: rotate(180deg);
  }

  .accordion-button:hover {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(243, 112, 22, 0.05));
  }

  .accordion-body {
      padding: 1.5rem 2rem;
      color: var(--color-gray);
      line-height: 1.7;
      background: var(--color-light);
  }

  .faq-contact {
      background: linear-gradient(135deg, var(--color-brand), #3a6c1d);
      color: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem;
      text-align: center;
      margin-top: 4rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
  }

  .faq-contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 0;
  }

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

  .faq-contact h3 {
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .faq-contact p {
      opacity: 0.9;
      margin-bottom: 2rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .contact-btn {
      background: var(--color-light);
      color: var(--color-brand);
      border: none;
      border-radius: 50px;
      padding: 1rem 2rem;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .contact-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      background: var(--color-accent);
      color: var(--color-light);
  }

  /* Background Elements */
  .faq-bg-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  .faq-bg-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.03), rgba(243, 112, 22, 0.03));
      animation: float 10s ease-in-out infinite;
  }

  .faq-bg-element:nth-child(1) {
      width: 120px;
      height: 120px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .faq-bg-element:nth-child(2) {
      width: 80px;
      height: 80px;
      bottom: 20%;
      right: 8%;
      animation-delay: 3s;
  }

  @keyframes float {

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

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

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .faq {
          padding: 80px 0;
      }

      .faq-categories {
          gap: 0.5rem;
      }

      .faq-category {
          padding: 0.6rem 1.2rem;
          font-size: 0.9rem;
      }
  }

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

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

      .accordion-button {
          padding: 1.25rem 1.5rem;
          font-size: 1rem;
      }

      .accordion-body {
          padding: 1.25rem 1.5rem;
      }

      .faq-contact {
          padding: 2rem 1.5rem;
      }
  }



  /* Footer */

  /* Footer Styles */
  .footer {
      background: linear-gradient(135deg, #1a2f0d 0%, var(--color-brand) 100%);
      position: relative;
      overflow: hidden;
  }

  .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 0;
  }

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

  .footer-brand {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
  }

  .footer-brand i {
      color: var(--color-accent);
      font-size: 1.8rem;
      margin-right: 0.75rem;
  }

  .footer-brand span {
      font-weight: 700;
      font-size: 1.8rem;
      background: linear-gradient(90deg, var(--color-light), #f8f9fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .footer-about {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 2rem;
      max-width: 300px;
  }

  .footer-heading {
      color: var(--color-light);
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      position: relative;
      display: inline-block;
  }

  .footer-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--color-accent);
      border-radius: 1px;
  }

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

  .footer-links li {
      margin-bottom: 0.75rem;
  }

  .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: var(--transition);
      display: flex;
      align-items: center;
  }

  .footer-links a:hover {
      color: var(--color-accent);
      transform: translateX(5px);
  }

  .footer-links a::before {
      content: '›';
      margin-right: 0.5rem;
      color: var(--color-accent);
      opacity: 0;
      transition: var(--transition);
  }

  .footer-links a:hover::before {
      opacity: 1;
  }

  .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .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: var(--color-light) !important;
      text-decoration: none;
      transition: var(--transition);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .social-link:hover {
      background: var(--color-accent);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(243, 112, 22, 0.3);
  }

  .newsletter {
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 2rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .newsletter h6 {
      color: var(--color-light);
      margin-bottom: 1rem;
      font-weight: 600;
  }

  .newsletter p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      margin-bottom: 1rem;
  }

  .newsletter-form {
      display: flex;
      gap: 0.5rem;
  }

  .newsletter-input {
      flex: 1;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 25px;
      padding: 0.75rem 1rem;
      color: var(--color-light);
      font-size: 0.9rem;
      transition: var(--transition);
  }

  .newsletter-input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--color-accent);
      box-shadow: 0 0 0 2px rgba(243, 112, 22, 0.2);
  }

  .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
  }

  .newsletter-btn {
      background: var(--color-accent);
      color: var(--color-light);
      border: none;
      border-radius: 25px;
      padding: 0.75rem 1.5rem;
      font-weight: 600;
      transition: var(--transition);
      white-space: nowrap;
  }

  .newsletter-btn:hover {
      background: #e05f0a;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(243, 112, 22, 0.3);
  }

  .footer-divider {
      border-color: rgba(255, 255, 255, 0.1);
      margin: 3rem 0 2rem;
  }

  .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
  }

  .footer-legal {
      display: flex;
      gap: 2rem;
  }

  .footer-legal a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: var(--transition);
  }

  .footer-legal a:hover {
      color: var(--color-accent);
  }

  .app-badges {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .app-badge {
      display: flex;
      align-items: center;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 0.5rem 1rem;
      color: var(--color-light);
      text-decoration: none;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .app-badge:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
  }

  .app-badge i {
      font-size: 1.5rem;
      margin-right: 0.5rem;
  }

  .app-badge-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
  }

  .app-badge-text span {
      font-size: 0.7rem;
  }

  .app-badge-text strong {
      font-size: 0.9rem;
  }

  /* Floating Elements */
  .footer-floating {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
  }

  .floating-element {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
      animation: float 8s ease-in-out infinite;
  }

  .floating-element:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
      width: 60px;
      height: 60px;
      bottom: 30%;
      right: 15%;
      animation-delay: 3s;
  }

  @keyframes float {

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

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

  /* Responsive Styles */
  @media (max-width: 991.98px) {
      .footer {
          text-align: center;
      }

      .footer-about {
          margin-left: auto;
          margin-right: auto;
      }

      .footer-heading::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .footer-links a:hover {
          transform: none;
      }

      .social-links {
          justify-content: center;
      }

      .newsletter-form {
          flex-direction: column;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 1rem;
          text-align: center;
      }

      .footer-legal {
          justify-content: center;
      }

      .app-badges {
          justify-content: center;
      }
  }

  @media (max-width: 767.98px) {
      .footer {
          padding: 3rem 0 2rem !important;
      }

      .footer-brand {
          justify-content: center;
      }

      .social-link {
          width: 40px;
          height: 40px;
      }

      .app-badge {
          padding: 0.4rem 0.8rem;
      }
  }





  /* Restaurant Page */

  /* Hero Section */
  .services-hero {
      background: linear-gradient(135deg, #ffffff 0%, rgba(240, 155, 55, 0.15) 60%);
      color: var(--color-dark);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
  }


  .services-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
      z-index: 0;
  }

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

  .hero-badge {
      background: rgba(255, 255, 255, 0.2);
      color: var(--color-light);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 3.5rem;
  }

  .hero-subtitle {
      font-size: 1.3rem;
      opacity: 0.9;
      margin-bottom: 2.5rem;
      max-width: 600px;
  }

  /* Stats Section */
  .stats-section {
      background: var(--color-light);
      padding: 80px 0;
  }

  .stat-card {
      text-align: center;
      padding: 2rem;
  }

  .stat-number {
      color: var(--color-accent);
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 0.5rem;
  }

  .stat-label {
      color: var(--color-brand);
      font-weight: 600;
      font-size: 1.1rem;
  }

  /* Services Section */
  .services-section {
      padding: 100px 0;
      background: var(--color-background);
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 4rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  .service-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(45, 80, 22, 0.05);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 2.5rem;
      margin: 0 auto 2rem;
      transition: var(--transition);
  }

  .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      transform: scale(1.1);
  }

  .service-title {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 1.5rem;
  }

  .service-features {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .service-features li {
      color: var(--color-gray);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
  }

  .service-features li i {
      color: var(--color-accent);
      font-size: 0.8rem;
  }

  /* Platform Features */
  .platform-section {
      padding: 100px 0;
      background: var(--color-light);
  }

  .platform-feature {
      display: flex;
      align-items: center;
      margin-bottom: 4rem;
  }

  .platform-feature:nth-child(even) {
      flex-direction: row-reverse;
  }

  .feature-content {
      flex: 1;
      padding: 0 3rem;
  }

  .feature-image {
      flex: 1;
      text-align: center;
  }

  .feature-image img {
      max-width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
  }

  .feature-badge {
      background: rgba(45, 80, 22, 0.1);
      color: var(--color-brand);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 1rem;
  }

  .feature-title {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 2rem;
  }

  .feature-description {
      color: var(--color-gray);
      line-height: 1.7;
      margin-bottom: 2rem;
  }

  .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .feature-list li {
      color: var(--color-gray);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .feature-list li i {
      color: var(--color-accent);
      width: 20px;
  }

  /* Success Stories */
  .success-section {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
  }

  .success-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem;
      box-shadow: var(--shadow);
      text-align: center;
      margin-bottom: 2rem;
  }

  .success-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.5rem;
      border: 3px solid rgba(45, 80, 22, 0.1);
  }

  .success-quote {
      color: var(--color-gray);
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
  }

  .success-metrics {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
  }

  .metric {
      text-align: center;
  }

  .metric-value {
      color: var(--color-accent);
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 0.25rem;
  }

  .metric-label {
      color: var(--color-gray);
      font-size: 0.9rem;
  }

  /* CTA Section */
  .cta-section {
      background: linear-gradient(135deg, var(--color-brand) 0%, #3a6c1d 100%);
      color: var(--color-light);
      padding: 100px 0;
      text-align: center;
  }

  .cta-title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
  }

  .cta-subtitle {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }

  .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
  }

  .btn-light {
      background: var(--color-light);
      color: var(--color-brand);
      border: none;
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .btn-outline-light {
      border: 2px solid var(--color-light);
      color: var(--color-light);
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-outline-light:hover {
      background: var(--color-light);
      color: var(--color-brand);
      transform: translateY(-3px);
  }

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

      .platform-feature {
          flex-direction: column !important;
          text-align: center;
      }

      .feature-content {
          padding: 2rem 0;
      }

      .success-metrics {
          flex-direction: column;
          gap: 1rem;
      }
  }

  @media (max-width: 767.98px) {
      .services-hero {
          padding: 100px 0 60px;
          text-align: center;
      }

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

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

      .btn-light,
      .btn-outline-light {
          width: 250px;
      }
  }






  /* Work page */

  .process-hero {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
  }

  .hero-badge {
      background: var(--color-accent);
      color: var(--color-light);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
  }

  .hero-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 3rem;
  }

  .hero-subtitle {
      color: var(--color-gray);
      font-size: 1.3rem;
      margin-bottom: 2rem;
      max-width: 600px;
  }


  .ecosystem-section {
      padding: 100px 0;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(243, 112, 22, 0.03) 100%);
  }

  .ecosystem-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
  }

  .ecosystem-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .ecosystem-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 2.5rem;
      margin: 0 auto 2rem;
      transition: var(--transition);
  }

  .ecosystem-card:hover .ecosystem-icon {
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      transform: scale(1.1);
  }

  /* Delivery Network */
  .delivery-section {
      padding: 100px 0;
      background: var(--color-light);
  }

  .delivery-feature {
      display: flex;
      align-items: center;
      margin-bottom: 4rem;
  }

  .delivery-content {
      flex: 1;
      padding: 0 3rem;
  }

  .delivery-visual {
      flex: 1;
      text-align: center;
  }

  .delivery-visual img {
      max-width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
  }

  .feature-badge {
      background: rgba(45, 80, 22, 0.1);
      color: var(--color-brand);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 1rem;
  }

  .feature-title {
      color: var(--color-brand);
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 2rem;
  }

  .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .feature-list li {
      color: var(--color-gray);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .feature-list li i {
      color: var(--color-accent);
      width: 20px;
  }

  /* Benefits Section */
  .benefits-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--color-brand) 0%, #3a6c1d 100%);
      color: var(--color-light);
  }

  .benefit-card {
      text-align: center;
      padding: 2rem;
  }

  .benefit-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-light);
      font-size: 2rem;
      margin: 0 auto 1.5rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .benefit-title {
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1.2rem;
  }

  /* CTA Section */
  .cta-section {
      padding: 100px 0;
      text-align: center;
  }

  .cta-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
  }

  .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
  }

  .btn-brand {
      background: var(--color-accent);
      color: var(--color-light);
      border: none;
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-brand:hover {
      background: #e05f0a;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(243, 112, 22, 0.3);
  }

  .btn-outline-brand {
      border: 2px solid var(--color-brand);
      color: var(--color-brand);
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-outline-brand:hover {
      background: var(--color-brand);
      color: var(--color-light);
      transform: translateY(-3px);
  }

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

      .process-connector {
          display: none;
      }

      .delivery-feature {
          flex-direction: column;
          text-align: center;
      }

      .delivery-content {
          padding: 2rem 0;
      }
  }

  @media (max-width: 767.98px) {
      .process-hero {
          padding: 100px 0 60px;
          text-align: center;
      }

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

      .step-card {
          padding: 2rem;
      }

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

      .btn-brand,
      .btn-outline-brand {
          width: 250px;
      }
  }





  /* about page */

  .about-hero {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
      ;
      background-size: cover;
      background-position: center;
      color: var(--color-light);
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
  }

  .hero-badge {
      background: var(--color-accent);
      color: var(--color-light);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-title {
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 3.5rem;
  }

  .hero-subtitle {
      font-size: 1.3rem;
      opacity: 0.9;
      margin-bottom: 2.5rem;
      max-width: 600px;
  }

  /* Section Styles */
  .content-section {
      padding: 100px 0;
  }

  .section-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .section-subtitle {
      color: var(--color-gray);
      max-width: 600px;
      margin: 0 auto 3rem;
      font-size: 1.1rem;
      line-height: 1.6;
  }

  /* Story Section */
  .story-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem;
      box-shadow: var(--shadow);
      margin-bottom: 3rem;
  }

  .story-timeline {
      position: relative;
      padding-left: 2rem;
  }

  .story-timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--color-brand), var(--color-accent));
      border-radius: 2px;
  }

  .timeline-item {
      position: relative;
      margin-bottom: 3rem;
      padding-left: 2rem;
  }

  .timeline-item::before {
      content: '';
      position: absolute;
      left: -2.5rem;
      top: 0.5rem;
      width: 16px;
      height: 16px;
      background: var(--color-accent);
      border-radius: 50%;
      border: 3px solid var(--color-light);
      box-shadow: 0 0 0 3px var(--color-accent);
  }

  .timeline-year {
      color: var(--color-accent);
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
  }

  /* Mission & Vision */
  .mission-vision {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
  }

  .value-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 3rem 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
  }

  .value-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .value-icon {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 2.5rem;
      margin: 0 auto 2rem;
      transition: var(--transition);
  }

  .value-card:hover .value-icon {
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
      transform: scale(1.1);
  }

  /* Team Section */
  .team-card {
      background: var(--color-light);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
  }

  .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .team-avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1.5rem;
      border: 4px solid rgba(45, 80, 22, 0.1);
      transition: var(--transition);
  }

  .team-card:hover .team-avatar {
      border-color: var(--color-accent);
      transform: scale(1.05);
  }

  .team-social {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
  }

  .social-link {
      width: 40px;
      height: 40px;
      background: rgba(45, 80, 22, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      text-decoration: none;
      transition: var(--transition);
  }

  .social-link:hover {
      background: var(--color-accent);
      color: var(--color-light);
      transform: translateY(-2px);
  }

  /* Impact Section */
  .impact-stats {
      background: linear-gradient(135deg, var(--color-brand) 0%, #3a6c1d 100%);
      color: var(--color-light);
      padding: 80px 0;
  }

  .stat-item {
      text-align: center;
      padding: 2rem;
  }

  .stat-number {
      font-weight: 700;
      font-size: 3rem;
      margin-bottom: 0.5rem;
      color: var(--color-accent);
  }

  .stat-label {
      font-weight: 600;
      font-size: 1.1rem;
      opacity: 0.9;
  }

  /* Values Section */
  .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }

  .value-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      padding: 2rem;
      background: var(--color-light);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
  }

  .value-item:hover {
      transform: translateX(10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .value-item-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(243, 112, 22, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-brand);
      font-size: 1.8rem;
      flex-shrink: 0;
      transition: var(--transition);
  }

  .value-item:hover .value-item-icon {
      background: linear-gradient(135deg, var(--color-brand), var(--color-accent));
      color: var(--color-light);
  }

  /* CTA Section */
  .cta-section {
      background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(243, 112, 22, 0.05) 100%);
      padding: 100px 0;
      text-align: center;
  }

  .cta-title {
      color: var(--color-brand);
      font-weight: 700;
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
  }

  .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
  }

  .btn-brand {
      background: var(--color-accent);
      color: var(--color-light);
      border: none;
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-brand:hover {
      background: #e05f0a;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(243, 112, 22, 0.3);
  }

  .btn-outline-brand {
      border: 2px solid var(--color-brand);
      color: var(--color-brand);
      border-radius: 25px;
      padding: 1rem 2.5rem;
      font-weight: 600;
      transition: var(--transition);
  }

  .btn-outline-brand:hover {
      background: var(--color-brand);
      color: var(--color-light);
      transform: translateY(-3px);
  }

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

      .content-section {
          padding: 80px 0;
      }

      .story-card {
          padding: 2rem;
      }
  }

  @media (max-width: 767.98px) {
      .about-hero {
          padding: 120px 0 60px;
          text-align: center;
      }

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

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

      .btn-brand,
      .btn-outline-brand {
          width: 250px;
      }

      .value-item {
          flex-direction: column;
          text-align: center;
      }
  }