/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1772645056
Updated: 2026-03-04 17:24:16

*/

.process {
  padding: 100px 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(74, 183, 128, 0.06);
}

.process::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(74, 183, 128, 0.04);
}

.lifecycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lifecycle__ring {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.lifecycle__connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lifecycle__progress {
  stroke-dashoffset: 1382;
  transition: stroke-dashoffset 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifecycle__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(74, 183, 128, 0.3);
  pointer-events: none;
}

.lifecycle__center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
}

.lifecycle__step-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
}

.lifecycle__step-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.lifecycle__items {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lifecycle__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 3;
}

.lifecycle__item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.lifecycle__item:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.lifecycle__item:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.lifecycle__item:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lifecycle__item-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
  transition: all var(--transition);
}

.lifecycle__item--active .lifecycle__item-icon {
  background: var(--green-600);
  border-color: var(--green-500);
  color: var(--white);
  box-shadow: 0 0 30px rgba(74, 183, 128, 0.4);
  transform: scale(1.1);
}

.lifecycle__item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.lifecycle__item--active span {
  color: var(--white);
}

.lifecycle__item:hover .lifecycle__item-icon {
  border-color: var(--green-500);
  background: rgba(74, 183, 128, 0.2);
}

.lifecycle__details {
  position: relative;
}

.lifecycle__detail {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.4s ease;
  transform: translateY(20px);
}

.lifecycle__detail--active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.lifecycle__detail-num {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-500);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.lifecycle__detail h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.lifecycle__detail p {
  font-size: 1.05rem;
  color: var(--green-200);
  line-height: 1.8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .lifecycle {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lifecycle__ring {
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .lifecycle__ring {
    max-width: 300px;
  }

  .lifecycle__item-icon {
    width: 60px;
    height: 60px;
  }

  .lifecycle__item-icon svg {
    width: 28px;
    height: 28px;
  }

  .lifecycle__center {
    width: 110px;
    height: 110px;
  }

  .lifecycle__step-num {
    font-size: 1.5rem;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(45, 106, 79, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(82, 183, 136, 0.08) 0%,
      transparent 40%
    );
}

.testimonials__slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card__stars {
  font-size: 1.3rem;
  color: #c9a84c;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.testimonial-card__quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 32px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card__author strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.testimonial-card__author span {
  color: #8a9e93;
  font-size: 0.85rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.testimonials__btn {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 !important;
}

.testimonials__btn:hover {
  background: #40916c;
  border-color: #40916c;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials__dot--active {
  background: #52b788;
  transform: scale(1.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 0 20px;
  }
}


.notice.notice-info.is-dismissible {
	
	display:none !important;
	
}
