Changed around line 1
+ :root {
+ --primary-color: #2c3e50;
+ --secondary-color: #34495e;
+ --accent-color: #e67e22;
+ --text-color: #ecf0f1;
+ --background-color: #1a1a1a;
+ }
+
+ body {
+ margin: 0;
+ font-family: 'Arial', sans-serif;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ line-height: 1.6;
+ }
+
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('background.jpg');
+ background-size: cover;
+ background-position: center;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ padding: 20px;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 20px;
+ animation: fadeIn 2s ease-in-out;
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ margin-bottom: 40px;
+ animation: fadeIn 3s ease-in-out;
+ }
+
+ .cta-button {
+ padding: 15px 30px;
+ background-color: var(--accent-color);
+ color: var(--text-color);
+ text-decoration: none;
+ border-radius: 5px;
+ font-size: 1.2rem;
+ transition: background-color 0.3s ease;
+ }
+
+ .cta-button:hover {
+ background-color: #d35400;
+ }
+
+ .scroll-indicator {
+ position: absolute;
+ bottom: 20px;
+ width: 30px;
+ height: 50px;
+ border: 2px solid var(--text-color);
+ border-radius: 25px;
+ animation: bounce 2s infinite;
+ }
+
+ .scroll-indicator::before {
+ content: '';
+ position: absolute;
+ top: 10px;
+ left: 50%;
+ width: 6px;
+ height: 6px;
+ background: var(--text-color);
+ border-radius: 50%;
+ transform: translateX(-50%);
+ animation: scroll 2s infinite;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; }
+ to { opacity: 1; }
+ }
+
+ @keyframes bounce {
+ 0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
+ 40% { transform: translateY(-30px); }
+ 60% { transform: translateY(-15px); }
+ }
+
+ @keyframes scroll {
+ 0% { top: 10px; opacity: 1; }
+ 100% { top: 30px; opacity: 0; }
+ }
+
+ .services-section {
+ padding: 60px 20px;
+ background-color: var(--secondary-color);
+ text-align: center;
+ }
+
+ .services-section h2 {
+ font-size: 2.5rem;
+ margin-bottom: 40px;
+ }
+
+ .service-cards {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ }
+
+ .card {
+ background-color: var(--primary-color);
+ padding: 20px;
+ border-radius: 10px;
+ width: 30%;
+ margin: 10px;
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: translateY(-10px);
+ }
+
+ .card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 10px;
+ }
+
+ .card p {
+ font-size: 1rem;
+ }
+
+ .about-section {
+ padding: 60px 20px;
+ text-align: center;
+ }
+
+ .about-section h2 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
+ }
+
+ .about-section p {
+ font-size: 1.2rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ footer {
+ padding: 40px 20px;
+ background-color: var(--primary-color);
+ text-align: center;
+ }
+
+ footer p {
+ font-size: 1.2rem;
+ margin-bottom: 20px;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 3rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+
+ .service-cards {
+ flex-direction: column;
+ }
+
+ .card {
+ width: 100%;
+ margin: 10px 0;
+ }
+ }