/* Lead Section */
.lead {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.lead-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
  text-transform: uppercase;
}

.lead-features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #007bff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.875rem;
  color: #555;
}

/* Pulsation Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive Design */
@media (min-width: 768px) {
  .lead-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .lead-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .lead-heading {
    font-size: 3rem;
  }
}







/* Process Section */
.process {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  background-image: url(/assets/images/CR2.png);
  background-repeat: no-repeat;
background-position:center;
  position: relative;
  text-align: center;
}

.process-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.timeline-line {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #007bff;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 80%;
  max-width: 400px;
  text-align: center;
  opacity: 0; /* Для анимации */
  transform: translateY(20px); /* Для анимации */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-step:nth-child(odd) {
  margin-left: 25%;
}

.timeline-step:nth-child(even) {
  margin-left: -25%;
}

.timeline-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #6699FF; /* Цвет иконок */
  animation: pulse 2s infinite; /* Пульсация */
}

.timeline-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #007bff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.timeline-step p {
  font-size: 0.875rem;
  color: #555;
}

/* Pulsation Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Animation Class */
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
  .timeline-step {
    width: 60%;
  }
  .process {
    padding: 3rem 1rem;
    background-color: #f9f9f9;
    background-image: url(/assets/images/CR2.png);
    background-repeat: no-repeat;
    background-position: left;
 
    position: relative;
    
  }
}

@media (min-width: 1200px) {
  .timeline-step {
    width: 50%;
  }
}









/* Text Section */
.text-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.text-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.text-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  text-transform: uppercase;
}

.text-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.text-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: #007bff;
  margin: 2rem 0;
  border-left: 4px solid #007bff;
  padding-left: 1rem;
}





/* Info Section */
.info-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9;
}

.info-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.info-text {
  flex: 1;
  max-width: 50%;
}

.info-heading {
  font-family: 'Fugaz One', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.info-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.info-image {
  flex: 1;
  max-width: 40%;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
 
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-content {
    flex-direction: column;
  }

  .info-text,
  .info-image {
    max-width: 100%;
  }
}
