Changed around line 1
+ :root {
+ --primary: #2d3436;
+ --secondary: #0984e3;
+ --accent: #00cec9;
+ --text: #2d3436;
+ --background: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: var(--background);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--secondary), var(--accent));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary);
+ }
+
+ .mobile-menu {
+ display: none;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 0 5%;
+ background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
+ }
+
+ .hero-content {
+ max-width: 600px;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero-animation {
+ width: 400px;
+ height: 400px;
+ background: linear-gradient(45deg, var(--secondary), var(--accent));
+ border-radius: 50%;
+ animation: pulse 4s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); opacity: 0.5; }
+ 50% { transform: scale(1.05); opacity: 0.8; }
+ 100% { transform: scale(1); opacity: 0.5; }
+ }
+
+ .services {
+ padding: 5rem 5%;
+ background: var(--background);
+ }
+
+ .services-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .service-card {
+ padding: 2rem;
+ border-radius: 10px;
+ background: white;
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .service-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .about {
+ padding: 5rem 5%;
+ background: #f8f9fa;
+ }
+
+ .stats-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .stat {
+ text-align: center;
+ }
+
+ .number {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--secondary);
+ display: block;
+ }
+
+ .contact {
+ padding: 5rem 5%;
+ }
+
+ form {
+ max-width: 600px;
+ margin: 2rem auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ textarea {
+ height: 150px;
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--secondary);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: var(--accent);
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: var(--background);
+ padding: 1rem;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ padding-top: 80px;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-animation {
+ width: 200px;
+ height: 200px;
+ margin-top: 2rem;
+ }
+ }