Changed around line 1
- --primary-color: #6366f1;
- --secondary-color: #818cf8;
- --text-color: #1f2937;
- --background-color: #ffffff;
- --accent-color: #4f46e5;
+ --primary-color: #4a90e2;
+ --secondary-color: #2c3e50;
+ --accent-color: #1abc9c;
+ --text-color: #333;
+ --background-color: #f5f5f5;
- * {
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ color: var(--text-color);
- box-sizing: border-box;
- }
-
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
- color: var(--text-color);
- overflow-x: hidden;
- }
-
- .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: 1rem 5%;
- max-width: 1200px;
- margin: 0 auto;
- }
-
- .logo {
- font-size: 1.5rem;
- font-weight: bold;
- background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
- -webkit-background-clip: text;
- color: transparent;
- }
-
- .nav-links a {
- margin-left: 2rem;
- text-decoration: none;
- color: var(--text-color);
- transition: color 0.3s ease;
- }
-
- .nav-links a:hover {
- color: var(--primary-color);
- }
-
- .mobile-menu {
- display: none;
- min-height: 100vh;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 5%;
- background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
- }
-
- .hero-content {
- max-width: 600px;
- }
-
- .hero h1 {
- font-size: 3.5rem;
- line-height: 1.2;
- margin-bottom: 1.5rem;
- background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
- -webkit-background-clip: text;
- color: transparent;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ padding: 100px 20px;
+ text-align: center;
- .hero-animation {
- width: 400px;
- height: 400px;
- background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
- animation: pulse 4s infinite;
+ .hero-content h1 {
+ font-size: 2.5rem;
+ margin-bottom: 20px;
- padding: 1rem 2rem;
- font-size: 1.1rem;
- background: var(--primary-color);
+ background-color: var(--accent-color);
- border: none;
- border-radius: 8px;
- cursor: pointer;
- transition: transform 0.3s ease, background-color 0.3s ease;
+ padding: 10px 20px;
+ text-decoration: none;
+ border-radius: 5px;
+ transition: background-color 0.3s;
- transform: translateY(-2px);
- background: var(--accent-color);
+ background-color: darken(var(--accent-color), 10%);
- .services, .features {
- padding: 5rem 5%;
- max-width: 1200px;
- margin: 0 auto;
+ .services-section {
+ padding: 50px 20px;
+ background-color: var(--background-color);
- .service-grid, .features-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
- gap: 2rem;
- margin-top: 3rem;
+ .service-cards {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
- .service-card {
- padding: 2rem;
+ .card {
- border-radius: 12px;
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
- transition: transform 0.3s ease;
+ padding: 20px;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ width: 30%;
+ margin: 10px;
+ text-align: center;
- .service-card:hover {
- transform: translateY(-5px);
- }
-
- .icon {
- font-size: 2rem;
- margin-bottom: 1rem;
- }
-
- .contact {
- background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
- padding: 5rem 5%;
- }
-
- .contact-form {
- max-width: 600px;
- margin: 2rem auto;
- display: grid;
- gap: 1rem;
- }
-
- .contact-form input,
- .contact-form textarea {
- padding: 1rem;
- border: 2px solid #e5e7eb;
- border-radius: 8px;
- font-size: 1rem;
- }
-
- .contact-form textarea {
- min-height: 150px;
+ .about-section {
+ padding: 50px 20px;
+ text-align: center;
- background: var(--text-color);
- color: white;
- padding: 2rem 5%;
- }
-
- .footer-content {
- max-width: 1200px;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
- .footer-links a,
- .social-links a {
+ background-color: var(--secondary-color);
- text-decoration: none;
- margin-right: 1rem;
- }
-
- @keyframes pulse {
- 0% { transform: scale(1); opacity: 0.5; }
- 50% { transform: scale(1.05); opacity: 0.8; }
- 100% { transform: scale(1); opacity: 0.5; }
+ text-align: center;
+ padding: 20px;
- .nav-links {
- display: none;
- }
-
- .mobile-menu {
- display: block;
- background: none;
- border: none;
- cursor: pointer;
- }
-
- .mobile-menu span {
- display: block;
- width: 25px;
- height: 3px;
- background: var(--text-color);
- margin: 5px 0;
- transition: 0.3s;
- }
-
- .hero {
+ .service-cards {
- text-align: center;
- padding-top: 100px;
- .hero h1 {
- font-size: 2.5rem;
+ .card {
+ width: 80%;
+ margin: 10px auto;
-
- .hero-animation {
- width: 300px;
- height: 300px;
- margin-top: 2rem;
- }
- }
+ }