/* General */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

nav h1 {
  font-size: 24px;
  color: blue;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  text-align: center;
}

.nav-links li a {
  text-decoration: none;
  color: blue;
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    position: absolute;
    top: 60px;
    right: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .hamburger {
    display: block;
  }
}

/* Section Styles */
section {
  padding: 50px 20px;
}

h1, h2 {
  color: blue;
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  border-radius: 15px;
}

/* Home Section */
#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #e6f7ff;
}

#home h1 {
  font-size: 48px;
  margin-top: 20px;
}

/* About Section */
#about {
  background: #f9f9f9;
}

#about .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#about img {
  width: 80%;
  max-width: 600px;
  margin-bottom: 20px;
}

#about .text p {
  background: rgba(255, 255, 255, 0.7);
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  line-height: 1.6;
}

/* Buy Section */
#buy {
  background: #e6f7ff;
}

.buy-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.buy-box input {
  width: 300px;
  padding: 10px;
  border: 2px solid blue;
  border-radius: 5px;
  font-size: 16px;
}

.buy-box button {
  padding: 10px;
  background: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.buy-button {
  padding: 15px 30px;
  background: blue;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

/* How to Buy Section */
#how-to-buy {
  background: #ffffff;
}

#how-to-buy .steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.step {
  background: rgba(0, 0, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step h3 {
  color: blue;
  margin-bottom: 10px;
}

/* Roadmap Section */
#roadmap {
  background: #f9f9f9;
}

#roadmap .phases {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.phase {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Vision Section */
#vision {
  background: #e6f7ff;
}

#vision p {
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.8;
  font-size: 18px;
}

/* Contact Section */
#contact {
  background: #f9f9f9;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icons img {
  width: 40px;
  cursor: pointer;
  transition: transform 0.2s;
}

.icons img:hover {
  transform: scale(1.1);
}




/* Memes Section */
#memes {
  background: #ffffff;
  padding: 50px 20px;
}

#memes h2 {
  color: blue;
  margin-bottom: 20px;
}

.memes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.memes-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 80%;
  max-width: 800px;
}

.memes-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.memes-wrapper img:hover {
  transform: scale(1.1);
}

.arrow {
  background: blue;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}





/* Memes Section */
#memes {
  background: #ffffff;
  padding: 50px 20px;
}

#memes h2 {
  color: blue;
  margin-bottom: 20px;
}

.memes-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.memes-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 80%;
  max-width: 800px;
}

.meme {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, box-shadow 0.3s;
}

.meme img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.arrow {
  background: blue;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.arrow:hover {
  opacity: 1;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}



#testimonials {
  background: #ffffff;
  padding: 50px 20px;
}

#testimonials h2 {
  color: blue;
  margin-bottom: 20px;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial {
  background: #e6f7ff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: left;
}

.testimonial p {
  font-style: italic;
}

.testimonial h4 {
  margin-top: 10px;
  font-weight: bold;
  color: blue;
}



#faq {
  background: #f9f9f9;
  padding: 50px 20px;
}

#faq h2 {
  color: blue;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item button {
  background: blue;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.faq-item .faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 16px;
  background: #ffffff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


#newsletter {
  background: #ffffff;
  padding: 50px 20px;
}

#newsletter h2 {
  color: blue;
  margin-bottom: 20px;
}

#newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#newsletter input {
  padding: 10px;
  border: 2px solid blue;
  border-radius: 5px;
  width: 80%;
  max-width: 400px;
}

#newsletter button {
  padding: 10px 20px;
  background: blue;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: blue;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
}




#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid blue;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



#countdown {
  text-align: center;
  padding: 50px 20px;
}

#timer {
  font-size: 24px;
  color: blue;
}

.dark-mode {
  background: #121212;
  color: white;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3 {
  color: #1e90ff;
}


.parallax {
  background-image: url('background.jpg');
  background-attachment: fixed;
  background-size: cover;
  height: 400px;
}


#typing-effect {
  font-size: 2rem;
  text-align: center;
}

.typed-text {
  color: blue;
  font-weight: bold;
  border-right: 2px solid blue;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}




#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: blue;
  width: 0%;
  z-index: 1000;
}


/* General Animation for Images and Icons */
img, .social-icons img {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease, transform 1s ease;
}

img.visible, .social-icons img.visible {
  opacity: 1;
  transform: scale(1);
}