
    .navbar .nav-link.active {
      border-bottom: 3px solid red;
    }
    .logo {
      width: 40px;
      height: 50px;
      color: red;
      font-weight: bold;
      font-size: 1.5rem;
    }
    .logo-subtext {
      color: red;
      font-size: 1.2rem;
    }
    .top-contact {
      font-size: 0.9rem;
    }
    .btn-demo {
      background-color: red;
      color: white;
      font-weight: bold;
    }

    .hero-section {
      position: relative;
      background: red;
      color: white;
      display: flex;
      align-items: center;
      padding: 3rem 1rem;
      overflow: hidden;
    }

    .hero-text {
    
      max-width: 600px;
    }

    .hero-section h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    .hero-section p {
      font-size: 1.1rem;
      margin-top: 1rem;
    }

    .hero-section .btn-dark {
      margin-top: 2rem;
      font-weight: bold;
      padding: 0.75rem 2rem;
    }

   
    .list-unstyled> li a:hover,
    .list-unstyled> li a:focus {
      text-decoration: none;
    }
    .list-unstyled> li a {
      text-decoration: none;
    }


    @media (max-width: 768px) {
      .hero-section {
        flex-direction: column;
        padding: 2rem 1rem;
      }
      .hero-image {
        position: relative;
        clip-path: none;
        width: 100%;
        height: 300px;
      }
    }
  