.contact-form-c {
  color: #fff;
}

.margin-top-80 {
  margin-top: 80px;
}

.email-data {
    color: #fff;
}

.dark-link {
    color:#060927;
}

/* Modern startup styling */
.gap-3 > * {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gap-3 {
    gap: 1rem;
  }
  .gap-3 > * {
    margin-bottom: 0;
  }
}

.min-vh-100 {
  min-height: 100vh;
}

.g-4 > * {
  padding: 1.5rem;
}

.bg-primary {
  background: linear-gradient(135deg, #060927 0%, #0a0f3d 100%) !important;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #060927;
}

/* Smooth animations */
.btn, .card, .bg-dark {
  transition: all 0.3s ease;
}

.bg-dark:hover {
  background-color: #333 !important;
}

/* Modern card design */
.modern-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.modern-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
}

/* Custom list styling */
.custom-list {
  list-style: none;
  padding-left: 0;
  color: #6c757d;
}

.custom-list li {
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.custom-list li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #060927;
  border-radius: 50%;
}

/* Benefits list styling */
.benefits-list {
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.benefits-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.benefits-list div {
  flex: 1;
}

.benefits-list .d-block {
  margin-bottom: 0.25rem;
}

/* Typography improvements */
.lead-sm {
  font-size: 1.1rem;
  line-height: 1.7;
}

.display-4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-5 {
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

.h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.h5 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.75rem;
  }
  
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
  
  .modern-card {
    padding: 2rem !important;
  }
  
  .benefits-list li {
    padding: 1rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}