/* General Styling */
body {
    font-family: 'Poppins', Arial, sans-serif, 'Comic Sans MS';
    margin: 0;
    background-color: #0a1f44;
    color: #ffffff;
}

/* Header */
header {
    text-align: center;
    padding: 1rem;
    background-color: #091835;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Sections */
section {
    padding: 2rem;
    text-align: center;
}

/* Home Section */
#home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.round-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.buy-btn {
    background-color: #1d4ed8;
    color: #fff;
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.buy-btn:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

/* About Section */
#about h1, #vision h1, #roadmap h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 2rem;
}

#about p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

/* Roadmap Section */
.phase {
    margin: 2rem auto;
    padding: 1rem;
    border: 2px solid #ffffff;
    border-radius: 8px;
    max-width: 500px;
    background: transparent;
}

.phase h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Vision Section */
#vision p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1rem auto;
}

/* Contact Section */
#contact .icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    background-color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact-icon:hover {
    background-color: #1d4ed8;
    transform: scale(1.1);
}
.cats{
  width:100%;
  height: auto;
  border-radius: 20px;
}