/* General Styles */
body {
    font-family: 'Baloo 2', cursive;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
}

h1 {
    font-size: 4rem;
    color: #007BFF;
}
.bull{
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

h2 {
    font-size: 2.5rem;
    color: #007BFF;
    text-align: center;
    margin-bottom: 20px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ff7200;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    width: 50px;
    border-radius: 50%;
}

.project-name {
    font-size: 20px;
    color: #007BFF;
    font-weight: bold;
    margin-left: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
}
.background-video {
  position: center;
  width: 300px;
  height: 300px;
  object-fit: cover;
  
  border-radius: 100%;
}
/* Home Section */
#home {
    text-align: center;
    background: url('home.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    min-height: 400px;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about-img {
    width: 300px;
    height: 300px;
    max-width: 400px;
    border-radius: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-content p {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    padding: 15px;
    font-size: 1.2rem;
}

/* Buy Section */
#buy {
    background: url('buy.jpg') no-repeat center center/cover;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.buy-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    width: 90%;
    max-width: 500px;
}

.ca-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.ca-text {
    font-size: 1rem;
    color: #333;
}

.copy-btn {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #0056b3;
}

.buy-btn {
    background-color: #FFD700;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

.buy-btn:hover {
    background-color: #ffc107;
}

/* Roadmap Section */
#roadmap {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.phase {
    background: rgba(0, 0, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 10px auto;
    font-size: 1.2rem;
    max-width: 500px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vision Section */
#vision {
    background-color: #f0f8ff;
    padding: 50px 20px;
    text-align: center;
}

#vision p {
    font-size: 1.3rem;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.contact-icons img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    margin: 0 10px;
    cursor: pointer;
}

.contact-icons img:hover {
    transform: scale(1.1);
}


/* Partners Section */
#partners {
    background-color: #000;
    padding: 50px 20px;
    text-align: center;
}

.partners-logos img {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    margin: 0 10px;
    cursor: pointer;
}

.partners-logos img:hover {
    transform: scale(1.1);
}

.v-image {
    width: 250px;
    height: 250px;
    border-radius: 100%;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ff7200;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar-links {
    display: none;
    text-decoration: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    gap: 1rem;
    top: 60px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.navbar-links a {
    margin: 10px 0;
    text-decoration: none;
    color: #007BFF;
    font-size: 1rem;
    font-weight: bold;
}

.navbar-links.show {
    display: flex;
}

/* Optional: Hide hamburger on larger screens */

@media (min-width: 768px) {

    .hamburger {
        display: none;
    }

    .navbar-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
    }

    .navbar-links a {
        margin: 0 15px;
        text-decoration: none;
    }
}




.ca-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    word-break: break-all;
}

.ca-text {
    font-size: 1rem;
    color: #333;
    flex: 1;
}

.copy-btn {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.copy-btn:hover {
    background-color: #0056b3;
}









/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ff7200;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hamburger {
    display: none;
    /* Hide hamburger on large screens */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s;
}

/* Navbar links (hidden by default on mobile) */
.navbar-links {
    display: none;
    /* Hide navbar links by default */
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 60px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Show links when hamburger is toggled */
.navbar-links.show {
    display: flex;
    /* Show links on toggle */
}

/* Navbar links styling */
.navbar-links a {
    margin: 10px 0;
    text-decoration: none;
    color: #007BFF;
    font-size: 1rem;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hamburger {
        display: none;
        /* Hide hamburger on large screens */
    }

    .navbar-links {
        display: flex;
        /* Always show links on large screens */
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
    }

    .navbar-links a {
        margin: 0 15px;
    }
}