* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Arial', sans-serif; */
  line-height: 1.6;
  color: #494949;
  background-color: #ffffff;
}

h2 {
  color: #170644;
}

h3 {
  color: #170644;
}

h4 {
  color: #170644;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about-text h2 {
  font-size: 34px;;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
  /* letter-spacing: 0.5px; */
}

.about-text p {
  color: #494949;
  font-size: 16px;
}

.about-bottom {
  padding: 40px 0px;
}

.about-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section-title {
  /* text-align: center; */
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #170644;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.feature-icon {
  /* flex-shrink: 0; */
  width: 100px;
  /* height: 150px; */
  /* border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #fff; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 12px;
  color: #666; */
  /* text-align: center; */
  padding: 20px 10px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  /* color: #333; */
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-description {
  font-size: 16px;
  /* color: #666; */
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
  .features-grid {
    gap: 30px;
  }

  .feature-item {
    gap: 20px;
  }

  .feature-title {
    font-size: 22px;
  }

  .feature-description {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-section-title {
    font-size: 26px;
    margin-bottom: 30px;
    line-height: 40px;
    /* text-align: center; */
  }

  .about-text h2{
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    width: 80px;
    padding: 10px 0;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-description {
    font-size: 15px;
  }
}

/* Services Stats */

.services-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 100px 0;
  border-top: 1px solid #494949;
  max-width: 1200px;
  margin: auto;
}

.service-stat {
  text-align: center;
  width: 160px;
}

.progress-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  position: relative;
}

.progress-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-ring-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 12;
}

.progress-ring-fill-1,
.progress-ring-fill-2,
.progress-ring-fill-3,
.progress-ring-fill-4,
.progress-ring-fill-5 {
  fill: none;
  stroke: #f80035;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1s ease-out;
}

.progress-ring-fill-1 {
  stroke: #8b5cf6;
}
.progress-ring-fill-2 {
  stroke: #06b6d4;
}
.progress-ring-fill-3 {
  stroke: #84cc16;
}
.progress-ring-fill-4 {
  stroke: #ef4444;
}
.progress-ring-fill-5 {
  stroke: #22c55e;
}

.progress-text {
  fill: #170644;
  font-size: 22px;
  font-weight: bold;
  text-anchor: middle;
  dominant-baseline: middle;
  transform: rotate(90deg) translate(3px, -5px);
  transform-origin: center;
}

/* Mobile */
@media (max-width: 768px) {

  
.services-stats{
  padding: 40px 0;
}
}
