
#mobile-app-1 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
#mobile-app-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 30px;
}
#mobile-app-1 .description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}
#mobile-app-1 .download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#mobile-app-1 .download-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.3s;
}
#mobile-app-1 .download-btn:hover {
  background: #0056b3;
}
#mobile-app-1 .download-btn i {
  margin-right: 10px;
}



#features-2 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#features-2 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}
#features-2 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
  text-align: center;
}
#features-2 .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
#features-2 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-2 .feature-image {
  width: 40%;
  height: auto;
}
#features-2 .feature-content {
  padding: 20px;
  width: 60%;
}
#features-2 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #17a2b8;
}
#features-2 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#how-it-works-28 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
#how-it-works-28 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-28 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}
#how-it-works-28 .section-main-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-28 .gantt-chart-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0;
  border: 1px solid #dee2e6;
  border-radius: 8px;
}
#how-it-works-28 .gantt-chart {
  position: relative;
  min-width: 800px;
}
#how-it-works-28 .gantt-timeline-labels {
  display: flex;
  padding-left: 200px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#how-it-works-28 .gantt-timeline-labels .timeline-label {
  flex-grow: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #6c757d;
  border-right: 1px dashed #e0e0e0;
}
#how-it-works-28 .gantt-timeline-labels .timeline-label:last-child {
  border-right: none;
}
#how-it-works-28 .gantt-phase-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  min-height: 40px;
}
#how-it-works-28 .gantt-phase-name {
  width: 190px;
  padding-right: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #343a40;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-right: 1px solid #e0e0e0;
}
#how-it-works-28 .gantt-phase-bars-area {
  flex-grow: 1;
  position: relative;
  display: grid;
}
#how-it-works-28 .gantt-phase-bar {
  height: 25px;
  border-radius: 4px;
  background-color: #0d6efd;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 0.75rem;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s;
}
#how-it-works-28 .gantt-phase-bar:hover {
  opacity: 0.8;
}
#how-it-works-28 .gantt-phase-bar .bar-details {
  display: none;
}
#how-it-works-28 .gantt-grid-line {
  border-right: 1px dashed #e9ecef;
}
#how-it-works-28 .gantt-grid-line:last-child {
  border-right: none;
}



#faq-23 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-23 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-23 .faq-trigger-list .list-group-item {
  padding: 1rem 1.25rem;
  font-weight: 500;
  color: #343a40;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-color: #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#faq-23 .faq-trigger-list .list-group-item:hover {
  background-color: #eef2f7;
  color: #0d6efd;
}
#faq-23 .faq-trigger-list .list-group-item i {
  color: #adb5bd;
  font-size: 0.9em;
}
#faq-23 .modal-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
#faq-23 .modal-title {
  font-weight: 600;
  font-size: 1.2rem;
}
#faq-23 .modal-body {
  padding: 1.5rem 2rem;
  line-height: 1.7;
}
#faq-23 .modal-body img {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #eee;
}
#faq-23 .modal-body p:last-child {
  margin-bottom: 0;
}
#faq-23 .modal-footer {
  border-top: 1px solid #dee2e6;
  background-color: #f8f9fa;
}



#testimonials-17 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f8f9fa);
}
#testimonials-17 .container {
  max-width: 1140px;
}
#testimonials-17 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#testimonials-17 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-17 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-17 .minimalist-quote-wall {
  column-gap: var(--column-gap, 2.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-17 .minimalist-quote-item {
  padding: 25px 0;
  margin-bottom: var(--column-gap, 2.5rem);
  page-break-inside: avoid;
  break-inside: avoid;
  border-top: 2px solid #e9ecef;
}
#testimonials-17 .minimalist-quote-item blockquote {
  font-size: 1.3rem;
  font-weight: 400;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: normal;
  border-left: none;
  padding-left: 0;
  position: relative;
}
#testimonials-17 .minimalist-quote-item blockquote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: #adb5bd;
  position: absolute;
  left: -15px;
  top: -10px;
  line-height: 1;
  opacity: 0.6;
}
#testimonials-17 .minimalist-quote-item .quote-author {
  text-align: right;
}
#testimonials-17 .minimalist-quote-item .client-name {
  display: block;
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}
#testimonials-17 .minimalist-quote-item .client-position {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
}
@media (min-width: 768px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-17 .minimalist-quote-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-17 {
    padding: 50px 0;
  }
  #testimonials-17 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote {
    font-size: 1.15rem;
  }
  #testimonials-17 .minimalist-quote-item blockquote::before {
    font-size: 3rem;
    left: -10px;
    top: -5px;
  }
}



#call-to-action-19 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.cta-features-intro h2 {
  font-weight: 700;
  color: #212529;
}
.cta-features-intro p {
  color: #6c757d;
  font-size: 1.1rem;
}
.cta-features-list {
}
.cta-feature-item {
  padding: 1rem;
}
.cta-feature-icon i {
  margin-bottom: 1rem;
}
.cta-feature-title {
  font-weight: 600;
  color: #343a40;
}
.cta-feature-description {
  color: #6c757d;
  font-size: 0.9rem;
}
.cta-features-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-features-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-features-button .btn i {
  margin-left: 8px;
}


