/* -- General Typography -- */
.about-text p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  /* slight tweak for better readability */
  color: #444;
  margin-bottom: 1.5rem;
}

/* Section title background gradient */
.section-title-bg {
  background: linear-gradient(to right, #3b308dff, #7a75a1ff 40%, #ffffff 100%);
}

.section-title-bg h2 {
  margin: 0;
}

/* Animation delays */
.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Animation: fadeInUp only using opacity + transform */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image styling tweaks */
.about-image,
.about-image2 {
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 400px;
  /* safer than large margin-top */
}

.section-intro {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.emailcolor {
  color: #3b308dff;
}

.satisfaction-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #3b308dff; /* or your brand accent */
  margin-bottom: 1.5rem;
}

.progress-bar-section {
  width: 100%;
}

.progress-label {
  text-align: left;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.satisfaction-progress {
  height: 30px;
  background-color: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
}

.satisfaction-progress .progress-bar {
  background-color: #7a75a1ff; /* your accent color */
  transition: width 1.5s ease-out;
  color: #fff;
  font-weight: bold;
  line-height: 30px; /* vertical centering */
  width: 0%; /* start at 0, animate to target */
}

/* ------Work Experiance------ */

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  margin-bottom: 1.5rem;
  position: relative;
  opacity: 0; /* start hidden */
  transform: translateX(0); /* reset, variant classes will override */
}

/* Titles */
.experience-item h4 {
  margin: 0;
  font-size: 1.5rem;
  color: #3b308dff; /* accent color */
}

.experience-duration {
  display: block;
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.experience-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* Animation variants */
.animate-fadeInLeft {
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

.animate-fadeInRight {
  opacity: 0;
  transform: translateX(50px);
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

/* Delay classes */
.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Visible state */
.animate-visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Ensure container is visible and not hidden via overflow etc */
.experience-list,
.experience-list li {
  overflow: visible;
}

/* ------Work Experiance end------ */

/* -------------work process------------ */
.process-steps {
  margin-top: 2rem;
}

.process-step {
  padding: 1.5rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  /* optional: background circle */
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

/* hover effect */
.process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Example keyframes if not defined already */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
}

/* Delay classes */
.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-800 {
  animation-delay: 0.8s;
}

/* animate-visible class to show */
.animate-visible {
  opacity: 1;
  transform: translateY(0);
}
/* -------------work process End------------ */
