:root {
  --primary-color: #7C3AED;
  --secondary-color: #4F46E5;
  --gradient-start: #7C3AED;
  --gradient-end: #4F46E5;
  --text-light: #FFFFFF;
  --text-dark: #1F2937;
  --card-bg: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.12);
  --background: #0F172A;
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;
  --chat-bg: #ffffff;
  --user-msg-bg: #e2e8f0;
  --ai-msg-bg: #f1f5f9;
  --text-color: #1e293b;
  --editor-bg: rgba(255, 255, 255, 0.05);
  --nav-height: 60px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, var(--background), #1E1B4B);
  color: var(--text-light);
  min-height: 100vh;
  background-color: #0a0d1c;
  color: #333;
}

.section {
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 50%),
             radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.1), transparent 50%);
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.heading-container {
  text-align: center;
  margin-bottom: 5rem;
  padding: 2rem 0;
}

.main-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.subtitle {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1.25rem;
  color: #94A3B8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.primary-button, .secondary-button {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-button {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
}

.secondary-button {
  border: 1px solid var(--gradient-start);
  color: var(--gradient-start);
}

.primary-button:hover, .secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 1rem;
}

.template-container {
  perspective: 1000px;
}

.template-wrapper, .about-card, .contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.template-wrapper::before, .about-card::before, .contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-wrapper:hover, .about-card:hover, .contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.template-wrapper:hover::before, .about-card:hover::before, .contact-card:hover::before {
  opacity: 1;
}

/* Original icon styles for index.html template cards */
.template-wrapper .skill-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.template-wrapper .skill-icon i {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.template-wrapper:hover .skill-icon {
  transform: scale(1.1);
}

h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-light);
}

.template-description {
  color: #94A3B8;
  line-height: 1.7;
  font-size: 1.1rem;
  flex-grow: 1;
}

.blue-gradient-button {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  text-decoration: none;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  overflow: hidden;
}

.blue-gradient-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.blue-gradient-button:hover::before {
  transform: translateX(0);
}

.blue-gradient-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.features-showcase {
  margin-top: 6rem;
  text-align: center;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #A0AEC0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AEC0;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.8rem;
  }
  
  .subtitle {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 1.5rem;
  }
  
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .template-wrapper, .about-card, .contact-card {
    padding: 2rem;
  }
}

.chat-container {
  background-color: var(--chat-bg);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
  height: 60vh;
  overflow-y: auto;
}

.message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  max-width: 80%;
}

.user-message {
  background-color: var(--user-msg-bg);
  margin-left: auto;
}

.ai-message {
  background-color: var(--ai-msg-bg);
  margin-right: auto;
}

.input-container {
  display: flex;
  gap: 0.5rem;
}

#user-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

#user-input:focus {
  border-color: var(--primary-color);
}

button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #1d4ed8;
}

button:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

/* Loading animation */
.loading {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem;
}

.loading span {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  animation: bounce 0.5s alternate infinite;
}

.loading span:nth-child(2) { animation-delay: 0.1s; }
.loading span:nth-child(3) { animation-delay: 0.2s; }

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Add any missing base styles here */

/* Add these styles to fix formatting */
.editor {
    background-color: white !important;
    color: #333 !important;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

/* Improve outline formatting */
.editor p {
    margin-bottom: 1rem;
}

.editor ul, .editor ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.editor li {
    margin-bottom: 0.5rem;
}

/* Fix scrolling issues */
.editor-container {
    position: absolute !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    overflow-y: auto !important;
    background-color: var(--editor-bg) !important;
}

/* Fix panel heights */
.left-panel, .right-panel {
    max-height: calc(100vh - var(--nav-height) - 4rem) !important;
    overflow: hidden !important;
}

/* Animation Keyframes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Update the app container background */
.app-container {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--background), #1E1B4B);
}

/* Update the navigation */
.top-nav {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand, .nav-link {
  color: var(--text-light);
}

/* Update panels */
.left-panel, .right-panel {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Update headings */
.heading-container h1 {
  color: var(--text-light);
}

/* Update form elements */
.form-group label {
  color: white !important;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

input, select, textarea {
  background-color: white !important;
  color: #333 !important;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}

/* Fix select options color */
select option {
  background-color: white;
  color: #333;
}

/* Fix placeholder color */
input::placeholder {
  color: #666 !important;
}

/* Fix right panel */
.right-panel {
  background-color: white !important;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.editor-header {
  color: #1F2937 !important;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem;
}

/* Update buttons */
.icon-button {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Update tips section */
.tips-section {
  color: var(--text-light);
  background: rgba(233, 230, 230, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.tips-section h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.tips-section ul {
  color: #94A3B8;
}

/* Update loading indicator */
.loading-container p {
  color: var(--text-light);
}

/* Update editor text selection */
.editor::selection,
.editor *::selection {
  background: rgba(124, 58, 237, 0.3);
  color: white;
}

.editor::-moz-selection,
.editor *::-moz-selection {
  background: rgba(124, 58, 237, 0.3);
  color: white;
}

/* Make sure editor text is visible */
.editor {
  background: var(--editor-bg) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: text;
  user-select: text;
}

/* Make sure input text is visible */
input, select, textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

input::selection,
textarea::selection {
  background: rgba(124, 58, 237, 0.3);
  color: rgb(21, 20, 20);
}

/* Make sure text remains visible during selection */
::selection {
  background: rgba(124, 58, 237, 0.2);
  color: #1F2937;
}

::-moz-selection {
  background: rgba(124, 58, 237, 0.3);
  color: white;
}

/* Fix the right panel background */
.right-panel {
    background-color: white;
}

/* Override any conflicting styles */
body {
    background-color: #0a0d1c;
}

.right-panel {
    background-color: white !important;
}

.editor {
    background-color: white !important;
    color: #333 !important;
}

input, select, textarea {
    background-color: white !important;
    color: #333 !important;
}

/* Fix form labels and text */
.form-group label {
    color: white !important;
}

.form-group input::placeholder {
    color: #666 !important;
}

/* Make sure editor content is visible */
.editor-container * {
    color: #333 !important;
}

/* Fix panel backgrounds */
.left-panel {
    background-color: rgba(255, 255, 255, 0.05);
}

.right-panel {
    background-color: white !important;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 1rem;
}

.about-card {
    color: #fff;
    text-align: left;
}

.about-card .skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-card .skill-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-card p {
    color: #94A3B8;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-card:hover {
    transform: translateY(-5px);
}

.team-section {
    margin-top: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #94A3B8;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
    padding: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    color: #fff;
    text-align: left;
}

.contact-card .skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Navigation Styles */
.main-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.user-info {
    color: var(--accent-purple);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
}

/* Add hover effect for admin link */
.nav-link[href="/admin/users.html"]:hover {
    color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.1);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Login Styles */
.login-container {
    max-width: 400px;
    margin: 4rem auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form label {
    color: var(--text-light);
    font-weight: 500;
}

.login-form input {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Auth-related nav items */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-info {
    color: var(--text-light);
    margin-right: 1rem;
}

/* Error message styles */
.error-message {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.error-message:not(:empty) {
    display: block;
}

.register-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.register-section p {
    color: #94A3B8;
    margin-bottom: 1rem;
    text-align: center;
}

.switch-form {
    margin-top: 1.5rem;
    text-align: center;
    color: #94A3B8;
}

.switch-form a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
}

.switch-form a:hover {
    text-decoration: underline;
}

#loginSection, #registerSection {
    transition: all 0.3s ease;
}

.black-background {
    background: linear-gradient(135deg, var(--background), #1E1B4B);
    min-height: calc(100vh - var(--nav-height));
    padding: 2rem 0;
}

/* Timeline Section Styles */
.timeline-section {
    padding: 4rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4776E6 0%, #8E54E9 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    margin: 2rem 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 0;
    margin-left: 50%;
}

.timeline-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -20px;
}

.timeline-item:nth-child(odd) .timeline-icon {
    left: -20px;
    right: auto;
}

.timeline-icon i {
    color: white;
    font-size: 1.2rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-content h4 {
    color: #4776E6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Message Section Styles */
.message-section {
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.message-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-card i.bx-quote-left {
    font-size: 2rem;
    color: #4776E6;
    margin-bottom: 1rem;
    display: block;
}

.message-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.message-card .signature {
    color: #8E54E9;
    font-style: italic;
    font-size: 1.1rem;
    text-align: right;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) {
        margin-left: 0;
        padding-left: 50px;
    }

    .timeline-icon {
        left: 0;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-icon {
        left: 0;
    }

    .timeline-content {
        max-width: 100%;
    }

    .message-card {
        padding: 1.5rem;
    }

    .message-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Enhancement for About Cards */
.about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(71, 118, 230, 0.1);
}

/* About page icon styles */
.about-icon {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-icon i {
    color: white;
    font-size: 1.8rem;
} 