/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

.cta-button {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}

/* Header */
.header {
    background: linear-gradient(90deg, #1976d2, #2196f3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4caf50;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at center, #1976d2, #2196f3);
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fade-in 1s ease-in-out;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    animation: fade-in 1.5s ease-in-out;
}

.pulse {
    animation: pulse 1.5s infinite;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.feature-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature-item {
    flex: 1 1 45%;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: #fafafa;
    transition: transform 0.3s;
    animation: bounce-in 1s ease-in-out;
    margin-bottom: 40px;
}

.feature-item:hover {
    transform: translateY(-10px);
}

/* Documentation Section */
.docs, .community, .contact {
    padding: 80px 0;
    background-color: #f0f0f0;
    margin-bottom: 80px;
    text-align: center;
}

.docs p, .community p, .contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1976d2;
    animation: slide-in 1.2s ease-in-out;
}

/* Footer */
.footer {
    background-color: #1976d2;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/* Animations */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slide-in {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

