<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#features {
  padding: 80px 20px;
  position: relative;
  z-index: 10;
}

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

.features-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Tabs styling */
.features-tabs {
  display: flex;
  justify-content: space-between;
  background: #f8f9fb;
  border-bottom: 1px solid #eaeaea;
  flex-wrap: wrap;
}

.feature-tab {
  flex: 1;
  padding: 25px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  position: relative;
  border-bottom: 3px solid transparent;
}

.feature-tab:hover {
  background: rgba(0, 117, 230, 0.05);
}

.feature-tab.active {
  background: white;
  border-bottom: 3px solid #0075e6;
}

.feature-tab::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #0075e6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-tab.active::after {
  opacity: 1;
}

.feature-tab-icon {
  margin: 0 auto 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 117, 230, 0.1);
  transition: all 0.3s ease;
}

.feature-tab.active .feature-tab-icon {
  background: rgba(0, 117, 230, 0.2);
  transform: scale(1.1);
}

.feature-tab-icon img {
  width: 25px;
  height: 25px;
  color: #0075e6;
}

.feature-tab h3 {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #555;
  margin: 0;
  transition: all 0.3s ease;
}

.feature-tab.active h3 {
  color: #0075e6;
  /* font-weight: 600; */
}

/* Content styling */
.features-content {
  position: relative;
}

.feature-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.feature-content.active {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.feature-text {
  padding: 40px;
  flex: 1;
}

.feature-text h3 {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.feature-text p {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-list li i {
  color: #0075e6;
  margin-right: 10px;
  font-size: 1.1rem;
}

.feature-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.feature-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.feature-content.active .feature-image img {
  transform: translateY(0);
  animation: slideIn 0.7s ease;
}

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

/* Responsive styles */
@media (max-width: 992px) {
    #features{
        display: none;;
    }


  .features-container {
  .feature-tab {
    padding: 15px 10px;
  }
  
  .feature-tab-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-tab h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .features-tabs {
    flex-wrap: wrap;
  }
  
  .feature-tab {
    flex: 0 0 33.333%;
    min-width: unset;
  }
  
  .feature-content.active {
    flex-direction: column-reverse;
  }
  
  .feature-text, .feature-image {
    width: 100%;
    padding: 20px;
  }
  
  .feature-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .feature-tab {
    flex: 0 0 50%;
  }
} </pre></body></html>