Changed around line 1
+ :root {
+ --primary-color: #7c3aed;
+ --secondary-color: #4c1d95;
+ --background: #f9fafb;
+ --text-color: #1f2937;
+ --accent-color: #10b981;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background);
+ }
+
+ /* Header & Navigation */
+ header {
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 10px 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 {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .wind-icon {
+ font-size: 1.8rem;
+ animation: float 3s ease-in-out infinite;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .hero h2 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta {
+ margin-top: 2rem;
+ padding: 1rem 2rem;
+ font-size: 1.1rem;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 50px;
+ cursor: pointer;
+ transition: transform 0.3s;
+ }
+
+ .cta:hover {
+ transform: scale(1.05);
+ }
+
+ /* Services Section */
+ .services {
+ padding: 5rem 2rem;
+ background: white;
+ }
+
+ .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto;
+ }
+
+ .service-card {
+ padding: 2rem;
+ text-align: center;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .service-icon {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Contact Form */
+ .contact {
+ padding: 5rem 2rem;
+ background: var(--background);
+ }
+
+ #contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid #e5e7eb;
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ textarea {
+ min-height: 150px;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 2rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ }
+
+ /* Animations */
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-10px); }
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ font-size: 1.5rem;
+ background: none;
+ border: none;
+ color: var(--text-color);
+ cursor: pointer;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h2 {
+ font-size: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .footer-links a {
+ margin: 0 1rem;
+ }
+ }