/* Hero Section */
.hero {
    padding: 80px 20px 0 20px;
    background-color: #0b0c10;
  }
  
  .hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
  }
  
  /* Left Box */
  .hero-left h1 {
    font-size: 2.5rem;
    color: #66fcf1;
    margin-bottom: 20px;
  }
  
  .hero-left p {
    font-size: 1.1rem;
    color: #cfcfcf;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .btn-primary {
    background-color: #66fcf1;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #e65c00;
  }
  
  /* Right Box */
  .hero-right {
    /*background-color: #fff;*/
    border: 2px solid #66fcf1;
    background: linear-gradient(135deg, #0b0c10 0%, #1f2833 100%);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }
  
  .hero-right h2 {
    margin-bottom: 25px;
    font-size: larger;
    color: #66fcf1;
    text-align: center;
  }
  
  .consultation-form {
    display: flex;
    flex-direction: column;
  }
  
  .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .form-row input {
    flex: 1 1 45%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid;
    /* border-radius: 6px; */
    font-size: 1rem;
    /* background-color: #fafafa; */
    transition: border 0.3s ease;
    background: transparent;
    color: white;
  }
  
  .form-row input:focus {
outline: none;
    border-color: #66fcf1;
    background-color: transparent;
  }
  
  .btn-schedule {
    align-self: center;
    background-color: #222;
    color: #fff;
    border: 2px solid #66fcf1;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-schedule:hover {
    background-color: white;
    color: black;
  }
  /* Logo Slider */
.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    margin-top: 30px;
    /* background-color: #fff; */
  }
  
  .slider-track {
    display: flex;
    width: calc(250px * 10); /* adjust if logos added/removed */
    animation: scroll 25s linear infinite;
    cursor: grab;
  }
  
  .slide {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  .slide img {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }
  
  .slide img:hover {
    filter: grayscale(0%);
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .hero-left h1 {
      font-size: x-large;
      text-align: center;
    }
  
    .hero-left p {
      text-align: center;
    }
  
    .btn-primary {
      display: block;
      margin: 0 auto;
      text-align: center;
    }
  
    .form-row {
      flex-direction: column;
    }
  
    .form-row input {
      width: 100%;
    }
  
    .btn-schedule {
      width: 100%;
      margin-top: 10px;
    }
    .slide {
        width: 180px;
      }
    
      .slider-track {
        width: calc(180px * 10);
      }
  }
  