body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: black;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Makes sure it stays on top of other elements */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: white;
  border-bottom: 1px solid #ccc; /* Replace ... with your color */
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Register Button */
.register-btn {
  background-color: #9945FF; /* Solana color */
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  margin-right: 1rem;
  cursor: pointer;
  font-weight: bold;
}

/* Hamburger */
.menu-icon {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-icon div {
  height: 4px;
  background-color: black;
  border-radius: 2px;
}

/* Dropdown Panel */
.dropdown-panel {
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  height: 180px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: top 0.3s ease;
  z-index: 1000;
  padding: 1rem;
}

.dropdown-panel.open {
  top: 60px; /* just below header */
}

.dropdown-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-panel li {
  margin: 0.5rem 0;
}

.dropdown-panel a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  float: right;
  cursor: pointer;
}

@media (min-width: 768px) {
  .dropdown-panel {
    display: none;
  }
}

/* Base footer styles */
.footer {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  border-top: 1px solid #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #00bcd4;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #00bcd4;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #00bcd4;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }
}

.testimonials {
      max-width: 700px;
      background: #ffffff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 2rem;
      text-align: center;
    }

    .testimonial {
      display: none;
      animation: fadeIn 0.6s ease-in-out;
    }

    .testimonial.active {
      display: block;
    }

    .quote {
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 1rem;
    }

    .author {
      font-weight: bold;
      color: #555;
    }

    .buttons {
      margin-top: 1.5rem;
    }

    .btn {
      border: none;
      background-color: #6366f1;
      color: #fff;
      padding: 0.5rem 1rem;
      margin: 0 0.5rem;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s;
    }

    .btn:hover {
      background-color: #4f46e5;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .ticker-box {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .ticker-message {
    font-size: 18px;
    margin: 0;
    }
    
    .partners-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #F1EFFA;
    color: black;
    }
    
    .partners-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: black;
    }
    
    .partners-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    }
    
    .partner {
    flex: 0 0 auto;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    min-width: 150px;
    transition: transform 0.3s ease;
    color: black;
    }
    
    .partner:hover {
    transform: scale(1.05);
    }
    
    .partner img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    margin-left: 20%;
    }
    
    .partner p {
    margin: 0;
    font-weight: bold;
    font-size: 1rem;
    }
    
    .popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1e1e2f;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
    z-index: 9999;
    }
    
    .popup.show {
    opacity: 1;
    pointer-events: auto;
    }
    
    /* Loader Container */
    #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white; /* Dark background to enhance Solana colors */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease;
    }
    
    /* Circle path for animation */
    .circle {
    position: relative;
    width: 100px;
    height: 100px;
    }
    
    /* Individual blocks */
    .block {
    width: 20px;
    height: 20px;
    background-color: #00ffa3; /* Initial Solana color */
    position: absolute;
    top: 40px;
    left: 40px;
    border-radius: 4px;
    animation: spin 1s linear infinite;
    }
    
    /* Duplicated blocks with delay and Solana colors */
    .block:nth-child(1) {
    animation-delay: 0s;
    background-color: #00ffa3;
    }
    .block:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #dc1fff;
    }
    .block:nth-child(3) {
    animation-delay: 0.4s;
    background-color: #9945ff;
    }
    .block:nth-child(4) {
    animation-delay: 0.6s;
    background-color: #19fb9b;
    }
    .block:nth-child(5) {
    animation-delay: 0.8s;
    background-color: #5436da;
    }
    
    /* Circular motion animation */
    @keyframes spin {
    0%   { transform: rotate(0deg)   translateX(40px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
    }
    
    /* Fade out when loader is removed */
    #loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
    }