Changed around line 1
+ :root {
+ --primary-color: #2a6bff;
+ --secondary-color: #1d4ed8;
+ --accent-color: #60a5fa;
+ --text-color: #1f2937;
+ --light-text: #6b7280;
+ --background: #ffffff;
+ --card-bg: #f3f4f6;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .hero-section {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ min-height: 100vh;
+ color: white;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-section::before {
+ content: '';
+ position: absolute;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
+ animation: rotate 20s linear infinite;
+ }
+
+ @keyframes rotate {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+ }
+
+ .nav-container {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 2rem 5%;
+ position: relative;
+ z-index: 1;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ background: linear-gradient(to right, #fff, var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .cta-button {
+ background: rgba(255,255,255,0.2);
+ padding: 0.5rem 1.5rem;
+ border-radius: 25px;
+ backdrop-filter: blur(5px);
+ }
+
+ .hero-content {
+ text-align: center;
+ padding: 5rem 1rem;
+ position: relative;
+ z-index: 1;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeInUp 1s ease;
+ }
+
+ .metrics-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ padding: 4rem 5%;
+ }
+
+ .metric-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ text-align: center;
+ transition: transform 0.3s ease;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ .metric-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .metric-card span {
+ font-size: 2.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 5%;
+ }
+
+ .service-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: all 0.3s ease;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 12px rgba(0,0,0,0.15);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ width: 100%;
+ padding: 1rem;
+ margin-bottom: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ }
+
+ .submit-button {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 8px;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .submit-button:hover {
+ background: var(--secondary-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }