/* assets/css/index.css */

.hero {
    background-color: transparent;
    border-bottom: 1px solid #333;
  }
  
  .hero h1 {
    font-weight: 600;
  }
  
  .lead {
    color: #ced4da;
  }
  
  /* Feature Boxes */
  .feature-box {
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-4px);
    border-color: #0dcaf0 !important;
  }
  
  .feature-box h5 {
    color: #0dcaf0;
  }

  /* Custom brand blue */
.border-brand {
    border-color: #0dcaf0 !important;  /* Bootstrap info blue */
  }
  .text-brand {
    color: #0dcaf0 !important;
  }
  
  