* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  background: black;
  color: #f4f4f2;
  overflow-x: hidden;
}

header {
  background: #000;
  color: #fff;
  padding: 2% 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 175px;
}

.nav-links li {
  display: inline;
  margin: 0 15px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00cc00;
}

.banner{
  width: 75%;
}

.banner-mobile{
  width: 100%;
}

.hero {
  color: #fff;
  width: 100%;
  height: auto;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://via.placeholder.com/10?text=texture') repeat;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: #00cc00;
  color: #fff;
  padding: 15px 30px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,204,0,0.4);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.carousel {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

.carousel-slides {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
}

.slide.active {
  display: flex;
}

.slide p {
  font-size: 1.2rem;
  margin-top: 20px;
  max-width: 800px;
}

.carousel-dots {
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  display: inline-block;
}

.dot.active {
  opacity: 1;
  background: #00cc00;
}

section {
  padding: 80px 20px;
  max-width: 75%;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #0077b6;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  color: #000;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card i {
  font-size: 2rem;
  color: #00cc00;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.join-section {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

.join-gif {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gif-img {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: transparent;
  object-fit: contain;
}

.join-points {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.join-points div {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  color: #f4f4f2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.join-points div:hover {
  transform: scale(1.02);
}

/* Responsive stacking */
@media (max-width: 768px) {
  .join-section {
    flex-direction: column;
  }
  .join-gif, .join-points {
    flex: 1 1 100%;
  }
  .gif-img {
    width: 100%;
    height: auto;
  }
}

.progress-bar {
  background: #333;
  height: 5px;
  max-width: 300px;
  margin: 40px auto;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: #00cc00;
  transition: width 0.5s;
}

#contact {
  padding: 100px 20px;
  max-width: 800px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
}

input, textarea {
  padding: 15px;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 1.1rem;
}

button {
  padding: 15px;
  background: #000;
  color: #fff;
  border: 1px solid rgb(55, 55, 55);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s;
}

button:hover {
  background: #00cc00;
}

.contact-info {
  max-width: 600px;
  margin: auto;
  font-size: 1.2rem;
}

.social-links a {
  color: white;
  font-size: 2rem;
  margin: 0 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #00cc00;
}

footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  gap: 30px;
}

.footer-content .logo {
  justify-content: center;
  margin-bottom: 5%;
}

.footer-content .social-links {
  justify-content: flex-end;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
}

.footer-content a:hover {
  color: #00cc00;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00cc00;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  display: none;
  transition: opacity 0.3s;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-to-top.show {
  display: flex;
}

a {
  color: #0077b6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-content .logo, .footer-content .social-links {
    justify-content: center;
  }
}


/* === Mobile/Tablet styles === */
@media (max-width: 1024px) {
  /* Hide nav links on mobile only */
  header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
  }
  .nav-links {
    display: none !important;
  }

  /* Show mobile banner full width */
  .banner-mobile {
    display: block;
    width: 100%;
    padding: 5% 0;
  }

  .banner-mobile img {
    width: 100%;
    height: auto;
    display: block;

  }

  /* Hide desktop hero on mobile/tablet */
  .hero {
    display: none !important;
  }

  /* Optional: tweak mobile heading sizes */
  section h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* === Desktop styles (default) === */
@media (min-width: 1025px) {
  .banner-mobile {
    display: none !important;
  }

  .hero {
    display: block;
  }

  .nav-links {
    display: flex; /* or inline depending on your layout */
  }
}


/* Mobile CTA styling */
.mobile-cta-container {
  text-align: center;
  padding: 15px;
  display: none;
}

@media (max-width: 1024px) {
  .mobile-cta-container {
    display: block;
  }
}
