/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background Animation */
#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #121212;
    animation: gradientAnimation 20s ease infinite;
}

@keyframes gradientAnimation {
    0% { background: radial-gradient(circle, #1a1a1a, #121212); }
    25% { background: radial-gradient(circle, #121212, #1a1a1a); }
    50% { background: radial-gradient(circle, #1a1a1a, #121212); }
    75% { background: radial-gradient(circle, #121212, #1a1a1a); }
    100% { background: radial-gradient(circle, #1a1a1a, #121212); }
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00aaff;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00aaff;
}

main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
}

.cta-button {
    background-color: #00aaff;
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0088cc;
}

/* Features, About, Contact Sections */
.features, .about, .contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.feature-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    color: #b0b0b0;
}

/* About Section */
.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1rem auto; /* Add margin-bottom to separate paragraphs */
}

/* Contact Section */
.contact p a {
    color: #00aaff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact p a:hover {
    color: #0088cc;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 1rem;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #00aaff;
}
