.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(44, 85, 48, 0.6), rgba(44, 85, 48, 0.7)), url('../images/hero1-modern-office-technology_orig.jpg') center/cover;
  color: white;
  text-align: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-section .lead-text {
  font-size: 22px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.2s both;
}

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

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

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
  color: var(--primary);
}

.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(44, 85, 48, 0.15);
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-secondary);
  margin: 0;
}

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

.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.9)), url('../images/section3-data-center-server_orig.jpg') center/cover;
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

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

.project-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 85, 48, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 85, 48, 0.2);
}

.project-card-image {
  height: 200px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-card-content {
  padding: 24px;
}

.project-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.status-active {
  background: #10B981;
  color: white;
}

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

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

.project-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.project-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.team-member-card {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 85, 48, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 85, 48, 0.2);
}

.team-member-avatar {
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  font-weight: 700;
}

.team-member-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--primary);
}

.team-member-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.resource-card {
  background: var(--bg-card);
  border-radius: 4px;
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 85, 48, 0.15);
}

.resource-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.resource-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.resource-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.resource-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-link:hover {
  color: var(--primary-dark);
}

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

.blog-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 85, 48, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(44, 85, 48, 0.2);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-card-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.read-more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.contact-text p {
  margin: 0;
  font-size: 16px;
  color: var(--text-primary);
}

.stats-section {
  padding: 60px 0;
  background: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

@media (max-width: 1024px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-section .lead-text {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid,
  .projects-grid,
  .team-grid,
  .resources-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
}