/* Base reset & container */
* {
    box-sizing: border-box;
    margin: 50;
    padding: 10;
    font-family: 'Segoe UI', sans-serif;
  }
  /* Solutions Section */
  .solutions-section {
    padding: 4rem 0;
    background: #f9fcff;
  }
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .solution-card {
    display: flex;
    background: #eaf5ff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .solution-img {
    width: 150px;
    object-fit: cover;
  }
  .solution-content {
    padding: 1.5rem;
  }
  .solution-content h3 {
    font-size: 1.5rem;
    color: #0b194e;
    margin-bottom: 0.75rem;
  }
  .solution-content p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .solutions-grid {
      grid-template-columns: 1fr;
    }
    .solution-card {
      flex-direction: column;
    }
    .solution-img {
      width: 100%;
      height: 200px;
    }
  }
  /* Footer Section */
  .site-footer {
    position: relative;
    height: 40vh;
    overflow: hidden;
  }
  .footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
  .footer-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    padding: 1rem 0;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    background: transparent;
  }
  .footer-logo {
    height: 40px;
    width: auto;
    background: transparent;
    border-radius:10px;
  }
  .footer-nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    color: #ccc;
    font-size: 0.875rem;
  }