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

body {
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
  color: #333;
}

.web {
  background: #1a2e35;
  min-height: 100vh;
  color: #ffffff;
}

/* Hero Section (1st page) */
.hero-section {
  height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #1a2e35 0%, #2a3f47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Performance optimizations */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Performance optimizations */
  will-change: transform;
  transform: translateZ(0);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Simplified optimizations */
  min-width: 100%;
  min-height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 46, 53, 0.8) 0%, rgba(42, 63, 71, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 80px 120px 80px;
  color: #ffffff;
}

.hero-main {
  max-width: 600px;
  text-align: left;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.hero-button:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.play-icon {
  width: 20px;
  height: 20px;
}

.video-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.play-button {
  background-color: #ff6b35;
  color: #ffffff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: #e55a2b;
  transform: scale(1.05);
}

.watch-video-button {
  background-color: #ffffff;
  color: #666666;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.watch-video-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

/* Section Labels */
.section-label {
  color: #ff6b35;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Section Titles */
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Section Descriptions */
.section-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Story Section */
.story-section {
  background: #1a2e35;
  padding: 80px 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  color: #ffffff;
}

.story-image img,
.story-image video,
.story-image iframe {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  max-width: 550px;
}

/* Video Section */
.video-section {
  background: #1a2e35;
  padding: 80px 0;
}

.video-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.video-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
}

.video-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.video-visual {
  text-align: center;
}

.video-visual video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-text {
  text-align: left;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.video-subtitle {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.video-description {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.video-placeholder {
  width: 100%;
  text-align: center;
}

.video-placeholder video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us Section (3rd page) */
.why-choose-section {
  background: #1a2e35;
  padding: 80px 0;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background: #DFEBEB;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  font-family: "Typeface/Family/Title", sans-serif;
  font-size: 14px;
}

.why-choose-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 5px;
}

.why-choose-text {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.why-choose-text .section-title {
  color: #00272C;
}

.why-choose-text .section-label {
  color: #F15622;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
}

.stat-item {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00272C;
  margin-bottom: 8px;
  display: block;
  margin-left: -100px;
}

.stat-label {
  font-size: 0.8rem;
  color: #00272C;
  font-weight: 400;
  line-height: 1.3;
  margin-left: -6px;
  text-align: left;
}

/* Milestones Section */
.milestones-section {
  background: #1a2e35;
  padding: 80px 0;
}

.milestones-card {
  background: lab(100% 0.01 -0.01 / 0.05);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  width: 100vw;
  max-width: 100vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.milestones-content {
  max-width: 100%;
  margin: 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 0;
}

.journey-testimonials-card {
  background: #163A3E;
  border-radius: 20px;
  padding: 60px;
  margin: 40px auto;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.milestones-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: left;
}

.highlight {
  color: #ffffff;
  font-weight: 600;
}

.milestones-graph {
  margin: 40px 0;
  text-align: center;
}

.milestones-graph img {
  max-width: 90%;
  height: auto;
  max-height: 600px;
  margin: 0 auto;
  display: block;
}

.milestones-continuation {
  font-size: 18px;
  line-height: 1.6;
  margin: 40px auto 0 auto;
  max-width: 800px;
  text-align: left;
}

.journey-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 80px 0 60px 0;
  text-align: center;
}

.timeline-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin: 28px auto;
  max-width: 850px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-content {
  text-align: left;
}

.timeline-year {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
}

.timeline-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00272C;
  margin-bottom: 15px;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #00272C;
}

.timeline-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-section {
  background: #1a2e35;
  padding: 80px 0;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* Fallback: show first testimonial if no JavaScript */
.testimonial-card:first-child {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.testimonials-content .section-label {
  text-align: left;
  margin-left: 10px;
  font-family: "Typeface/Family/Font2", sans-serif;
  font-size: 40px;
  color: #F2F7F7;
  margin-top: 50px;
}

.testimonials-title {
  font-family: "Typeface/Family/Font2", sans-serif;
  font-size: 40px;
  color: #F2F7F7;
  margin-bottom: 30px;
  text-align: left;
  margin-left: 10px;
  margin-top: -30px;
}

.testimonials-intro {
  font-family: "Typeface/Family/Title", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}



.testimonial-content {
  text-align: left;
}

.testimonial-author {
  text-align: left;
}

.author-name {
  font-size: 18px;
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: #666666;
}

.testimonial-text {
  text-align: left;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.testimonial-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Testimonials Navigation */
.testimonials-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -80px;
  z-index: 10;
  position: relative;
}

.testimonials-navigation .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a2e35;
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
}

.testimonials-navigation .nav-btn:hover {
  background: #ff6b35;
  transform: scale(1.1);
}

.testimonials-navigation .nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #1a2e35;
}



.testimonials-container {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

/* Blog Section */
.blog-section {
  background: #1a2e35;
  padding: 80px 0;
}

.blog-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

.blog-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: -100px;
  position: relative;
}

.blog-header .section-label {
  margin-bottom: 10px;
}

.blog-header .section-title {
  margin-bottom: 20px;
}

.blog-header .blog-button {
  align-self: flex-end;
  margin-top: 20px;
  color: #ff6b35;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}



.blog-button {
  background-color: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-button:hover {
  background-color: #ff6b35;
  color: #ffffff;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
  color: #333333;
}

.blog-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.blog-category img {
  width: 16px;
  height: 16px;
}

.blog-category span {
  font-size: 12px;
  color: #ff6b35;
  font-weight: 600;
}

.blog-title {
  font-size: 16px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.read-more {
  background: none;
  border: none;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Spotlight Section */
.spotlight-section {
  background: #1a2e35;
  padding: 80px 0;
}

.spotlight-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.spotlight-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 40px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.spotlight-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.spotlight-stat {
  background-color: #2a3f47;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.stat-text {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
}

/* Engagement Section */
.engagement-section {
  background: #1a2e35;
  padding: 80px 0;
}

.engagement-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.engagement-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 40px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.engagement-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
}

.engagement-question {
  font-family: 'Libre Baskerville', serif;
  font-size: 24px;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.engagement-input,
.engagement-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
}

.engagement-textarea {
  height: 120px;
  resize: vertical;
}

.send-button {
  background-color: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.send-button:hover {
  background-color: #e55a2b;
}

.send-button img {
  width: 16px;
  height: 16px;
}

.inbox-icon {
  width: 16px;
  height: 16px;
  color: #ff6b35;
}

.send-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

/* Portfolio Section */
.portfolio-section {
  background: #1a2e35;
  padding: -10px 0 80px 0;
  margin-top: -10px;
}

.portfolio-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

.portfolio-text {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-button {
  background-color: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

.portfolio-button:hover {
  background-color: #ff6b35;
  color: #ffffff;
  text-decoration: none;
}

.portfolio-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.logo-grid {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: slidePartners 40s linear infinite;
  width: max-content;
  overflow: visible;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin: 0;
}

.partner-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Partner card hover effect */
.partner-card:hover .partner-img {
  transform: scale(1.05);
}

.partner-card .image-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-radius: 0 0 12px 12px;
}

.partner-card:hover .image-hover-overlay {
  transform: translateY(0);
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

/* Contact Section */
.contact-section {
  background: #1a2e35;
  padding: 80px 0;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.contact-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
}

.contact-button {
  background-color: #ff6b35;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-content,
  .video-content,
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-cards {
    grid-template-columns: 1fr;
  }
  
  .spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .partners-carousel {
    width: 100%;
    margin: 0;
  }
  
  .partner-card {
    width: 160px;
    padding: 20px 15px;
  }
  
  .portfolio-logos {
    margin-top: 20px;
  }
  
  .logo-grid {
    gap: 15px;
  }
  
  .story-section,
  .video-section,
  .why-choose-section,
  .milestones-section,
  .testimonials-section,
  .blog-section,
  .spotlight-section,
  .engagement-section,
  .portfolio-section,
  .contact-section {
    padding: 60px 20px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 32px;
  }
} 

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-video.loaded + .hero-fallback {
  opacity: 0;
}

.hero-video:not(.loaded) + .hero-fallback {
  opacity: 1;
} 

.logo-placeholder {
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
} 

.hero-image {
  margin-bottom: 20px;
  text-align: left;
}

.decade-image {
  max-width: 300px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
} 

.timeline-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.timeline-navigation .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a2e35;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} 

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1a2e35;
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1;
}

.nav-btn:hover {
  background: #ff6b35;
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #1a2e35;
} 

.timeline-progress {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.progress-bar {
  width: 4px;
  height: 200px;
  background: #ff6b35;
  border-radius: 2px;
  position: relative;
}

/* Footer Section */
.footer-section {
  background: #f8f8f8;
  padding: 80px 0 60px;
  color: #333333;
  font-family: 'Sora', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

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

.footer-column ul li {
  margin-bottom: 18px;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.footer-column ul li a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.footer-column ul li a:hover {
  color: #ff6b35;
}

.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333333;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff6b35;
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 40px;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 50px;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-column h4 {
    margin-bottom: 25px;
  }
  
  .footer-column ul li {
    margin-bottom: 15px;
  }
  
  .footer-social {
    margin-top: 25px;
    gap: 15px;
  }
} 