Changed around line 1
+ :root {
+ --primary: #2a6bff;
+ --secondary: #ff6b6b;
+ --text: #2c3e50;
+ --background: #ffffff;
+ --accent: #34495e;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ overflow-x: hidden;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: var(--primary);
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ position: relative;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ color: var(--accent);
+ margin-bottom: 2rem;
+ }
+
+ .animated-shape {
+ position: absolute;
+ width: 300px;
+ height: 300px;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
+ animation: morphing 15s ease-in-out infinite;
+ opacity: 0.1;
+ z-index: 0;
+ }
+
+ @keyframes morphing {
+ 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ 25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
+ 50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
+ 75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
+ 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ }
+
+ /* Features Section */
+ .content {
+ padding: 5rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .features {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature {
+ padding: 2rem;
+ background: white;
+ border-radius: 1rem;
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Contact Form */
+ .contact {
+ padding: 5rem 2rem;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ }
+
+ form {
+ max-width: 600px;
+ margin: 2rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: none;
+ border-radius: 0.5rem;
+ background: white;
+ font-size: 1rem;
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ cursor: pointer;
+ font-size: 1rem;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: var(--secondary);
+ }
+
+ /* Footer */
+ footer {
+ padding: 2rem;
+ text-align: center;
+ background: var(--accent);
+ color: white;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ }
+
+ /* Mobile Menu */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 2px;
+ background: var(--text);
+ transition: 0.3s;
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ position: fixed;
+ top: 70px;
+ right: -100%;
+ flex-direction: column;
+ background: white;
+ width: 100%;
+ text-align: center;
+ transition: 0.3s;
+ padding: 2rem;
+ }
+
+ .nav-links.active {
+ right: 0;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ }
+ }