* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    overflow: scroll;
  }

  .bg {
    background: url('../images/poovar-metro-boating-bg.webp') no-repeat center center fixed;
    background-size: cover;
    animation: zoom 5s ease-in-out infinite alternate;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: -1;
  }

  @keyframes zoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.05);
    }
  }

  /*.logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }*/

  .logo {
    position: relative;
    top: 20px;
    text-align: center;
    z-index: 10;
  }

  .logo img {
    max-width: 250px;
    height: auto;
  }

  .overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    overflow: scroll;
  }

  h1 {
    font-size: 4.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    line-height: 5rem;
  }

  p {
    font-size: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    max-width: 800px;
  }

  .call-text{
      font-weight: 600;
      font-size: 2rem;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }


  .buttons a {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
  }

  .buttons a:hover {
    transform: scale(1.05);
  }

  .call-text a{
      text-decoration: none;
      color: white;
  }

  .call {
    background-color: #0033a1;
    color: white;
  }

  .whatsapp {
    background-color: #049d57;
    color: white;
  }

  @media (max-width: 400px) {
    h1 {
      font-size: 3rem;
      line-height: 3.5rem;
    }

    p {
      font-size: 1.2rem;
    }

    .logo img {
      max-width: 300px;
    }

    .buttons {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .call-text{
      font-size: 1.2rem;
  }

    .buttons a {
      width: 100%;
      justify-content: center;
      padding: 12px 20px;
      font-size: 1rem;
    }
  }

  @media (min-width: 401px) and (max-width: 768px) {

    h1 {
      font-size: 3.5rem;
      line-height: 4rem;
    }

    p {
      font-size: 1.5rem;
    }

    .logo img {
      max-width: 300px;
    }

    .buttons {
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .call-text{
      font-size: 1.5rem;
  }

    .buttons a {
      width: 100%;
      justify-content: center;
      padding: 12px 20px;
      font-size: 1.5rem;
    }
  }

  