/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #edf0f2;
  color: #000000;
    background-size: cover; /* Ensures the image covers the entire background */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents tiling of the background image */
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #1A1A2E;
  position: relative;
}

.logo {
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

/* Desktop Navigation */
.nav.desktop {
  display: flex;
  align-items: center;
}

.nav.desktop a {
  color: #00AAFF;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9em;
}

.nav.desktop a:hover {
  color: #F5C242;
}

.buttons.desktop {
  display: flex;
}

.buttons.desktop .btn {
  padding: 10px 20px;
  margin-left: 10px;
  text-decoration: none;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 0.9em;
  color: #ffffff;
}

.buttons.desktop .btn.primary {
  background-color: #4A90E2;
  color: #ffffff;
  border: none;
}

/* Mobile Navigation */
.nav.mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #111111;
  z-index: 1000;
  padding: 10px 0;
}

.nav.mobile a {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
}

.nav.mobile.show {
  display: flex;
}

/* Hamburger Menu */
.hamburger {
  display: none; /* Default hidden for desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Close Icon */
.close-icon {
  display: none;
  font-size: 1.2em;
  color: #ffffff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .nav.desktop,
  .buttons.desktop {
    display: none;
  }


  .hamburger {
    display: flex;
  }

  .close-icon {
    display: none; /* Default hidden */
  }
}


.crypto-ticker {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        background: transparent; /* Transparent background */
        z-index: 9999; /* Ensure it doesn't overlap other elements */
    }

    .ticker-content {
        display: flex;
        animation: scroll 30s linear infinite; /* Slow leftward scrolling */
        align-items: center;
    }

    .coin {
        display: inline-flex;
        align-items: center;
        margin-right: 20px;
        font-size: 14px;
        color: #fff;
        white-space: nowrap;
    }

    .coin img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        border-radius: 50%;
    }

    .percentage {
        margin-left: 5px;
        font-weight: bold;
    }

    .percentage.positive {
        color: #4caf50; /* Green for positive changes */
    }

    .percentage.negative {
        color: #f44336; /* Red for negative changes */
    }

    @keyframes scroll {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-100%);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .coin {
            font-size: 12px;
        }
    }



    .crypto-ticker {
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
        background: transparent;
        z-index: 9999;
    }

    .ticker-content {
        display: flex;
        animation: scroll 30s linear infinite;
        align-items: center;
    }

    .coin {
        display: inline-flex;
        align-items: center;
        margin-right: 20px;
        font-size: 14px;
        color: #fff;
        white-space: nowrap;
    }

    .coin img {
        width: 20px;
        height: 20px;
        margin-right: 5px;
        border-radius: 50%;
    }

    .percentage {
        margin-left: 5px;
        font-weight: bold;
    }

    .percentage.positive {
        color: #4caf50;
    }

    .percentage.negative {
        color: #f44336;
    }

    @keyframes scroll {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-100%);
        }
    }

    @media (max-width: 768px) {
        .coin {
            font-size: 12px;
        }
    }



.trusted-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px; /* Space between each block */
        padding: 20px 0;
        background: none; /* No background color to blend with footer */
        font-family: Arial, sans-serif;
    }

    /* Individual block styles */
    .trusted-section .block {
        text-align: center;
    }

    .trusted-section .block .heading {
        color: #ffffff; /* Blue color */
        font-size: 16px;
        font-weight: bold;
    }

    .trusted-section .block .number {
        color: #ffffff; /* Dark blue color */
        font-size: 40px;
        font-weight: bold;
        margin: 5px 0;
    }

    .trusted-section .block .subtext {
        color: #fff; /* Dark grey color */
        font-size: 14px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .trusted-section {
            flex-direction: column; /* Switch to vertical layout on smaller screens */
            gap: 20px; /* Reduce space between blocks */
        }

        .trusted-section .block .number {
            font-size: 30px; /* Adjust number size for smaller screens */
        }

        .trusted-section .block .heading {
            font-size: 14px; /* Adjust heading size */
        }

        .trusted-section .block .subtext {
            font-size: 12px; /* Adjust subtext size */
        }
    }

.about-section,
.commitment-section,
.movement-section {
  text-align: center;
  padding: 50px 20px;
}

.about-section h1,
.commitment-section h2,
.movement-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about-section .highlight,
.commitment-section h2,
.movement-section h2 {
  color: #4A90E2;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1em;
  line-height: 1.6em;
}

.content.bordered {
  border: 2px solid #4A90E2;
  padding: 20px;
  border-radius: 10px;
  background-color: none;
}

ul {
  padding-left: 20px;
}

ul li {
  margin: 5px 0;
}


.Slogo {
    text-align: center; /* Center the logo horizontally */
    margin: 10px 0; /* Add some spacing */
}

.Slogo img {
    max-width: 50px; /* Set a maximum width for the logo */
    max-height: 50px; /* Set a maximum height for the logo */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure proper centering */
}


footer {
  background-color: #1A1A2E; /* Dark background to match the theme */
  color: #FFFFFF; /* White text */
  text-align: center;
  padding: 20px 0;
  font-family: 'Arial', sans-serif; /* Match the font used in the About Us section */
  font-size: 16px; /* Adjust font size */
  border-top: 1px solid #333; /* Optional: Add a subtle top border for separation */
}

footer a {
  color: #FFFFFF; /* Make the email link white */
  text-decoration: none; /* Remove underline */
}

footer a:hover {
  text-decoration: underline; /* Underline on hover for better UX */
}

