
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,600;1,400&display=swap');
:root{--orange:#FF7A00}
body{margin:0;font-family:'Poppins',sans-serif;color:#fff;text-align:center;background:#000;overflow-x:hidden}
.background{background-image:url('background.png');background-size:cover;background-position:center;position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1}
/* For your background div */
.background {
  position: fixed;         /* or absolute, depending on your layout */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('background.png');
  background-size: cover;  /* Ensures the image covers the whole area */
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
  .background {
    width: 100vw;
    height: 100vh;
    background-size: cover;     /* Keeps image covering the view */
    background-position: center;
  }
}.header{position:fixed;top:18px;left:18px;z-index:40}
.header img{height:56px}
.main{padding-top:110px;max-width:1100px;margin:0 auto}
.tagline{font-size:2.2rem;font-style:italic;margin-bottom:12px}
.testimonials{margin:40px auto 20px;padding:0 20px}
.quote{opacity:0;transform:translateY(20px);transition:all .9s ease-out;margin:18px 0}
.quote.visible{opacity:1;transform:translateY(0)}
.contact{margin:30px auto 60px;max-width:640px}
.contact form{display:flex;flex-direction:column;gap:10px;background:rgba(0,0,0,0.5);padding:18px;border-radius:10px}
.contact input,.contact textarea{padding:10px;border-radius:6px;border:none}
.btn{background:var(--orange);color:#fff;padding:12px 16px;border-radius:8px;border:none;font-weight:700}
footer{padding:28px 10px 60px;color:#fff;opacity:0.95}
footer a{color:#fff;text-decoration:none}
@media(max-width:700px){.tagline{font-size:1.4rem};.contact{width:90%}}
/* Desktop styles (default) */
.main {
  max-width: 800px;
  margin: 0 auto;
  /* other styles */
}

/* Mobile styles */
@media (max-width: 600px) {
  .main {
    max-width: 100%;
    padding: 10px;
    font-size: 1.1em;
    /* adjust as needed */
  }
  .testimonials .quote {
    font-size: 1em;
    /* make text readable on small screens */
  }
  header img {
    width: 150px;
    /* shrink logo for mobile */
  }
}
