* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); color: white; overflow-x: hidden; }
html { scroll-behavior: smooth; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 10%; background: rgba(15, 12, 41, 0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; top: 0; z-index: 1000; }
.logo { font-size: 28px; font-weight: bold; background: linear-gradient(45deg, #ff6b6b, #4ecdc4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 25px; flex-wrap: wrap; }
.nav-links a { color: white; text-decoration: none; transition: 0.3s; }
.nav-links a:hover { color: #4ecdc4; }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 100px 20px 50px; }
.hero h1 { font-size: 60px; background: linear-gradient(135deg, #ff6b6b, #feca57, #4ecdc4); -webkit-background-clip: text; background-clip: text; color: transparent; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.robot { font-size: 120px; animation: bounce 2s ease-in-out infinite; margin: 30px 0; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.cute-btn { background: linear-gradient(45deg, #ff6b6b, #ee5a24); color: white; padding: 15px 40px; border: none; border-radius: 50px; font-size: 20px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.cute-btn:hover { transform: scale(1.05); }
.features, .levels { padding: 80px 10%; }
.section-title { text-align: center; font-size: 45px; margin-bottom: 50px; background: linear-gradient(135deg, #feca57, #ff6b6b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cards-container, .level-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card, .level-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 40px 20px; border-radius: 30px; text-align: center; transition: 0.3s; }
.card:hover, .level-item:hover { transform: translateY(-10px); background: rgba(255,255,255,0.2); }
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); justify-content: center; align-items: center; z-index: 2000; }
.modal-content { background: #1e1a3a; padding: 40px; border-radius: 30px; width: 90%; max-width: 500px; }
.modal-content input, .modal-content textarea { width: 100%; padding: 12px; margin: 10px 0; border-radius: 10px; border: none; background: rgba(255,255,255,0.1); color: white; }
.close { float: right; font-size: 28px; cursor: pointer; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 20px rgba(0,0,0,0.3); z-index: 1000; }
.whatsapp-float img { width: 35px; }
.footer { text-align: center; padding: 30px; background: rgba(0,0,0,0.3); }
.blog-card { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 20px; margin: 20px 0; }
@media (max-width: 768px) { .hero h1 { font-size: 40px; } .navbar { flex-direction: column; gap: 15px; } }
/* Contact Form Styles */
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: white;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none;
    border: 1px solid #4ecdc4;
}

/* Resource Category */
.resource-category {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.resource-item {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
}

.resource-item h4 {
    color: #feca57;
    margin-bottom: 10px;
}

/* CTA Box */
.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(78,205,196,0.2), rgba(255,107,107,0.2));
    border-radius: 30px;
    padding: 50px;
    margin-top: 50px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.project-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.project-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.level-tag {
    display: inline-block;
    background: #4ecdc4;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 15px;
}

/* Fun Fact */
.fun-fact {
    background: rgba(254,202,87,0.1);
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}