.section-title {
  color: #1a0a4e;
  font-weight: 700;
}
.section-subtitle {
  color: #444;
  margin-bottom: 50px;
}
.text-dark-blue {
  color: #1a0a4e;
}
.text-content {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.title-underline {
  width: 80px;
  height: 4px;
  background-color: #a134d6;
  border-radius: 2px;
  margin: 15px auto 25px auto;
}
.title-underline.start {
  margin: 15px 0 30px 0; 
}

.btn-purple {
  background-color: #a134d6;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(161, 52, 214, 0.3);
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-purple:hover {
  color: #ffffff;
  opacity: 0.9;
  transform: translateY(-2px);
}

.feature-card {
  border: 1px solid #e0d4f3;
}
.feature-card .icon-circle {
  width: 80px;
  height: 80px;
  background-color: #f0e6ff;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; 
}
.feature-card .icon-circle img {
  width: 80px;
  height: 80px;
  object-fit: cover; 
}
.feature-card .card-title {
  color: #1a0a4e;
  font-weight: 700;
  margin-bottom: 15px;
}
.feature-card .card-text {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.application-tabs .nav-link {
  margin: 0 8px;
  border: 1px solid #ddd;
  color: #555;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 25px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.application-tabs .nav-link.active {
  border-color: #a134d6;
  color: #a134d6;
  background-color: #fff;
}
.application-tabs .nav-link:hover {
  border-color: #c08de0;
  color: #a134d6;
}

.application-tabs .tab-content img {
  display: block;  
  width: 100%;    
  max-width: 700px; 
  height: auto;   
  margin-left: auto;
  margin-right: auto; 
  object-fit: contain;
}

.how-it-works .icon-circle-small {
  width: 60px;
  height: 60px;
  background-color: #f0e6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-it-works .icon-circle-small img {
  width: 30px;
  height: 30px;
}
.how-it-works .item-title {
  color: #1a0a4e;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.how-it-works .item-text {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.footer-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 300px;
}
.footer-section p {
  color: #ffffff !important;
  font-size: 15px;
}
.footer-section a {
  color: #ffffff !important;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-section a:hover {
  color: #e0d4ff !important;
}
.footer-section h6 {
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-section .logo-text {
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .application-tabs .nav {
    flex-wrap: wrap;
  }
  .application-tabs .nav-item {
    margin-bottom: 10px;
  }
  .application-tabs .nav-link {
    margin: 0 5px;
    padding: 6px 20px;
  }
}

@media (min-width: 992px) {
  .application-tabs .tab-content img {
    min-height: 520px; 
  }
}