



/* index.html uchun maxsus nav-menu animatsiyasi */
.nav-menu.active {
  animation: slideIn 0.3s ease-in-out;
}

/* Maxsus animatsiya */
@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.3rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.start-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.start-btn:hover {
  background: var(--warning);
}

.get-started-btn {
  padding: 0.5rem 1.5rem;
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.get-started-btn:hover {
  background: var(--warning);
}

/* Iframe bo‘limi uchun stillar */
.iframe-section {
  padding: 2rem 1rem;
  background: var(--paper);
  text-align: center;
}

.iframe-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.iframe-section iframe {
  border: 2px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  transition: transform 0.3s ease;
}

.iframe-section iframe:hover {
  transform: scale(1.02);
}

/* Info Section */
.info-section {
  padding: 4rem 1rem;
  background: var(--paper);
}

.info-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.info-item {
  max-width: 800px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-item .icon-wrapper {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.info-item .icon-wrapper i {
  font-size: 2rem;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.info-item .content {
  text-align: left;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--success);
}

.info-item p {
  font-size: 1rem;
}

/* Ikonka orqasidagi shakllar */
.info-item[data-icon="tasks"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), transparent);
  border-radius: 50% 50% 50% 0;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item[data-icon="chart-line"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--success), transparent);
  border-radius: 0 50% 50% 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item[data-icon="calendar-alt"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--warning), transparent);
  border-radius: 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item[data-icon="robot"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #8b5cf6, transparent);
  border-radius: 50% 0 50% 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item[data-icon="sticky-note"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, transparent);
  border-radius: 50% 50% 0 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item[data-icon="globe"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #10b981, transparent);
  border-radius: 0 50% 50% 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.info-item:hover .icon-wrapper::before {
  transform: scale(1.1) rotate(5deg);
}

/* How It Works Section */
.how-it-works-section {
  padding: 4rem 1rem;
  background: var(--background);
}

.how-it-works-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step .icon-wrapper {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

.step .icon-wrapper i {
  font-size: 2rem;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.step .content {
  text-align: center;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.step p {
  font-size: 1rem;
}

/* Step ikonka orqasidagi shakllar */
.step[data-icon="plus-circle"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), transparent);
  border-radius: 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.step[data-icon="check-circle"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--success), transparent);
  border-radius: 50% 0 50% 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.step[data-icon="brain"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #8b5cf6, transparent);
  border-radius: 0 50% 50% 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.step[data-icon="history"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #ec4899, transparent);
  border-radius: 50% 50% 50% 0;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.step[data-icon="bell"] .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  background: linear-gradient(135deg, #10b981, transparent);
  border-radius: 50% 50% 0 50%;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.step:hover .icon-wrapper::before {
  transform: scale(1.1) rotate(5deg);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 1rem;
  background: var(--paper);
}

.benefits-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.benefits-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.benefits-section .info-item .icon-wrapper::before {
  content: '';
  position: absolute;
  width: 4rem;
  height: 3rem;
  top: 0;
  left: -0.5rem;
  z-index: 1;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.benefits-section .info-item[data-icon="rocket"] .icon-wrapper::before {
  background: linear-gradient(135deg, var(--primary), transparent);
  border-radius: 50% 0 50% 50%;
}

.benefits-section .info-item[data-icon="cogs"] .icon-wrapper::before {
  background: linear-gradient(135deg, var(--success), transparent);
  border-radius: 50% 50% 0 50%;
}

.benefits-section .info-item[data-icon="palette"] .icon-wrapper::before {
  background: linear-gradient(135deg, #8b5cf6, transparent);
  border-radius: 0 50% 50% 50%;
}

.benefits-section .info-item[data-icon="sync-alt"] .icon-wrapper::before {
  background: linear-gradient(135deg, #ec4899, transparent);
  border-radius: 50% 50% 50% 0;
}

.benefits-section .info-item:hover .icon-wrapper::before {
  transform: scale(1.1) rotate(5deg);
}

/* Footer */
footer {
  padding: 2rem 1rem;
  background: var(--background-dark);
  color: var(--text-dark);
  text-align: center;
}

footer p {
  font-size: 0.9rem;
}