Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --accent-color: #e67e22;
+ --text-color: #333;
+ --light-bg: #f9f9f9;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 20px;
+ }
+
+ /* Header Styles */
+ .main-header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 20px;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 30px;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--primary-color);
+ font-weight: 500;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
+ url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDABQODxIPDRQSEBIXFRQWHxcUFhcXHyIfFxcXFxcfIh4bGhoaGh4iJiUmJiUmJjIyMjIyMjY2NjY2NjY2NjY2Njb/2wBDAR');
+ background-size: cover;
+ background-position: center;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 20px;
+ animation: fadeInUp 1s ease;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ margin-bottom: 30px;
+ animation: fadeInUp 1s ease 0.3s backwards;
+ }
+
+ .cta-button {
+ padding: 15px 30px;
+ background: var(--accent-color);
+ border: none;
+ color: white;
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: var(--transition);
+ animation: fadeInUp 1s ease 0.6s backwards;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 5px 15px rgba(230,126,34,0.3);
+ }
+
+ /* About Section */
+ .about {
+ padding: 100px 0;
+ background: var(--light-bg);
+ }
+
+ .stats {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 30px;
+ margin-top: 50px;
+ }
+
+ .stat-item {
+ text-align: center;
+ }
+
+ .number {
+ font-size: 3rem;
+ color: var(--accent-color);
+ font-weight: bold;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 100px 0;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 30px;
+ margin-top: 50px;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 30px;
+ border-radius: 10px;
+ background: white;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .feature:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 100px 0;
+ background: var(--light-bg);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 20px;
+ }
+
+ .contact-form input,
+ .contact-form textarea {
+ padding: 15px;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .contact-form textarea {
+ height: 150px;
+ }
+
+ .contact-form button {
+ padding: 15px;
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .contact-form button:hover {
+ background: darken(var(--accent-color), 10%);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 50px 0;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 30px;
+ }
+
+ .social-links {
+ display: flex;
+ gap: 15px;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--accent-color);
+ }
+
+ /* Animations */
+ @keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ /* Mobile Responsive */
+ .mobile-menu-btn {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu-btn span {
+ width: 25px;
+ height: 2px;
+ background: var(--primary-color);
+ transition: var(--transition);
+ }
+
+ @media (max-width: 768px) {
+ .mobile-menu-btn {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 20px;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .stats {
+ grid-template-columns: 1fr;
+ }
+ }