/* Why Choose Mapiles? */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: white;
}

.icon-blue { background: linear-gradient(135deg, #667eea, #764ba2); }
.icon-green { background: linear-gradient(135deg, #37B34A, #2d8f3a); }
.icon-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }

.feature-title {
    color: #0085FF;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.feature-title a:hover {
    color: #0066cc;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.section-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.stats-section {
    background: #1a1a1a;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 18px;
}

/* Tab Button */
.custom-nav-pills {
    background: transparent;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid #37B34A;
}

.custom-nav-pills .nav-link {
    border: none;
    border-radius: 0;
    padding: 15px 25px;
    font-weight: 500;
    color: #6c757d;
    background: transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid transparent;
}

.custom-nav-pills .nav-link:hover {
    color: #495057;
    background: rgba(0, 0, 0, 0.02);
}

.custom-nav-pills .nav-link.active {
    background: transparent;
    color: #212529;
    border-bottom-color: #212529;
    font-weight: 600;
}

.custom-nav-pills .nav-link.active:hover {
    color: #212529;
}

@media (max-width: 768px) {
    .custom-nav-pills {
        width: 100%;
        justify-content: center;
    }
    
    .custom-nav-pills .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Trusted Developers */
.developer-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.developer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.developer-logo {
  height: 50px;
  object-fit: contain;
  max-width: 100%;
}

.rating i {
  font-size: 0.9rem;
  margin-right: 1px;
}

.rating small {
  font-size: 0.75rem;
  margin-left: 3px;
}

/* CTA */
.cta-minimal {
  background: #f8fafc;
  color: #111;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.cta-minimal h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-minimal p {
  color: #374151;
  margin-bottom: 1.5rem;
}

.cta-minimal .text-highlight {
  color: #02A4FF;
}

.cta-minimal .btn {
  border-radius: 8px;
  transition: all 0.25s ease;
}

/* Gradient Button */
.cta-minimal .btn-gradient {
  background: linear-gradient(90deg, #02A4FF, #00CFFF);
  color: #fff;
  border: none;
}

.cta-minimal .btn-gradient:hover {
  background: linear-gradient(90deg, #0096E6, #00B8E6);
  color: #fff;
}

.cta-minimal .btn-outline-dark:hover {
  background: #111;
  color: #fff;
}




