body{
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    background: linear-gradient(to bottom, #001F54, #FFFFFF);

    scroll-behavior: smooth;

}


.navbar {
    background: linear-gradient(90deg, #787878, #001F54);
    padding: 10px 0;
}


.sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 60px;
    z-index: 1001;
    /* Ensure this is above other content */
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    display: none;
    /* Hidden by default, show it when using media queries */
  }
  
  /* Toggle button for opening the sidebar */
  .menu-toggle {
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 36px;
  }
  
  /* Sidebar styles */
  .sidebar {
    display: none;
    position: fixed;
    left: 0;
    
    top: 0;
    width: 430px;
    /* Full width for mobile */
    height: 100%;
    /* Full height for mobile */
    background: linear-gradient(90deg, #787878, #001F54);
    z-index: 1001;
    /* Ensure this is above other content */
    padding-top: 60px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  /* Sidebar items */
  .sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -20px;
  }
  
  .sidebar ul li {
    padding: 15px;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 20px;
    /* Increase font size for better visibility */
  }
  
  .sidebar ul li:hover {
  background: gold;
  }
  
 
  




/* Logo Styling */
.main-logo {
    width: auto;
    height: 70px;
    border-radius: 40px;
    
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    font-family: "Poppins", serif;
}

/* Active Link */
.navbar-nav .nav-link.active {
  
    font-weight: 600;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #ff2f00 !important;
    transform: scale(1.1);
}




/* Buy Now Button */
.btn-buy-now {
    background:#787878;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 15px;
    margin-left: 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-family: "Poppins", serif;
    border: 2px solid #ffffff;
}

.btn-buy-now:hover {
    background-color: #a8a8a8;
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    outline: none;
    background: transparent;
}

/* Navbar Icon */
.navbar-toggler-icon {
    filter: invert(1);
}
/* Home Section */
.home {
    position: relative;
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: -40px;
}

.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    gap: 2rem;
}

/* Left Side Content */
.contents-one {
    text-align: left;
    color: white;
}

.contents-one h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: "Poppins", serif;
    color: white !important;
    text-align: left;
     width: 100%;
}

.contents-one h2 {
    font-family: "Poppins", serif;
    width: 100%;
    font-size: 25px;
}

.contents-one span {
    color: red;
}

.contents-one p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    font-family: "Poppins", serif;
    color: white;
    width: 80%;
    text-align: justify;
}



/* Social Icons */
.custom-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    margin-top: 20px;
}

.custom-social-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.custom-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.custom-social-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
}

/* Image Section */
.eagle-bhai {
    width: auto;
    height: 450px;
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%); /* Content starts from the left */
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%); /* Image starts from the right */
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}




/* 

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

/* Main Container */
.container-ones {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    background: linear-gradient(135deg, #1e2a47, #3c4f76);
    color: white;
    min-height: 100vh;
    overflow: hidden;
    border-bottom:  2px solid gold;
    
}

/* Content Section */
.content {
    max-width: 600px;
    opacity: 1;  /* Hide before animation */
    transform: translateY(-50px); /* Move up initially */
}

/* Tagline */
.tag {
    display: inline-block;
    background: #001F54;
    color: #FF3B3B;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: "Poppins", serif;
   
}

/* Title */
.title {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    margin-right: 150px;
    font-family: "Poppins", serif;
    width:100%;
}

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.9;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: "Poppins", serif;
    
}

/* Description */
.description {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #ffffff;
    
    font-family: "Poppins", serif;
    text-align: justify;
}

/* Button */
/* .button {
    display: inline-block;
    background: #001F54;
    padding: 12px 20px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(120, 120, 120, 0.8);
    font-family: "Poppins", serif;
    border: 2px solid #ffffff30;
}

.button:hover {
    background:#647492;
    box-shadow: 0 0 20px rgba(120, 120, 120, 1);
} */

/* Image Styling */
.FOS{
    max-width: 450px;
    width: 100%;
    opacity: 1; /* Hide before animation */
    height: 80vh;
    animation: slideInLeft 1.8s ease-out forwards;
   
    
}
.smart-contact{
    border-top: 2px solid gold;
   
}


    .smart-contact {
        text-align: center !important;
        padding: 80px 20px; /* Increased padding for better spacing */
    }
    .title {
        font-size: 32px;
        font-weight: bold;
        color: white;
        font-family: "Poppins", serif;
        margin-right: 30px;
        margin-bottom: 50px; /* Increased space below the heading */
    }
    .contract-box {
       
       width: 50%;
        background: black;
        color: white;
        padding: 15px;

        border-radius: 10px;
        text-align: center;
        margin-left: 300px;
        border: 2px solid #ffffff;
        margin-top: 50px; /* Moves the contract box further down */
    }
    .contract-text {
        margin-right: 15px;
        font-size: 18px;
        font-weight: bold;
        font-family: "Poppins", serif;
    }
    .copy-btn {
        background: #ffb400;
        color: black;
        font-weight: bold;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        font-family: "Poppins", serif;
    }
    .copy-btn:hover {
        background: #ffcc66;
        transform: scale(1.1);
    }


/* Animation for Sliding Effect on Desktop */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation for Fade-In on Mobile */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Initially Hide Step Boxes */
.step-box {
    opacity: 0;
}

/* Default Animation for Larger Screens */
@media (min-width: 769px) {
    .step-box {
        animation: slideInLeft 1.8s ease-out forwards;
    }
}

/* Fix Animation on Smaller Screens */
@media (max-width: 768px) {
    .step-box {
        animation: fadeIn 1.5s ease-out forwards !important;
    }
}


/* Tokenomics Section */
.Tokenomics {
    border-bottom: 2px solid gold;
    text-align: center;
    border-top: 2px solid gold;
    font-family: "Poppins", serif;
    padding-top: 30px;
}

/* Tokenomics Title */
.tokenomics-title {
    font-size: 2.5rem;
    font-family: "Poppins", serif;
    text-transform: uppercase;
    margin-top: 30px;
    color: white;
}
.fos-tok{
    font-size: 1.5rem;
    font-family: "Poppins", serif;
    text-transform: uppercase;
    margin-top: 10px;
    color: white;

}

/* Tokenomics Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

/* Box Styling - Ensuring Equal Size */
.box-oness {
    width: 300px; /* Fixed width for all boxes */
    height: 220px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    background: linear-gradient(90deg, #787878, #001F54);
    border: 2px solid #ffcc00;
    transition: transform 0.3s ease-in-out;
    color: white;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-in-out forwards;
    box-sizing: border-box;
}

/* Prevent Text Overflow and Ensure Alignment */
.box-oness h2, 
.box-oness p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

/* Box Images */
.box-oness img {
    width: 60px;
    height: 60px;
}

/* Box Titles */
.box-oness h2 {
    font-size: 1.4rem;
    color: #FFD700; /* Gold color */
    margin: 10px 0;
}

/* Box Text */
.box-oness p {
    font-size: 1rem;
    color: #fff;
}

/* Box Hover Effect */
.box-oness:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px gold;
}

/* Animation for Sliding Effect */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Small Screens */
@media (max-width: 900px) {
    .container {
        flex-wrap: wrap;
    }

    .box-oness {
        width: 90%;
        max-width: 350px;
        height: auto; /* Allow height to adjust on smaller screens */
    }
}


/* how to buy */
.how-to-buy{
    border-bottom: 2px solid gold;
    border-top: 2px solid gold;
}
.buy-title-heading {
    font-family: "Poppins", serif;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
    
}

.container-one {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    margin-bottom: 30px !important;
}

.steps {
    width: 100%;
    animation: slideInLeft 2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-box {
    display: flex;
    align-items: center;
    border: 2px solid #FFD700;
    padding: 34px;
    width: 70%;
    margin: 15px 0;
    border-radius:10px 0px 10px 0px;
    color: #ffffff;
    transition: transform 0.3s ease-in-out;
    font-family: "Poppins", serif;
    background: linear-gradient(90deg, #787878, #001F54);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

}

.step-box:hover {
    transform: scale(1.05);
}

/* Image Styling */
.step-icon {
    max-width: 100%;
    height: 20vh;
    object-fit: contain;
    margin-right: 20px;
    flex-shrink: 0;
}
.step-icons{
    width: 250px !important;
    margin-left: -30px;
} 

/* Text Styling */
.text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-content h3 {
    font-size: 1.6rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1rem;
    color: #ddd;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.step-box {
    opacity: 0;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
}

/* Ensure animation works for smaller screens */
@media screen and (max-width: 768px) {
    .step-box {
        animation-name: slideInLeft;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
    }
}




/* HOW TO BUY */
.image-2 {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top:100px;
    
}
.image-2 img {
    width: 80%;
}
.FOS-Roadmap{
    margin-top: 40px;
    margin-bottom: 100px;

}


.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Controls spacing between boxes */
    margin: 0 auto;
    height: auto; /* Adjust height automatically */
}

.how-to-heading {
    color: #ffffff;
    font-size: 40px;
    text-align: center;
}

p.main-htb-p {
    color: #ffffff;
    font-size: 20px;
    text-wrap: pretty;
    text-align: center;
}

.htb-h1, .htb-h2, .htb-h3 {
    margin-top: 0px;
    font-size: 30px;
    text-align: center;
    padding-top: 20px;
}

.htb-p1, .htb-p2, .htb-p3 {
    line-height: 1.5em;
    font-size: 18px;
    width: auto;
    text-align: center;
    margin-bottom: 10px; /* Reduced space below content */
}

.box {
    width: 350px;
    height: auto; /* Adjust height dynamically */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(92, 61, 152, 0.5);
    background: linear-gradient(135deg, rgba(83, 105, 248, 0.9), rgba(131, 46, 120, 0.9));
    animation: float 5s ease-in-out infinite;
    padding: 20px;
    background-color: white;
    box-shadow: 7px 7px 50px 0px #00c3ff;
    border-radius: 10px;
    border: 3px solid white;
    transition: 0.3s ease-in-out;
}

.box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(174, 174, 174, 0.7);
    background: linear-gradient(135deg, rgba(255, 208, 117, 0.9), rgba(248, 104, 174, 0.9));
}

.slide {
    width: 100%;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    position: relative; /* Fixed overlapping issues */
    backdrop-filter: blur(5px);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

  
  .arrow-container {
    display: flex;
    justify-content: center;
  }
  
  .arrow {
    width: 50px !important;
    background: linear-gradient(135deg, rgba(92, 61, 152, 0.7), rgba(255, 255, 255, 0.3));
    /* Gradient background for arrows */
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 10px;
    /* Space between the arrows */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 10px rgba(92, 61, 152, 0.5);
    /* Shadow for the arrow buttons */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effect */
    animation: glow 1.5s infinite alternate;
    /* Glowing effect to make arrows pop */
  }
  
  .arrow:hover {
    background-color: rgba(92, 61, 152, 1);
    transform: scale(1.2);
  }
  
  .arrow:focus {
    outline: none;
  }
  
  #payment-form{
    font-family: "Paytone One", sans-serif;
  }
  
  /* Keyframes for floating animation */
  @keyframes float {
  
    0%,
    100% {
      transform: translateY(0px);
    }
  
    50% {
      transform: translateY(-15px);
    }
  }
  
  /* Keyframes for glowing animation */
  @keyframes glow {
    0% {
      box-shadow: 0 0 5px rgba(92, 61, 152, 0.5);
    }
  
    100% {
      box-shadow: 0 0 20px rgba(92, 61, 152, 1);
    }
  }
  
  /* HOW TO BUY  END*/



.FOS-Roadmap li {
    margin-bottom: 5px;
   margin-left: 0px;
    text-align: left;
}






  .end-notes {
    text-align: center;
    border-bottom: 3px solid gold;
    padding: 30px 20px;
    background: linear-gradient(25deg, #001F54, #FFFFFF);
   color: white;
   font-family: "Poppins", serif;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    margin-top: -25px
}

.end-notes h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000000;
    font-family: "Poppins", serif;
}

.end-notes p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    width: 70%;
    text-align: center;  /* Center text */
    margin: 0 auto;      /* Center block element */
    font-weight: bold;
    font-family: "Poppins", serif;
}


.end-notes {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* This class will be added when the section comes into view */
.end-notes.show {
    opacity: 1;
    transform: translateY(0);
}



.pngtree{
    text-align: right;
}

.pngtree-one{
    width: 100px;
    height: auto;
}
.footer {
    background: linear-gradient(90deg, #787878, #001F54);
    padding: 10px;
    color: #fff;
    font-family: "Poppins", serif;
  
}

.footer-gif {
    width: 50%;
    border: 3px solid #FFD700;
    border-radius: 10px;
    margin-top: -30px;
    margin-left: 100px;
}

.footer-text {

    font-weight: bold;
    color: #fff;

    
}
.network-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
    flex-wrap: wrap;
   
}

.network-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.network-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.network-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .network-icons {
        justify-content: center; /* Center-align on smaller screens */
    }
}


.catch-phrase{
    font-size: 15px;
  
}




.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #B3E5FC;
}

.footer-note {
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-family: "Poppins", serif;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .links-section,
    .logo-section,
    .whitepaper-section {
        margin-bottom: 20px;
    }
}


.footer-heading{
    font-size: 30px;
    margin-top: 30px;
    text-align: left;
   
}

   /* Scroll to Top Button */
   #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    display: none; /* Hidden initially */
    transition: 0.3s;
    background: none;
}

#scrollToTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 100%; /* Make it circular */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn:hover img {
    transform: scale(1.1);
}

@media screen  and (max-width: 768px) {

    body{
        color: #ffffff;
        margin: 0;
        padding: 0;
        overflow-x: hidden !important;
        background: linear-gradient(to bottom, #001F54, #FFFFFF);
        font-family: "Poppins", serif;
        scroll-behavior: smooth;
    }

    .mobile-nav {
        display: block;
      }
    
      .desktop-nav {
        display: none;
      }
      
    
      /* Show the sidebar */
      .sidebar.show {
        display: flex;
      }
    
    
    html, body {
        overflow-x: hidden !important;
        width: 100vw !important;
    }
    .navbar-toggler { 
        display: none !important; 
    }
  
    .main-logo {
        width: auto;
        height: 70px;
        border-radius: 40px;
    }
   
    .btn-buy-now {
        background:#787878;
        color: #ffffff;
        font-weight: 700;
        padding: 10px 15px;
        margin-left: 160px;
       text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        font-family: "Poppins", serif;
        border: 2px solid #ffffff;
        display: block;
       margin-top: 15px;
       width: 140px;
      
        
    }
    
    .btn-buy-now:hover {
        background-color: #a8a8a8;
        color: #ffffff;
        transform: scale(1.1);
    }
    .home {
    position: relative;
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 30vh; /* Ensure full viewport height */
    width: 100%;
    
    
    
    }
    
    .home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the opacity of the background here */
    z-index: 1;
    }
    
    .container {
    position: relative;
    z-index: 2; /* Keeps the content above the background overlay */
    display: flex !important; 
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
    font-family: "Poppins", serif;
    gap: 2rem;
    text-align: center;
    
    }
    
    .contents-one {
    text-align: flex-start;
 
    }
    
    .contents-one h1 {
    font-size:1.5rem;
    margin-bottom: 1rem;
    color: white !important;
    text-align: left;
    font-family: "Poppins", serif;
    
    }
    .home h2{
    font-size:10px;
    
    }
    .contents-one span {
    color: red;
    font-family: "Poppins", serif;
    
    }
    
    .contents-one p {
    font-size: 0.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-family: "Poppins", serif;
    color: white;
    width: 50%;
    
    }
    

    
    
    
    .custom-social-icons {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 8px;
    margin-top: -20px;
    
   
    
    
    
    }
    
    .custom-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    margin-top: -20px;
    
    
    
    }
    
    .custom-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    }
    
    .custom-social-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 50%;
    }
    img.eagle-bhai {
    width: auto;
    height: 17vh;
    margin-left: 239px;
    margin-top: -300px
    }


    @keyframes slideInLeft {
        from {
            transform: translateX(-100%); /* Content starts from the left */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%); /* Image starts from the right */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    
    
    /* Right Image */
    
    .container-ones {
        display: flex;
        flex-direction: column; /* Stack image above text */
        align-items: center;
        justify-content: center;
        padding: 50px;
        font-family: "Poppins", serif;
        max-width: 1400px;
        border-bottom: 2px solid gold;
        border-top: 2px solid gold;
        margin: auto;
        background: linear-gradient(135deg, #1e2a47, #3c4f76);
        color: white;
        min-height: 100vh;
    }
    
    /* Left Content */
    .content {
        max-width: 500px;
        text-align: center;
    }
    
    /* Tagline */
    .tag {
        display: inline-block;
        background: #001F54;
        color: #FF3B3B;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 17px;
        font-weight: bold;
        text-transform: uppercase;
        margin: 50px 0 10px 0;
    }
    
    /* Title */
    .title {
        font-size: 1.5rem;
        color: white;
        margin-bottom: 10px;
        text-align: center;
    }
    
    /* Subtitle */
    .subtitle {
        font-size: 2.5rem !important;
        font-weight: bold;
        opacity: 0.9;
        color: #ffffff;
        margin-bottom: 15px;
    }
    
    /* Description */
    .description {
        font-size: 0.8rem;
        line-height: 1.6;
        color: #ffffff;
        margin-bottom: 20px;
        text-align: justify;
        max-width: 400px;
    }
    
    /* Image */
    .FOS {
        width: 100%;
        max-width: 500px; /* Adjust width */
        opacity: 1; /* Show image */
        transform: translateX(0); /* Remove right offset */
        text-align: center;
        height: auto;
        margin-bottom: 20px; /* Add space below image */
    }
    
    
    @keyframes slideInLeft {
        from {
            transform: translateX(-100%); /* Starts from the left */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(100%); /* Starts from the right */
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    
    

    
   /* how to buy */
   

    .buy-title-heading {
        font-family: "Poppins", serif;
        text-align: center;
        color: white;
        font-size: 2rem;
        margin-bottom: 10px;
        margin-top: 30px;
        animation: fadeIn 1.8s ease-in-out;
    }

    .container-one {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: auto;
    }

    .steps {
        width: 90%; /* Increased from 70% to 90% */
        max-width: 800px; 
        animation: slideInLeft 2s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-box {
        display: flex;
        flex-direction: column; /* Ensure image is on top and text below */
        align-items: center;
        border: 2px solid #FFD700;
        padding: 15px 20px; /* Reduced padding */
        width: 70%;
        margin: 10px 0; /* Reduced margin */
        border-radius: 10px 0px 10px 0px;
        color: #ffffff;
        transition: transform 0.3s ease-in-out;
        font-family: "Poppins", serif;
        background: linear-gradient(90deg, #787878, #001F54);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

    }

    .step-box:hover {
        transform: scale(1.05);
    }

    /* Image Styling */
    .step-icon {
        width: 100px; /* Reduced width */
        height: auto; /* Keep aspect ratio */
        object-fit: contain;
        margin-bottom: 10px; /* Space between image and text */
    }
    .step-icons{
        width: 170px !important;
        margin-bottom: 10px;
       margin-left: 10px !important;
    }
    .text-content {
        text-align: center;
    }

    .text-content h3 {
        font-size: 1.4rem; /* Slightly smaller */
        font-weight: bold;
        color: white;
        margin-bottom: 5px;
    }

    .text-content p {
        font-size: 0.9rem;
        color: #ddd;
        line-height: 1.4; /* Better readability */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .step-box {
            width: 90%; /* More width for small screens */
            padding: 10px 15px; /* Adjusted padding */
        }

        .step-icon {
            width: 70px; /* Smaller image */
            margin-bottom: 8px;
        }

        .text-content h3 {
            font-size: 1.2rem; /* Adjusted for small screens */
        }

        .text-content p {
            font-size: 0.85rem;
        }
    }

    @keyframes slideInLeft {
        from {
            transform: translateX(-50px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .step-box {
        opacity: 0;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
    }
    
    /* Ensure animation works for smaller screens */
    @media screen and (max-width: 768px) {
        .step-box {
            animation-name: slideInLeft;
            animation-duration: 1.5s;
            animation-timing-function: ease-out;
        }
    }

    .smart-contact{
        border-top: 2px solid gold;
    }
    
    
        .smart-contact {
            text-align: center !important;
            padding: 50px 20px; /* Increased padding for better spacing */
        }
        .title {
            font-size: 32px;
            font-weight: bold;
            color: white;
            font-family: "Poppins", serif;
            margin-right: 30px;
            margin-bottom: 50px; /* Increased space below the heading */
        }
        .contract-box {
           
           width: 100%;
            background: black;
            color: white;
            padding: 10px;
    
            border-radius: 10px;
            text-align: center;
            margin-left: 0px;
            border: 2px solid #ffffff;
            margin-top: 50px; /* Moves the contract box further down */
        }
        .contract-text {
            margin-right: 0px;
            font-size: 13px;
            font-weight: bold;
            font-family: "Poppins", serif;
        }
        .copy-btn {
            background: #ffb400;
            color: black;
            font-weight: bold;
            padding: 8px 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 10px;
            margin-top: 10px;
            transition: 0.3s ease-in-out;
            font-family: "Poppins", serif;
        }
        .copy-btn:hover {
            background: #ffcc66;
            transform: scale(1.1);
        }
    
    
    

        
        .Tokenomics{
            font-family: "Poppins", serif;
        border-bottom: 2px solid gold;
        
        
        }
        
        
        .tokenomics-title {
        font-size: 2.5rem;
        text-transform: uppercase;
        margin-top: 30px;
        font-family: "Poppins", serif;
        color: white;
        
        }
        
        .container {
        display: flex;
        justify-content: center;
        font-family: "Poppins", serif;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
        
        flex-wrap: nowrap; /* Prevents wrapping */
        
        }
        
        .box {
        padding: 20px;
        width: 300px;
        font-family: "Poppins", serif;
        border-radius: 10px;
        text-align: center;
        transition: transform 0.3s ease-in-out;
      
        
        }
        
        .box:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px gold;
        font-family: "Poppins", serif;
        }
        
        .box img {
        width: 60px;
        height: 60px;
        
        }
        
        .box h2 {
        font-size: 1.0rem;
        color: #FFD700; /* Gold color */
        margin: 10px 0;
        font-family: "Poppins", serif;
        
        }
        .fos-tok{
        font-size: 15px !important;
        text-align: center;
        font-family: "Poppins", serif;
        line-height: 1.3;
        
        }
        .box p {
        font-size: 1rem;
        color: #fff;
        font-family: "Poppins", serif;
        
        }
        
        /* Responsive Design for Small Screens */
        @media (max-width: 900px) {
        .container {
            flex-wrap: wrap; /* Allows wrapping on smaller screens */
        }
        
        .box {
            width: 90%; /* Full width on small screens */
            max-width: 350px;
        }
        }
        
        
        
    section.FOS-Roadmap {
        margin-top: 10px;
    }

    .slider-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Controls spacing between boxes */
        margin: 0 auto;
        height: auto; /* Adjust height automatically */
    }

    .how-to-heading {
        color: #ffffff;
        font-size: 30px;
        text-align: center;
    }

    p.main-htb-p {
        color: #ffffff;
        font-size: 18px;
        text-wrap: pretty;
        text-align: center;
    
    }

    .htb-h1, .htb-h2, .htb-h3 {
        margin-top: 0px;
        font-size: 30px;
        text-align: center;
        padding-top: 20px;
    }

    .htb-p1, .htb-p2, .htb-p3 {
        line-height: 1.5em;
        font-size: 18px;
        width: auto;
        text-align: center;
        margin-bottom: 10px; /* Reduced space below content */
    }

    .box {
        width: 350px;
        height: auto;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), 0 0 20px rgba(92, 61, 152, 0.5);
        background: linear-gradient(135deg, rgba(83, 105, 248, 0.9), rgba(131, 46, 120, 0.9));
        padding: 20px;
        background-color: white;
        box-shadow: 7px 7px 50px 0px #00c3ff;
        border-radius: 10px;
        border: 3px solid white;
        transition: 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; 
    }
    

    .box:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(174, 174, 174, 0.7);
        background: linear-gradient(135deg, rgba(255, 208, 117, 0.9), rgba(248, 104, 174, 0.9));
    }

    .slide {
        width: 100%;
        color: white;
        padding: 20px;
        box-sizing: border-box;
        position: relative; /* Fixed overlapping issues */
        backdrop-filter: blur(5px);
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }

    
    .arrow-container {
        display: flex;
        justify-content: center;
    }
    
    .arrow {
        width: 50px !important;
        background: linear-gradient(135deg, rgba(92, 61, 152, 0.7), rgba(255, 255, 255, 0.3));
        /* Gradient background for arrows */
        color: white;
        border: none;
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        font-size: 20px;
        margin: 0 10px;
        /* Space between the arrows */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 10px rgba(92, 61, 152, 0.5);
        /* Shadow for the arrow buttons */
        transition: background-color 0.3s ease, transform 0.3s ease;
        /* Smooth transition for hover effect */
        animation: glow 1.5s infinite alternate;
        /* Glowing effect to make arrows pop */
    }
    
    .arrow:hover {
        background-color: rgba(92, 61, 152, 1);
        transform: scale(1.2);
    }
    
    .arrow:focus {
        outline: none;
    }
    
    #payment-form{
        font-family: "Paytone One", sans-serif;
    }
    
    /* Keyframes for floating animation */
    @keyframes float {
    
        0%,
        100% {
        transform: translateY(0px);
        }
    
        50% {
        transform: translateY(-15px);
        }
    }
    
    /* Keyframes for glowing animation */
    @keyframes glow {
        0% {
        box-shadow: 0 0 5px rgba(92, 61, 152, 0.5);
        }
    
        100% {
        box-shadow: 0 0 20px rgba(92, 61, 152, 1);
        }
    }


    .image-2 {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top:-50px;
        
    }
    .image-2 img {
        width: 80%;
    }


    .end-notes {
    text-align: center;
    border-bottom: 3px solid gold;
    padding: 30px 20px;
    background: linear-gradient(25deg, #001F54, #FFFFFF);
    color: white;
    font-family: "Poppins", serif;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    }
    
    .end-notes h2 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000000;
    font-family: "Poppins", serif;
    
    }
    
    .end-notes p {
    font-size: 0.7rem;
    line-height: 1.6;
    font-family: "Poppins", serif;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;  /* Center text */
    margin: 0 auto;      /* Center block element */
    font-weight: bold;
    
    }
    
    
    
    .pngtree{
    text-align: right;
    font-family: "Poppins", serif;
    }
    
    .pngtree-one{
    width: 100px;
    height: auto;
    font-family: "Poppins", serif;
    }
    
    
    .footer {
    background: linear-gradient(90deg, #787878, #001F54);
    padding: 10px 10px;
    color: #283593;
    font-family: "Poppins", serif;
    
    }
    
    
    .footer-gif {
    width: 100%;
    border: 5px solid #FFD700;
    border-radius: 10px;
    margin-left: 10px;
    margin-top: 20px;
    height: 13vh;
    
    
    }
    
    .catch-phrase{
        font-size: 13px;
      
    }
    
    
    
    .footer-text {
    font-size: 12px;
    color: #ffffff;
    
    font-weight: bold;
    font-family: "Poppins", serif;
    
    }
    .network-icons {
        display: flex;
        gap: 10px;
        justify-content: flex-end !important;
        align-items: center;
        padding: 5px;
        flex-wrap: wrap;
    }
    
    /* Default size (Desktop) */
    .network-icon {
        width: 50px; /* Increased size */
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid white;
        background: rgba(255, 255, 255, 0.1);
        transition: 0.3s ease-in-out;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        overflow: hidden;
    }
    
    .network-icon:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    .network-icon img {
        width: 70%; /* Increased for better visibility */
        height: 70%;
        object-fit: contain;
        border-radius: 30%;
    }
    
    /* Medium screens (tablets) */
    @media (max-width: 768px) {
        .network-icons {
            justify-content: center;
        }
        .network-icon {
            width: 45px; /* Slightly smaller */
            height: 45px;
        }
        .network-icon img {
            width: 65%;
            height: 65%;
        }
    }
    
    /* Small screens (mobile phones) */
    @media (max-width: 480px) {
        .network-icon {
            width: 40px; /* Bigger than before */
            height: 40px;
        }
        .network-icon img {
            width: 60%;
            height: 60%;
        }
    }
    
    
    .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #B3E5FC;
    font-family: "Poppins", serif;
    
    }
    
    .footer-note {
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-family: "Poppins", serif;
    
    
    }
    
    @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .links-section,
    .logo-section,
    .whitepaper-section {
        margin-bottom: 20px;
    }
    }
    
    
    .footer-heading{
    font-size: 14px;
    text-align: left;
    font-family: "Poppins", serif;
    
    }
    
    #scrollToTopBtn {
        display: none !important;
    } 
    
    /* Scroll to Top Button */
    #scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 100px;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    display: none; /* Hidden initially */
    transition: 0.3s;
    background: none;
    
    }
    
    #scrollToTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 100%; /* Make it circular */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
    
    #scrollToTopBtn:hover img {
    transform: scale(1.1);
    }
}