/* General Reset */ * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } body { color: #fff; overflow-x: hidden; } /* Moving Gradient Background */ .animated-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(270deg, #0072ff, #00c6ff, #8e2de2, #4a00e0); background-size: 800% 800%; animation: gradientMove 15s ease infinite; z-index: -1; } @keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Header */ header { text-align: center; padding: 100px 20px 60px; } header h1 { font-size: 3rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); } .subtitle { font-size: 1.2rem; margin: 10px 0 30px; opacity: 0.9; } .btn { display: inline-block; background: #fff; color: #333; padding: 12px 30px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .btn:hover { background: #00c6ff; color: #fff; transform: scale(1.05); } /* Blog Section */ .blog { max-width: 900px; margin: 0 auto; padding: 60px 20px; background: rgba(255,255,255,0.1); border-radius: 20px; backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); } .blog h2 { margin-top: 40px; font-size: 2rem; color: #fff; } .blog p, .blog li { font-size: 1.1rem; line-height: 1.7; margin: 15px 0; } /* Features Section */ .features { padding: 60px 20px; text-align: center; } .features h2 { font-size: 2.2rem; margin-bottom: 40px; } .cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; } .card { background: rgba(255,255,255,0.15); border-radius: 20px; padding: 25px; width: 280px; backdrop-filter: blur(5px); transition: transform 0.3s ease, box-shadow 0.3s ease; } .card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); } footer { text-align: center; padding: 30px; background: rgba(0,0,0,0.3); margin-top: 60px; }