* General Styling */
body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #fff;
    color: #ffffff;
    scroll-behavior: smooth;
}

h1 {
    color: #00BFFF; /* Bright blue color */
    text-align: center;
    font-size: 3em;
}

/* Home Section */
#home {
    text-align: center;
    background: url('back.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

#home h1 {
    font-size: 5em;
    transform: rotate(-15deg);
    display: inline-block;
    text-shadow: 2px 2px 10px #00BFFF;
    
}

.home-image {
    width: 300px;
    height: 300px;
    border-radius: 100%;
    margin-top: 20px;
}

/* About Section */
#about {
    padding: 50px;
    text-align: center;
    background: grey;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-content p {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.2);
    margin: 10px;
}

/* Buy Section */
#buy {
    text-align: center;
    padding: 50px;
    background: grey;
}

.ca-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #ffffff;
}

.copy-btn {
    margin-left: 10px;
    padding: 10px;
    background-color: #00BFFF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.buy-btn {
    padding: 15px 30px;
    background-color: #00BFFF;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}


/* Vision Section */
#vision {
    padding: 50px;
    text-align: center;
    justify-content: centre;
      
}

#vision p {
    font-size: 1.2em;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 30px;
}

.contact-icons img {
    width: 80px;
    margin: 10px;
    height: 80px;
    border-radius: 100%;
}




/* Buy Section */
#buy {
    text-align: center;
    padding: 50px;
}

.ca-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 90%; /* Adjusts to screen size */
    margin: 0 auto 20px; /* Centers the box */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#ca-text {
    font-size: 1em;
    color: #ffffff;
    word-wrap: break-word; /* Prevent overflow */
    overflow-wrap: break-word;
    flex: 1; /* Allow text to take available space */
    text-align: left;
}

.copy-btn {
    margin-left: 10px;
    padding: 10px 15px;
    background-color: #00BFFF;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #0088cc;
}

.buy-btn {
    padding: 15px 30px;
    background-color: #00BFFF;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #0088cc;
}

/* Responsive Design for Small Screens */
@media screen and (max-width: 768px) {
    .ca-box {
        flex-direction: column; /* Stack items vertically on smaller screens */
        padding: 10px;
    }

    #ca-text {
        margin-bottom: 10px; /* Add spacing */
        font-size: 0.9em; /* Slightly smaller font */
    }

    .copy-btn {
        margin-left: 0; /* Center align button */
        width: 100%;
    }
}








/* Roadmap Section */
#roadmap {
    padding: 50px 20px;
    background-color: white;
    color: #000;
    text-align: center;
}

.roadmap-container {
    display: flex;
    flex-direction: column; /* Vertical arrangement */
    align-items: center;
    gap: 20px;
}

.roadmap-phase {
    width: 80%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    opacity: 0; /* Animation effect */
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
}

.roadmap-phase.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Memes Section */
#memes {
    padding: 50px 20px;
    text-align: center;
    background-color: #222;
    color: white;
}

.memes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.memes-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.meme-img {
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
}

#prevBtn, #nextBtn {
    position: absolute;
    background-color: rgba(0, 191, 255, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

#prevBtn:hover, #nextBtn:hover {
    background-color: #0088cc;
}

/* Media Query for Small Screens */
@media screen and (max-width: 768px) {
    .roadmap-phase {
        width: 95%;
    }
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #222;
    color: white;
    font-size: 16px;
}

/* Navbar Styling */
header {
    background-color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    font-size: 1.8em;
    color: #00BFFF;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00BFFF;
}

/* Hamburger Icon (Mobile Only) */
.hamburger {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.line {
    width: 25px;
    height: 3px;
    background-color: #00BFFF;
    transition: all 0.3s ease;
}

/* Mobile Menu Styling */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hidden initially */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex; /* Show nav-links when active */
    }

    .nav-links li {
        text-align: center;
    }
}


/* General Section Styles */
section {
    padding: 50px 20px;
    text-align: center;
    background-color: #222;
    color: white;
}

h1 {
    font-family: 'Poppins', sans-serif; /* Cutest readable Google font */
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Roadmap Section */
.roadmap-container {
    display: flex;
    flex-direction: column; /* Vertical arrangement */
    gap: 30px;
    align-items: center;
}

.roadmap-phase {
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.roadmap-phase:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

/* Memes Section */
.memes-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.memes-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.meme-img {
    min-width: 100%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Arrows */
.arrow-btn {
    position: absolute;
    background-color: rgba(0, 191, 255, 0.8);
    color: white;
    border: none;
    padding: 15px 20px; /* Increased padding for size */
    font-size: 2em; /* Larger font size */
    border-radius: 50%;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.3s ease-in-out;
    margin: 0 10px; /* Added spacing */
}

.arrow-btn:hover {
    background-color: #0088cc;
}

#prevBtn { left: 10px; }
#nextBtn { right: 10px; }

/* Vision Section */
#vision {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* Center align the text */
    padding: 40px;
}

#vision p {
    font-size: 1.2em;
    color: #ddd;
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto; /* Center the text block */
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}






/* General Wrapper for Content */
.container {
    max-width: 1200px; /* Limit content width */
    margin: 0 auto; /* Center the container */
    padding: 0 20px; /* Add padding to the sides */
}

/* Navbar Desktop Adjustment */
@media screen and (min-width: 1024px) {
    .navbar {
        padding: 20px 50px; /* Increase padding for desktop */
    }

    .logo {
        font-size: 2em; /* Make the logo bigger */
    }

    .nav-links a {
        font-size: 1.3em; /* Increase link font size */
        margin: 0 10px; /* Add spacing between links */
    }
}

/* Section Styling for Desktop */
section {
    margin: 50px auto; /* Add vertical spacing between sections */
    padding: 50px 20px; /* Consistent section padding */
    text-align: center; /* Center-align content */
}

/* Text Adjustments for Readability */
h1 {
    font-size: 3em; /* Increase heading size */
}

p {
    font-size: 1.1em; /* Slightly larger paragraph text */
    line-height: 1.8; /* Improve text spacing */
    margin: 0 auto; /* Center paragraphs */
    max-width: 800px; /* Limit paragraph width */
}

/* Memes Section for Desktop */
@media screen and (min-width: 1024px) {
    .memes-slider {
        max-width: 900px;
        margin: 0 auto; /* Center the slider */
    }

    .meme-img {
        max-width: 600px;
    }
}

/* Roadmap Section for Desktop */
@media screen and (min-width: 1024px) {
    .roadmap-container {
        flex-direction: row; /* Display phases side-by-side on desktop */
        flex-wrap: wrap;
        justify-content: center;
    }

    .roadmap-phase {
        width: 30%; /* Three phases per row */
        margin: 10px; /* Add spacing between phases */
    }
}

/* Footer or Contact Section */
footer {
    padding: 20px 0;
    background-color: #333;
    color: white;
    text-align: center;
    font-size: 1em;
}


.cont{
  height: 100px;
  width: 100px;
  border-radius: 100%;
}