.about_frame {
  color: white;
  font-family: "Montserrat", sans-serif;
  padding: 0px 125px;
}

/* icons */
.icon_heading {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 5px solid #fff;
  border-radius: 5px;
}

.icon_surrounding {
  margin-left: 20px;
}

.icon_size {
  width: fit-content;
  height: 48px;
}

.icon_text_content {
  font-weight: 600;
  font-size: 24px;
}

/* About Content */
.about_content {
  display: flex;
  flex-direction: column;
}

.about_subcontent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.content_1 {
  font-size: 20px;
  font-weight: 400;
  margin: 10px 30px;
}

.content_2 {
  font-size: 20px;
  font-weight: 400;
  margin: 10px 30px;
}

/* Features & Benefits */
.benefits_content {
  display: flex;
  flex-direction: column;
}

.benefits_subcontent {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.benefits_subcontent_inside {
  width: 60%;
  background-color: #000;
  padding: 10px 20px;
  position: relative;
}

.benefits_subcontent_inside::before {
  content: "";
  position: absolute;
  background-color: #35d779;
}

.benefits_subcontent_inside::before {
  top: 20px;
  left: 20px;
  width: 25px;
  height: 2px;
}

.benefits_textcontent {
  font-size: 16px;
}
.benefits_heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}

/* working_content */
.working_content {
  display: flex;
  flex-direction: column;
}

.working_subcontent {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.card-container {
  display: flex;
  position: relative;
  width: 250px;
  height: 150px;
}

.card {
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  background-color: #35d779;
}

.card::before {
  top: 10px;
  left: 10px;
  width: 25px;
  height: 2px;
}

.wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #35d779, #4ff393);
  border-radius: 5px;
  transition: transform 1s ease-in-out, opacity 0.8s;
  transform-origin: top right;
  cursor: pointer;
  overflow: hidden;

  /*  */
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper.peel-off {
  transform: rotateX(90deg) rotateY(20deg) translateX(80px) translateY(-40px);
  opacity: 0;
}

/* card content */
.working_content_heading {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
}

.working_content_details {
  margin: 0px 10px;
  font-style: normal;
  font-size: 14px;
}

/* SVG NO */
.progress-group {
  transform: rotate(-90deg);
  transform-origin: center;
}

.progress-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 4s ease-in-out;
  animation: progressAnimation 3s forwards ease-in-out;
}

.progress-text {
  font-size: 50px;
  fill: #000;
  font-weight: bold;
  text-anchor: middle;
  dominant-baseline: middle;
}

@keyframes progressAnimation {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: calc(210 - (283 * 0.96));
  }
}

/* security_content */
.security_content {
  display: flex;
  flex-direction: column;
}

.security-compliance {
  background: #000;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 30px auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compliance-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.compliance-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.compliance-item span {
  font-size: 20px;
  margin-right: 10px;
}

.compliance-item p {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  flex: 1;
}

.compliance-item p strong {
  color: #35d779;
}

/* choose_content */
.choose_content {
  display: flex;
  flex-direction: column;
}

.why-choose {
  background: linear-gradient(135deg, #000, #000);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 30px auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

/* Features List */
.features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Feature Items */
.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Left Border Shine Effect */
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #35d779, #4ff393);
  transition: width 0.3s ease;
}

.feature-item:hover::before {
  width: 8px;
}

/* Icon */
.feature-item span {
  font-size: 20px;
  margin-right: 10px;
  color: #35d779;
}

/* Text */
.feature-item p {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  flex: 1;
}

/* Strong Text Styling */
.feature-item p strong {
  color: #35d779; /* Highlight important parts */
}

/* Tablets */
@media screen and (max-width: 768px) {
  .about_frame {
    padding: 0px 25px;
  }

  .benefits_subcontent_inside {
    width: 90%;
  }
}

/* Mobile Phone */
@media screen and (max-width: 350px) {
  .about_frame {
    padding: 0px 15px;
  }
  .benefits_subcontent_inside {
    width: 90%;
  }
}
