.hero-section {
  background: linear-gradient(rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.8)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  color: white;
  font-size: 52px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out;
}

.hero-section .hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.features-overview {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.2s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--accent);
}

.compliance-timeline {
  padding: 80px 0;
  background: var(--bg-primary);
  overflow: hidden;
}

.timeline-container {
  margin-top: 60px;
  position: relative;
}

.timeline-track {
  display: flex;
  gap: 80px;
  overflow-x: auto;
  padding: 40px 0;
  scroll-behavior: smooth;
}

.timeline-milestone {
  min-width: 300px;
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-milestone:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary);
}

.testimonials-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-secondary);
}

.about-content-wrapper {
  padding: 80px 0;
}

.about-intro {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.about-text-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.team-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.team-member-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.team-member-role {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.services-hero {
  background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.8)), url('images/banner4-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.services-hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-detailed-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card-header {
  padding: 32px 32px 24px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.service-card-body {
  padding: 32px;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.knowledge-base-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('images/section3-data-center-server_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.knowledge-base-hero h1 {
  color: white;
}

.search-filter-bar {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  margin: 60px 0;
}

.search-controls {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.article-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.article-meta {
  background: var(--bg-secondary);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.article-tag {
  background: var(--accent);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.article-date {
  font-size: 14px;
  color: var(--text-secondary);
}

.article-content {
  padding: 24px;
}

.contact-hero {
  background: linear-gradient(rgba(74, 124, 139, 0.8), rgba(74, 124, 139, 0.9)), url('images/services-mobile-app-development-2_orig.jpg') center/cover;
  background-attachment: fixed;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  color: white;
}

.contact-info-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.contact-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.legal-content {
  padding: 80px 0;
  background: var(--bg-primary);
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
}

.legal-text h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.floating-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(74, 124, 139, 0.1), rgba(44, 62, 80, 0.1));
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.floating-decoration:nth-child(1) {
  top: 10%;
  left: -5%;
  animation: float 6s ease-in-out infinite;
}

.floating-decoration:nth-child(2) {
  top: 60%;
  right: -5%;
  animation: float 6s ease-in-out infinite reverse;
  animation-delay: 2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    background-attachment: scroll;
  }
  
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline-track {
    gap: 40px;
  }
  
  .timeline-milestone {
    min-width: 280px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .about-text-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .search-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .legal-text {
    padding: 40px 24px;
  }
  
  .services-hero,
  .knowledge-base-hero,
  .contact-hero {
    background-attachment: scroll;
  }
}