:root {
  /* Neomorphic Design System with Split-Complementary Color Scheme */
  --primary-color: #2c7eea;
  --primary-dark: #1c5bb0;
  --primary-light: #6ea8f7;
  --secondary-color: #ff8a3d;
  --secondary-dark: #e06b1f;
  --secondary-light: #ffab74;
  --tertiary-color: #7d49ea;
  --tertiary-dark: #5a2ec0;
  --tertiary-light: #a57df2;
  
  /* Neutral colors */
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-gray: #e4e9f2;
  --medium-gray: #cbd5e1;
  --dark-gray: #4a5568;
  --darker-gray: #2d3748;
  --black: #1a202c;
  
  /* Neomorphic shadows */
  --nm-shadow-small: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
  --nm-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.7);
  --nm-shadow-large: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.7);
  --nm-shadow-inset: inset 3px 3px 6px rgba(0, 0, 0, 0.1), inset -3px -3px 6px rgba(255, 255, 255, 0.7);
  
  /* Typography */
  --heading-font: 'Inter', sans-serif;
  --body-font: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 5rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--dark-gray);
  background-color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--darker-gray);
}

h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: 2.25rem;
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Styles */
section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: var(--space-md) auto 0;
  border-radius: var(--radius-sm);
}

/* Button Styles */
.btn, 
button, 
input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--heading-font);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--nm-shadow-small);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.btn:hover, 
button:hover, 
input[type='submit']:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--nm-shadow);
  transform: translateY(-2px);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  box-shadow: var(--nm-shadow-inset);
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-tertiary {
  background-color: var(--tertiary-color);
  color: var(--white);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  display: block;
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-medium);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav li {
  margin-left: var(--space-lg);
}

.desktop-nav a {
  color: var(--darker-gray);
  font-weight: 500;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-color);
  transition: width var(--transition-medium);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
  width: 100%;
}

.mobile-menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--darker-gray);
  transition: all var(--transition-medium);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: var(--space-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-medium);
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: var(--space-md);
}

.mobile-nav a {
  color: var(--darker-gray);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: var(--space-sm) 0;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: var(--space-xxxl) 0;
  margin-top: 80px; /* Account for fixed header */
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 3.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* About Section */
.about-section {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.about-image-container:hover img {
  transform: scale(1.05);
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-xxl);
}

.stat-widget {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 500;
}

/* Services (Markets) Section */
.services-section {
  background-color: var(--off-white);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(126, 213, 111, 0.05), transparent), 
              radial-gradient(circle at 80% 70%, rgba(45, 85, 255, 0.05), transparent);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nm-shadow-large);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-content h3 {
  color: var(--darker-gray);
  margin-bottom: var(--space-md);
}

.card-content p {
  margin-bottom: var(--space-lg);
}

.card-content .btn {
  margin-top: auto;
}

/* Events Calendar Section */
.events-section {
  background-color: var(--white);
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xxl);
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: var(--nm-shadow-small);
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: var(--space-lg);
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-date {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.timeline-content h3 {
  color: var(--darker-gray);
  margin-bottom: var(--space-sm);
}

.timeline-content p {
  margin-bottom: var(--space-md);
}

/* Resources Section */
.resources-section {
  background-color: var(--off-white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* Workshops Section */
.workshops-section {
  background-color: var(--white);
}

.custom-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.slide {
  min-width: 100%;
  padding: 0 var(--space-md);
}

.slide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xl);
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--nm-shadow);
}

.slide-image {
  flex: 1;
  min-width: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-small);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.slide-image:hover img {
  transform: scale(1.05);
}

.slide-text {
  flex: 1;
  min-width: 300px;
}

.workshop-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin: var(--space-md) 0;
  font-size: 0.875rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.prev-btn, .next-btn {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--nm-shadow-small);
  font-size: 1.25rem;
  transition: all var(--transition-medium);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin: 0 var(--space-lg);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  margin: 0 var(--space-xs);
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.testimonials-grid .card {
  text-align: center;
}

.testimonials-grid .card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: -75px auto 0;
  border: 5px solid var(--white);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
}

.testimonials-grid .card-content {
  padding-top: var(--space-xl);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  line-height: 1;
}

.testimonial-text::before {
  top: -20px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author h4 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--dark-gray);
}

/* Projects Section */
.projects-section {
  background-color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--off-white);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(126, 213, 111, 0.05), transparent), 
              radial-gradient(circle at 80% 70%, rgba(45, 85, 255, 0.05), transparent);
  pointer-events: none;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nm-shadow-large);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary-color);
  position: relative;
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  padding: var(--space-lg);
  background-color: var(--off-white);
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
  margin-bottom: var(--space-md);
  color: var(--darker-gray);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
}

.pricing-features {
  padding: var(--space-lg);
  flex: 1;
}

.pricing-features ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: var(--space-sm) 0;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.pricing-footer {
  padding: var(--space-lg);
  text-align: center;
}

.pricing-notes {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.875rem;
  color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
  background-color: var(--white);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xxl);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: var(--space-lg);
}

.contact-details {
  margin-top: var(--space-xl);
}

.contact-item {
  margin-bottom: var(--space-lg);
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
}

.contact-form-container h3 {
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--darker-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  background-color: var(--off-white);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 126, 234, 0.1);
}

/* Footer */
.footer {
  background-color: var(--darker-gray);
  color: var(--light-gray);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.footer-logo {
  flex: 2;
  min-width: 200px;
}

.footer-logo a {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-links {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: var(--space-sm);
}

.footer-column a {
  color: var(--medium-gray);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--white);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--nm-shadow-large);
  text-align: center;
  transform: translateY(-20px);
  transition: transform var(--transition-medium);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-gray);
  transition: color var(--transition-fast);
}

.close-modal:hover {
  color: var(--black);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--off-white);
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: var(--space-xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow);
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--space-xxl);
}

/* Animation Styles */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.float-animation {
  animation: float 5s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 3s ease-in-out infinite;
}

/* Read More Links */
.read-more {
  display: inline-block;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  padding-right: 1.5rem;
  transition: color var(--transition-fast);
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover::after {
  transform: translateY(-50%) translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-icon {
    display: flex;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  
  .hero-buttons .btn {
    margin-bottom: var(--space-sm);
  }
  
  .about-content,
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 480px) {
  section {
    padding: var(--space-xl) 0;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .card-image {
    height: 200px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
  }
}

.mobile-nav.active{
  display: block;
}