/* Technology Section */
.technology-section {
  padding: 8rem 4rem;
  background: #ffffff;
}

.technology-container {
  max-width: 1400px;
  margin: 0 auto;
}

.technology-header {
  text-align: center;
  margin-bottom: 6rem;
}

.technology-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

.technology-subtitle {
  font-size: 2rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
}

.technology-tabs {
  margin-top: 4rem;
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.tech-tab {
  padding: 1.5rem 3rem;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  color: #333333;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-tab.active,
.tech-tab:hover {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.tech-content {
  display: none;
}

.tech-content.active {
  display: block;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tech-item {
  background: #ffffff;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  min-height: 400px;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tech-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}

.tech-description {
  font-size: 1.4rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.tech-specs {
  list-style: none;
  text-align: left;
}

.tech-specs li {
  font-size: 1.3rem;
  color: #333333;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.tech-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: bold;
}

/* Software Grid */
.software-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.software-category {
  background: #ffffff;
  padding: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
}

.software-category h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  text-align: center;
}

.software-items {
  display: grid;
  gap: 1.5rem;
}

.software-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.software-item:hover {
  transform: translateX(5px);
}

.software-item i {
  font-size: 2rem;
  color: #000000;
  width: 30px;
}

.software-item span {
  font-size: 1.6rem;
  color: #000000;
  font-weight: 500;
}

/* Integration Flow */
.integration-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.integration-step {
  background: #ffffff;
  padding: 3rem;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  text-align: center;
  max-width: 300px;
  flex: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.step-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.integration-step h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.integration-step p {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 2.5rem;
  color: #000000;
}

/* Responsive Design for Technology Section */
@media (max-width: 1200px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .integration-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .technology-title {
    font-size: 3rem;
  }
  
  .technology-subtitle {
    font-size: 1.8rem;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .tab-navigation {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .technology-section {
    padding: 4rem 2rem;
  }
  
  .technology-title {
    font-size: 2.5rem;
  }
  
  .tech-tab {
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
    min-width: 160px;
  }
} 