Changed around line 1
+ :root {
+ --primary-color: #1a237e;
+ --secondary-color: #303f9f;
+ --accent-color: #ff4081;
+ --dark-gray: #333;
+ --light-gray: #f5f5f5;
+ --white: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Arial, sans-serif;
+ line-height: 1.6;
+ color: var(--dark-gray);
+ }
+
+ .hero {
+ background: linear-gradient(rgba(26, 35, 126, 0.9), rgba(48, 63, 159, 0.9)), url('assets/hero-bg.jpg');
+ background-size: cover;
+ background-position: center;
+ min-height: 80vh;
+ color: var(--white);
+ position: relative;
+ }
+
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: rgba(26, 35, 126, 0.95);
+ z-index: 1000;
+ backdrop-filter: blur(5px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--white);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: var(--white);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .hero-content {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ text-align: center;
+ width: 80%;
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--accent-color);
+ color: var(--white);
+ text-decoration: none;
+ border-radius: 5px;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .services-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 5rem 5%;
+ background: var(--light-gray);
+ }
+
+ .service-card {
+ background: var(--white);
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ width: 60px;
+ height: 60px;
+ margin-bottom: 1rem;
+ background: var(--primary-color);
+ border-radius: 50%;
+ }
+
+ .chatbot-container {
+ position: fixed;
+ bottom: 2rem;
+ right: 2rem;
+ background: var(--white);
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ width: 300px;
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero-content {
+ width: 95%;
+ }
+
+ .services-grid {
+ grid-template-columns: 1fr;
+ }
+ }