
.hero {
    height: 100vh;
    background: url('photos/zyto.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  






  .buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  
  .btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .btn.primary {
    background: rgb(255, 122, 0);
    color: #fff;
  }
  
  .btn.primary:hover {
    background: #995112;
  }
  
  .btn.secondary {
    border: 2px solid #fff;
    color: #fff;
  }
  
  .btn.secondary:hover {
    background: #fff;
    color: #000;
  }
  






  .about {
    background: #fff;
    color: #333;
    padding: 80px 20px;
    margin-top:4%;
  }
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 500px;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .btn.orange {
    display: inline-block;
    padding: 12px 25px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn.orange:hover {
    background: #e56b00;
  }
  
  .about-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    max-width: 100%;
  }
  






  .why-us {
    padding: 80px 150px;
    background: #fff;
    text-align: center;
  }
  
  .why-container {
    margin: 0 auto;
  }
  
  .why-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
  }
  
  .underline2 {
    width: 60px;
    height: 4px;
    background: #ff7a00;
    margin: 15px auto;
    border-radius: 2px;
  }
  
  .subtitle {
    font-size: 1rem;
    color: #444;
    margin-bottom: 50px;
  }
  
  .why-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .feature-box {
    flex: 1 1 280px;
    max-width: 300px;
    margin:20px;
  }
  
  .feature-box img {
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(1) saturate(2) hue-rotate(210deg);
  }
  
  .feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }
  .section2{
    display:none;
  }
  .btn.primary{
    border:solid 2px #ff7a00;
    background-color: white;
    color: #ff7a00;
  }
  .btn.primary:hover{
    background-color: rgb(0, 0, 0);
  }





  @media (max-width: 768px) {
    body{
      background-color: white;
    }
    header{
      background: rgba(0, 0, 0, 0.5);
    }
  .section2{
    display:flex;
    margin-top:0;
  }
    .hero{
      display: none;
    }
    .hero-content h1 {
      text-align: center;
    }
  .why-us{
    margin-top:25%;
    padding:5%;
    font-size:10%;
    width:100vw;
  }
  .why-us h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
  }
  .why-us h3{
    font-size: 0.7rem;
    font-weight: 500;
    color: #1a1a1a;
  }
  .why-us p{
    font-size: 0.6rem;
    font-weight: 400;
    color: #1a1a1a;
  }
  .why-us img{
    width: 15%;
  }
  .feature-box{
    margin:0;
  }
    .footer-container {
      flex-direction: column;
      text-align: center;
      gap: 20px;
      padding: 20px;
    }
  
    .footer-section {
      width: 100%;
    }
  
    .footer-section h3 {
      font-size: 1rem;
    }
  
    .footer-section p,
    .footer-section li {
      font-size: 0.85rem;
      line-height: 1.3rem;
    }
  
    .map-container iframe {
      height: 180px;
    }
  
  
  
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 25px;
      padding: 25px 10px;
    }
  
    .footer-section {
      width: 100%;
      max-width: 300px;
    }
  
    .footer-section h3 {
      font-size: 1rem;
      margin-bottom: 8px;
    }
  
    .footer-section p,
    .footer-section li,
    .footer-section a {
      font-size: 0.9rem;
      line-height: 1.4rem;
    }
  
    .footer-logo {
      max-width: 150px;
      margin: 0 auto 10px auto;
    }
  
    .map-container iframe {
      width: 100%;
      height: 200px;
      border-radius: 8px;
    }
  
    .footer-bottom {
      font-size: 0.75rem;
      padding: 10px;
      text-align: center;
    }

    .btn.primary{
      margin-top:10%;
      font-size: 800%;
    }
  }
  