Changed around line 1
+ :root {
+ --primary-color: #2a6ef5;
+ --secondary-color: #6c48ee;
+ --text-color: #333;
+ --light-bg: #f8f9fa;
+ --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ .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(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ position: relative;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ width: 0;
+ height: 2px;
+ bottom: -4px;
+ left: 0;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(135deg, #f5f7ff 0%, #e8ecfd 100%);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ margin-top: 2rem;
+ transition: var(--transition);
+ box-shadow: 0 4px 15px rgba(106, 72, 238, 0.2);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 20px rgba(106, 72, 238, 0.3);
+ }
+
+ section {
+ padding: 5rem 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .cards-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: var(--card-shadow);
+ transition: var(--transition);
+ }
+
+ .card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .assessment-form {
+ display: flex;
+ gap: 1rem;
+ flex-wrap: wrap;
+ margin: 2rem 0;
+ }
+
+ select, button {
+ padding: 0.8rem 1.5rem;
+ border: 1px solid #ddd;
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ select {
+ flex: 1;
+ min-width: 200px;
+ }
+
+ #analyzeBtn {
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ #analyzeBtn:hover {
+ background: var(--secondary-color);
+ }
+
+ .progress-bar {
+ background: #eee;
+ height: 8px;
+ border-radius: 4px;
+ margin: 1rem 0;
+ overflow: hidden;
+ }
+
+ .progress {
+ height: 100%;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ width: 0;
+ transition: width 1s ease-in-out;
+ }
+
+ .resource-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .resource-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: var(--card-shadow);
+ transition: var(--transition);
+ }
+
+ .resource-card:hover {
+ transform: scale(1.02);
+ }
+
+ footer {
+ background: var(--light-bg);
+ padding: 3rem 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .nav-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .nav-links.active {
+ display: flex;
+ flex-direction: column;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ right: 0;
+ background: white;
+ padding: 1rem;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }