.casestudy-theme {
  .section-title {
    h2 {
      color: var(--secondary-color);
      text-transform: capitalize;
      padding-bottom: 24px;
      margin: 0px;
    }
  }
}
.hero-section {
  padding: 80px 0;
  padding-top: 200px;
  position: relative;
  .tag {
    span {
      background: var(--primary-bg-light);
      color: var(--primary-color);
      padding: 8px 16px;
      border-radius: 30px;
    }
  }
  h1 {
    margin-top: 12px;
    font-weight: 700;
  }
  .text-primary-custom {
    color: var(--primary-color);
  }
  &::after {
    content: "";
    height: 100%;
    width: 70%;
    left: 50%;
    top: 5%;
    position: absolute;
    background: radial-gradient(
      circle,
      var(--primary-bg) 0%,
      rgba(0, 0, 0, 0) 50%
    );
    transform: translateX(-35%);
    z-index: -1;
  }
}

.summary-section-main {
  .wrapper {
    background: var(--primary-bg-light);
    padding: 32px 24px;
    text-align: left;
    margin: 0px;
  }
}

.about-the-client-main {
  .cards-main {
    margin-top: 80px;

    .card {
      border: none;
      .card-body-wrapper {
        padding: 32px;
        transition: all .5s ease-in-out;
        border: 1px solid var(--secondary-light);
      border-radius: 20px;
        .h1 {
          color: var(--primary-color);
          margin: 0px;
        }
        p {
          margin: 0px;
        }
        &:hover{
          border-color: var(--white);
          box-shadow: 0px 5px 12px 0px var(--primary-bg);
        }
      }
    }
  }
}
.tab-main {
  .tab-main-wrapper {
    padding-bottom: 48px;
    .buildBusinessSection {
      border: 1px solid var(--secondary-light);
      border-radius: 16px;
    }

    .nav-tabs {
      border: none;
      overflow-x: scroll;
      &::-webkit-scrollbar {
        display: none;
      }
      .nav-item {
        &:first-child {
          .nav-link {
            border-top-left-radius: 16px;
          }
        }
        &:last-child {
          .nav-link {
            border-top-right-radius: 16px;
          }
        }
      }
      .nav-link {
        color: var(--secondary-color);
        border: 1px solid var(--secondary-light);
        border-top: 0px;
        border-radius: 0px;
        height: 100%;
        padding: 20px 60px;
      }
      .nav-link.active {
        border-color: var(--white);
      }
    }
    #myTabContent {
      padding: 48px;
      .text-wrapper {
        margin-bottom: 40px;
      }
    }
  }
}
.problem-statement-main {
  .problem-card-body {
    display: flex;
    gap: 20px;
    .problem-image img {
      height: 48px;
      width: 48px;
    }
  }
}
.problem-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--secondary-light);
  transition: all .5s ease-in-out;
  &:hover {
    background-color: var(--primary-bg-light);
    border-color: var(--primary-bg-light);
  }
}

.cta-section-main {
  .cta-wrapper {
    background-image: url("../images/casestudy/lpg-gas-agency/cta-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
  }
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 165, 181, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.config-card-shadow-main {
  .card-shadow-wrapper {
    border: 1px solid var(--secondary-color);
    background: var(--white);
    padding: 32px;
    position: relative;

    .card-shadow {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0px;
      top: 0px;
      background: var(--white);
    }
    .card-shadow-1 {
      transform: rotate(2deg);
      z-index: -1;
      border: 1px solid rgba(51, 51, 51, 0.8);
    }
    .card-shadow-2 {
      transform: rotate(4deg);
      z-index: -2;
      border: 1px solid rgba(51, 51, 51, 0.6);
    }
    .card-shadow-3 {
      transform: rotate(6deg);
      z-index: -3;
      border: 1px solid rgba(51, 51, 51, 0.4);
    }
  }
}
.config-text-with-stat-main {
  background: var(--primary-bg-light);
  .config-text-wrapper {
    h2 {
      font-weight: 800;
      margin-bottom: 24px;
    }
  }
  .stat-wrapper {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
  }
  .chart {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
}

@media (max-width: 1500px) {
  .hero-section {
    padding-top: 150px;
  }
  .problem-statement-main {
    .problem-card-body {
      display: flex;
      gap: 10px;
      .problem-image img {
        height: 38px;
        width: 38px;
      }
    }
  }
}
@media (max-width: 1200px) {
  .problem-card {
    margin-bottom: 20px;
  }
  .config-text-with-stat-main {
    .chart {
      font-size: 3.5rem;
    }
  }
  .about-the-client-main {
    .cards-main {
      .card {
        .card-body-wrapper {
          padding: 20px;
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .hero-section {
    padding-top: 100px;
    .banner-image {
      margin-top: 30px;
    }
  }
  .about-the-client-main {
    .cards-main {
      margin-top: 40px;
      .card {
        .card-body-wrapper {
          .h1 {
            font-size: 28px;
          }
        }
      }
    }
  }
  .casestudy-theme {
    div#features-items .accordion-body {
      max-height: none;
      overflow-y: visible;
    }
  }
  .config-card-shadow-main {
    .card-shadow-wrapper {
      margin: 50px;
    }
  }
}
@media (max-width: 767px) {
  .hero-section {
    &::after {
      display: none;
    }
  }
  .about-the-client-main {
    .cards-main {
      margin-top: 20px;
    }
  }
}
@media (max-width: 500px) {
  .config-text-with-stat-main {
    .stat-wrapper {
      padding: 15px;
    }
    .chart {
      font-size: 2rem;
    }
  }
  .config-card-shadow-main {
    .card-shadow-wrapper {
      margin: 30px;
      padding: 20px;
    }
  }
}
