.contact-us h2,
.tokenomics-title {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section {
    background: url("../../images/galaxy2.jpg") center center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.earth-container {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}
.earth-spin {
    width: 100%;
    height: 100%;
    animation: 20s linear infinite spin;
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.marquee {
    background: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: 50s linear infinite marquee;
}
.marquee-content img {
    height: 30px;
    margin-right: 20px;
    vertical-align: middle;
}
.marquee-content span {
    color: #fff;
    font-size: 1rem;
    margin-right: 40px;
    vertical-align: middle;
}
.marquee-content span span {
    color: red;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.about,
.team {
    background-image: linear-gradient(to top, #30cfd0 0, #330867 100%);
}
.Features,
.light-section {
    background-image: linear-gradient(to top, #330867 0, #30cfd0 100%);
}
.rounded-circle {
    border: 5px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
}
.social-links a {
    transition: opacity 0.3s;
}
.social-links a:hover {
    opacity: 0.7;
}
.bg-light {
    background-color: #f8f9fa !important;
}
.light-section {
    padding: 80px 0;
    text-align: center;
}
.light-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}
.light-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}
.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.icon-item {
    flex: 1 1 calc(25% - 30px);
    max-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    font-size: 2rem;
}
.icon-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}
.icon-item p {
    font-size: 1rem;
    color: #666;
}
@media (max-width: 768px) {
    .icon-item {
        flex: 1 1 calc(50% - 30px);
    }
}
@media (max-width: 480px) {
    .icon-item {
        flex: 1 1 100%;
    }
}
#roadmap {
    background: url("../../images/galaxy.jpg") center center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s, transform 0.5s;
}
.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.timeline-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.timeline-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s;
}
.timeline-card h5 {
    color: #fff;
    font-weight: 700;
}
.timeline-card p {
    color: rgba(255, 255, 255, 0.8);
}
.timeline-card small {
    color: rgba(255, 255, 255, 0.6);
}
@keyframes gradientBG {
    0%,
    100% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.timeline-item::before {
    content: "";
    width: 20px;
    height: 20px;
    background: #007bff;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 20px;
    z-index: 1;
}
@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    .timeline-item::before {
        left: 0;
    }
    .timeline-card {
        margin-left: 30px;
    }
}
.tokenomics {
    padding: 80px 20px;
    background: url("../../images/galaxy9.jpg") center center/cover no-repeat;
    text-align: center;
    color: #fff;
}
.tokenomics-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0fc;
    animation: 2s infinite alternate glow;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #0fc, 0 0 10px #0fc, 0 0 20px #0fc;
    }
    100% {
        text-shadow: 0 0 10px #0fc, 0 0 20px #0fc, 0 0 30px #0fc;
    }
}
.tokenomics-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
}
.chart-container {
    width: 300px;
    height: 300px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
    animation: 4s ease-in-out infinite float;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.chart-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.overlay-text {
    font-size: 1.2rem;
    color: #0fc;
    font-weight: 700;
}
.btn2,
.button-62,
.detail-text {
    color: #fff;
}
.tokenomics-details {
    text-align: left;
    max-width: 400px;
}
.tokenomics-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0fc;
}
.tokenomics-details ul {
    list-style-type: none;
    padding: 0;
}
.tokenomics-details ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    animation: 0.5s forwards slideIn;
}
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.tokenomics-details ul li:first-child {
    animation-delay: 0.2s;
}
.tokenomics-details ul li:nth-child(2) {
    animation-delay: 0.4s;
}
.tokenomics-details ul li:nth-child(3) {
    animation-delay: 0.6s;
}
.tokenomics-details ul li:nth-child(4) {
    animation-delay: 0.8s;
}
.neon-pulse::after,
.tokenomics-details ul li:nth-child(5) {
    animation-delay: 1s;
}
.color-box {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.contact-us {
    padding: 80px 0;
    background: url("../../images/galaxy8.jpg") center center/cover no-repeat;
}
.contact-us h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}
.contact-us .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}
.contact-us .card-body {
    padding: 40px;
}
.contact-us .form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 1rem;
}
.contact-us .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.contact-us .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}
.contact-us .btn-primary:hover {
    background-color: #0056b3;
}
.C2A {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: 0 0/400% 400% fixed #000;
    animation: 15s infinite gradient;
}
@keyframes gradient {
    0%,
    100% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 100%;
    }
}
.button-62 {
    background: linear-gradient(to bottom right, #ef4765, #ff9a5a);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.5;
    outline: transparent;
    padding: 0 1rem;
    text-align: center;
    text-decoration: none;
    transition: box-shadow 0.2s ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
}
.button-62:not([disabled]):focus,
.button-62:not([disabled]):hover {
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5), -0.125rem -0.125rem 1rem rgba(239, 71, 101, 0.5), 0.125rem 0.125rem 1rem rgba(255, 154, 90, 0.5);
}
.btn2 {
    position: relative;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: 0 0;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
    min-width: 200px;
    z-index: 1;
}
.neon-pulse {
    background: #000;
    border: 2px solid #0ff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    overflow: visible;
}
.neon-pulse::after,
.neon-pulse::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid #0ff;
    border-radius: inherit;
    animation: 2s ease-out infinite pulseOut;
    opacity: 0;
}
@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px){
  .navbar {
    position: relative;
    background-color: #000506 !important;
  }
  .earth-container {
    width: 250px;
    height: 250px;

 }
}

@media (min-width: 380px) and (max-width: 767px){
    
  .earth-container {
    width: 200px;
    height: 200px;
    top: 0%;
    left:50%;
    transform: translate(-50%, -100%);
 }
 .hero-content{
     width: 100%;
 }
}



