/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Base Parallax Style */
.parallax,
.parallax-dark,
.parallax-testimonial,
.parallax-collab,
.parallax-footer {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* Responsive Fix for Mobile (iOS Safari, Android) */
@media (max-width: 768px) {
  .parallax,
  .parallax-dark,
  .parallax-testimonial,
  .parallax-collab,
  .parallax-footer {
    background-attachment: scroll; /* fallback for mobile */
  }
}

/* Welcome Banner */
.parallax {
  background-image: url('/images/par-bg.png');
  height: 400px;
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* CTA Section */
.parallax-dark {
  background-image: url('/images/par-bg.png');
  height: 400px;
  color: #fff;
}
.parallax-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}
.cta-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta-content h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.cta-content a {
  background: #ff6b00;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-content a:hover {
  background: #ff8c33;
}

/* Testimonial Section */
.parallax-testimonial {
  background-image: url("/images/par2-bg.png");
  height: 420px;
  color: #fff;
}
.parallax-testimonial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.testimonial-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}
.testimonial-content h2 {
  font-size: 2em;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.testimonial-content p {
  font-size: 1.1em;
  line-height: 1.6;
  font-style: italic;
}
.testimonial-author {
  margin-top: 20px;
  font-weight: bold;
  color: #ffb347;
}

.parallax5 {
  /* The image used */
  background-image: url("/images/slider1-1.jpg");

  /* Set a specific height */
 height: 350px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  <!--opacity: .10;-->
  
}

/* Collaboration Section */
.parallax-collab {
  background-image: url('/images/par-collab.png');
  height: 420px;
  color: #e0e0ff;
}
.parallax-collab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(40,40,80,0.8), rgba(100,0,150,0.5));
}
.collab-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}
.collab-content h2 {
  font-size: 2.3em;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.collab-content p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #cfcfff;
}

/* Footer Community Section */
.parallax-footer {
  background-image: url('/images/par-footer.png');
  height: 380px;
  color: #e0e0ff;
}
.parallax-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,60,0.8), rgba(80,0,120,0.4));
}
.footer-content {
  position: relative;
  text-align: center;
  z-index: 1;
}
.footer-content h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.footer-content p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #cfcfff;
}
.social-icons a {
  display: inline-block;
  margin: 0 10px;
  color: #a77bff;
  font-size: 1.6em;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
  color: #d0aaff;
  transform: scale(1.1);
}
