
#hero-18 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 68vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: right;
}
#hero-18 .hero-overlay-18 {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#hero-18 .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
#hero-18 .hero-content-wrapper-18 {
  max-width: 680px;
  margin-right: 0;
  margin-left: auto;
}
#hero-18 .hero-title-18 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-18 .hero-subtitle-18 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-18 .hero-cta-button-18 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
#hero-18 .hero-cta-button-18:hover {
  transform: translateY(-2px);
  filter: brightness(110%);
}
@media (max-width: 767.98px) {
  #hero-18 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-18 .container {
    justify-content: center;
  }
  #hero-18 .hero-content-wrapper-18 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-18 .hero-title-18 {
    font-size: 2.4rem;
  }
  #hero-18 .hero-subtitle-18 {
    font-size: 1.1rem;
  }
}



#mobile-app-24 {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
#mobile-app-24 .gradient-cta-content {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
#mobile-app-24 .cta-icon {
  max-width: 60px;
  height: auto;
  margin-bottom: 1.5rem;
}
#mobile-app-24 .cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#mobile-app-24 .cta-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0.9;
}
#mobile-app-24 .cta-download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
#mobile-app-24 .btn-download-app-cta {
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#mobile-app-24 .btn-download-app-cta:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#mobile-app-24 .btn-download-app-cta i {
  font-size: 2em;
  margin-right: 12px;
  color: #555;
}
#mobile-app-24 .btn-download-app-cta .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-24 .btn-download-app-cta .button-text span:first-child {
  font-size: 0.85em;
  color: #6c757d;
}
#mobile-app-24 .btn-download-app-cta .button-text span:last-child {
  font-size: 1.15em;
  font-weight: 600;
  color: #212529;
}
@media (max-width: 767.98px) {
  #mobile-app-24 {
    padding: 80px 0;
  }
  #mobile-app-24 .cta-title {
    font-size: 2.2rem;
  }
  #mobile-app-24 .cta-description {
    font-size: 1.05rem;
  }
}
@media (max-width: 575.98px) {
  #mobile-app-24 .cta-download-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  #mobile-app-24 .btn-download-app-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }
}



#features-15 {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}
#features-15 .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-15 .section-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#features-15 .feature-item {
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  cursor: pointer;
}
#features-15 .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#features-15 .feature-icon {
  font-size: 40px;
  color: #17a2b8;
  margin-bottom: 20px;
}
#features-15 .feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#features-15 .feature-description {
  font-size: 14px;
  color: #6c757d;
}



#portfolio-5 {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: #ffffff;
}
#portfolio-5 .section-title-container {
  margin-bottom: 40px;
}
#portfolio-5 .section-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #2c3e50;
}
#portfolio-5 .project-hero-image img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#portfolio-5 .project-header .project-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 5px;
}
#portfolio-5 .project-header .project-meta-info {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
}
#portfolio-5 .project-header .project-meta-info span:not(:last-child)::after {
  content: "|";
  margin: 0 8px;
  color: #ced4da;
}
#portfolio-5 .project-content-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}
#portfolio-5 .project-content-description p {
  margin-bottom: 1rem;
}
#portfolio-5 .key-highlights-section .highlights-main-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d6efd;
  display: inline-block;
}
#portfolio-5 .key-highlights-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}
#portfolio-5 .key-highlights-list li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}
#portfolio-5 .key-highlights-list li .highlight-icon {
  font-size: 1.1rem;
  color: #20c997;
  margin-right: 12px;
  width: 22px;
  text-align: center;
}
#portfolio-5 .project-gallery-section .gallery-main-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 20px;
}
#portfolio-5 .gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}
#portfolio-5 .gallery-thumbnail-item a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#portfolio-5 .gallery-thumbnail-item a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
#portfolio-5 .gallery-thumbnail-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}
#portfolio-5 .project-final-link a {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
#portfolio-5 .project-final-link a i {
  margin-left: 8px;
}



#how-it-works-24 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f0f2f5;
}
#how-it-works-24 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-24 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222b38;
}
#how-it-works-24 .section-main-subtitle {
  font-size: 1.1rem;
  color: #525f7f;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-24 .reveal-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#how-it-works-24 .card-initial-content {
  padding: 30px;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#how-it-works-24 .card-icon {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}
#how-it-works-24 .card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 10px;
}
#how-it-works-24 .card-initial-description {
  font-size: 0.9rem;
  color: #6c757d;
}
#how-it-works-24 .card-revealed-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 110, 253, 0.9);
  color: #ffffff;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
#how-it-works-24 .revealed-description {
  font-size: 0.95rem;
  line-height: 1.6;
}
#how-it-works-24 .reveal-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
#how-it-works-24 .reveal-card:hover .card-initial-content {
  opacity: 0.1;
}
#how-it-works-24 .reveal-card:hover .card-revealed-content {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  #how-it-works-24 .reveal-card {
    margin-bottom: 30px;
  }
}



#call-to-action-14 {
  padding: 80px 0;
  background-color: #343a40;
  color: #fff;
}
#call-to-action-14 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
#call-to-action-14 .col {
  flex: 1;
  padding: 30px;
  text-align: center;
}
#call-to-action-14 .left-col,
#call-to-action-14 .right-col {
  max-width: 30%;
}
#call-to-action-14 .center-col {
  max-width: 35%;
}
#call-to-action-14 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
#call-to-action-14 p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
#call-to-action-14 .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
#call-to-action-14 .left-col .btn,
#call-to-action-14 .right-col .btn {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}
#call-to-action-14 .left-col .btn:hover,
#call-to-action-14 .right-col .btn:hover {
  background-color: #fff;
  color: #343a40;
}
#call-to-action-14 .center-col .btn {
  background-color: #ffc107;
  color: #343a40;
}
#call-to-action-14 .center-col .btn:hover {
  background-color: #e0a800;
}
@media (max-width: 992px) {
  #call-to-action-14 .left-col,
  #call-to-action-14 .right-col {
    max-width: 45%;
  }
  #call-to-action-14 .center-col {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  #call-to-action-14 .col {
    max-width: 100%;
    margin-bottom: 30px;
  }
}


