Changed around line 1
+ :root {
+ --primary: #2A6EF7;
+ --secondary: #6C63FF;
+ --accent: #FF6B6B;
+ --dark: #1A1A1A;
+ --light: #F5F7FF;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ }
+
+ .hero {
+ min-height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/houston-skyline.jpg');
+ background-size: cover;
+ background-position: center;
+ color: white;
+ }
+
+ nav {
+ padding: 1.5rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(0,0,0,0.1);
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .cta-button {
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 0.8rem 1.5rem;
+ border-radius: 50px;
+ text-decoration: none;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero-content {
+ padding: 0 2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ position: relative;
+ top: 50%;
+ transform: translateY(-50%);
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .service-grid, .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .service-card, .feature {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .service-card:hover, .feature:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .reviews {
+ background: var(--light);
+ padding: 4rem 2rem;
+ }
+
+ .review {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .stars {
+ color: gold;
+ margin-bottom: 1rem;
+ }
+
+ .cta-section {
+ background: linear-gradient(45deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .pulse {
+ animation: pulse 2s infinite;
+ }
+
+ @keyframes pulse {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.05); }
+ 100% { transform: scale(1); }
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 2rem;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-col a {
+ display: block;
+ color: white;
+ text-decoration: none;
+ margin-bottom: 0.5rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }