/* ================================= ABOUT BANNER SECTION  Start ===========================*/

.pk-hm-inner-hero-section {
  padding: 70px 0 0;
  background-color: transparent;
}

.about-banner-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  background-color: var(--bg-primary);
  background-image: linear-gradient(to right,
      #11110c 0%,
      #11110c 30%,
      rgba(17, 17, 12, 0.9) 55%,
      rgba(17, 17, 12, 0.1) 85%,
      rgba(17, 17, 12, 0) 100%),
    var(--banner-bg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 80px 70px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-banner-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.about-banner-subtitle {
  margin-bottom: 12px;
}

.about-banner-title {
  margin-bottom: 0;
}

.about-banner-desc {
  margin: 0;
}

/* ABOUT BANNER SECTION RESPONSIVE */
@media (max-width: 1023px) {
  .about-banner-wrapper {
    min-height: 420px;
    padding: 60px 50px;
    background-image: linear-gradient(to right,
        #11110c 0%,
        #11110c 45%,
        rgba(17, 17, 12, 0.95) 65%,
        rgba(17, 17, 12, 0.3) 90%,
        rgba(17, 17, 12, 0) 100%),
      var(--banner-bg);
  }
}

@media (max-width: 768px) {
  .pk-hm-inner-hero-section {
    padding: 50px 0 0;
  }

  .about-banner-wrapper {
    min-height: auto;
    padding: 50px 32px;
    background-image: linear-gradient(135deg,
        rgba(17, 17, 12, 0.95) 0%,
        rgba(17, 17, 12, 0.8) 50%,
        rgba(17, 17, 12, 0.7) 100%),
      var(--banner-bg);
    background-position: center;
  }

  .about-banner-title {
    text-align: left;
  }

}

@media (max-width: 575px) {
  .about-banner-wrapper {
    padding: 40px 24px;
    border-radius: 16px;
    background-image: linear-gradient(180deg,
        rgba(17, 17, 12, 0.95) 0%,
        rgba(17, 17, 12, 0.85) 100%),
      var(--banner-bg);
  }
}

/* ================================= ABOUT BANNER SECTION  End ===========================*/


/* ================================= ABOUT IMG TEXT  STart ===========================*/

.pk-hm-left-right-section {
  padding: 70px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.pk-hm-left-right-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pk-hm-left-right-image {
  flex: 1;
  max-width: 50%;
  position: relative;
}

.pk-hm-left-right-image img {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.pk-hm-left-right-image:hover img {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.pk-hm-left-right-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.pk-hm-left-right-content .page-title {
  color: var(--color-primary);
  text-align: left !important;
}

.pk-hm-lr-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pk-hm-lr-description p {
  color: var(--color-primary);
}

.pk-hm-lr-btn {
  margin-top: 35px;
}

/* LEFT-RIGHT SECTION RESPONSIVE */
@media (max-width: 1023px) {
  .pk-hm-left-right-wrapper {  gap: 40px;}
  .pk-hm-left-right-content {  padding-right: 0;}
}

@media (max-width: 768px) {
  .pk-hm-left-right-section {  padding: 50px 0;}
  .pk-hm-left-right-wrapper {  flex-direction: column;  gap: 40px;}
  .pk-hm-left-right-image {  max-width: 100%;  width: 100%;}
  .pk-hm-left-right-image img {  height: 100%;}
  .pk-hm-left-right-content {  max-width: 100%;  width: 100%;}
}
@media (max-width: 575px) {
  .pk-hm-left-right-wrapper {  gap: 30px;}
}

/* ================================= ABOUT IMG TEXT End ===========================*/

/* ================================= ABOUT CTA START ===========================*/


/* CTA BANNER */

.cta-banner {
  padding: 40px 0;
}
.cta-banner__wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 45px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
      linear-gradient(
          90deg,
          rgba(0,0,0,0.88) 50%,
          rgba(0,0,0,0.68) 100%,
          rgba(0,0,0,0.50) 100%
      );
}

.cta-banner__content,
.cta-banner__actions {
  position: relative;
  z-index: 2;
}
.cta-banner__content {
  max-width: 577px;
}

.cta-banner .section-prefix {
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.cta-banner__title {
  color: #fff;
  margin: 18px 0;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* TABLET */

@media(max-width:1199px){
  .cta-banner__content {
    max-width: 481px;
  }
}

@media (max-width: 1024px) {
  .cta-banner__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 25px;
  }
  .cta-banner__content {
    max-width: 100%;
  }
}
/* MOBILE */
@media (max-width: 767px) {
    .cta-banner__title {
      text-align: left;
    }
  .cta-banner {
    padding: 0 0 50px;
  }
  .cta-banner__actions{
    gap: 10px;
  }
}

/* ================================= ABOUT CTA END ===========================*/


/* =============================== WHY CHOOSE SECTION  START==========================*/
.why-choose {
  padding: 0 0 70px 0px;
  text-align: center;
}

.why-choose .section-prefix {
  text-align: center;
}
.why-choose .section-title {
  text-align: center;
  margin-top: 12px;
}
.why-choose .banner-divider {
  margin: 0 auto 25px !important;
}
.why-choose .features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.why-choose .feature-item {
  text-align: center;
  transition: .3s ease;
  padding: 15px;
  border-radius: 10px;
}
.why-choose .feature-item:hover{
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.why-choose .feature-item:hover {
  transform: translateY(-8px);
}
.why-choose .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #111;
}
.why-choose .icon img{
  width: 100%;
  height: 100%;
}
.why-choose .feature-item h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 700;
}
.why-choose .feature-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
}

/* WHY CHOOSE SECTION RESPONSIVE */
@media (max-width: 1200px) {
  .why-choose .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 0 0 50px 0px;
  }
  .why-choose .features {
    display: flex;
    overflow-x: auto;
    scroll-snap-align: start;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 15px;
  }
  .why-choose .feature-item {
    min-width: 250px;
    width: 100%;
    scroll-snap-align: start;
    background-color: #d6d6d6;
  }
  .why-choose .feature-item h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .why-choose .icon {
    width: 52px;
    height: 52px;
  }
  .why-choose .feature-item h3 {
    font-size: 18px;
  }
  .why-choose .feature-item p {
    font-size: 14px;
  }
}

/* =============================== WHY CHOOSE SECTION END==========================*/

/* =============================== About Counter  START==========================*/

/* REVIEW SECTION */

.pk-hm-review-section {
  padding: 70px 0;
  margin: 70px 0;
  background-color: #11110C;
}

.pk-hm-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  justify-items: center;
}

.pk-hm-review-card {
  padding: 22px 34px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pk-hm-review-card:first-child {
  border-left: none;
}

.pk-hm-review-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: transparent;
  color: var(--color-secondary);
}

.pk-hm-review-card svg {
  width: 100%;
  height: 100%;
}

.pk-hm-review-number {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 100%;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.pk-hm-review-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  max-width: 130px;
  margin: 15px;
}

/* REVIEW SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .pk-hm-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pk-hm-review-card {
    padding: 24px 18px;
    border: none;
  }

  .pk-hm-review-card:first-child, 
  .pk-hm-review-card:nth-child(3) {
    border-top: none;
  }
}

@media (max-width: 767px) {
  .pk-hm-review-section {
    padding: 50px 0;
    margin: 50px 0;
  }
  .pk-hm-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .pk-hm-review-card { padding: 0; }
  .pk-hm-review-card:first-child,
  .pk-hm-review-card:nth-child(3) {
    border-top: none;
  }
  .pk-hm-review-number {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .pk-hm-review-number {
    font-size: 32px;
  }
}

/* =============================== About Counter  End==========================*/


/* ============================= PROCESS SECTION START============================= */

.pk-hm-process-section {
  background-color: #ffffff;
}

.pk-hm-process-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pk-hm-process-slider:not(.is-active) {
  visibility: visible !important;
}

.pk-hm-process-slider:not(.is-active) .splide__track {
  overflow: visible !important;
}

.pk-hm-process-slider:not(.is-active) .splide__list {
  display: flex !important;
  transform: none !important;
}

.pk-hm-process-grid {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.pk-hm-process-grid::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: linear-gradient(to right, var(--color-secondary) 60%, transparent 40%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.pk-hm-process-card {
  background-color: transparent;
  padding: 0 20px;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

.pk-hm-process-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
}

.pk-hm-process-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px #ffffff;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.pk-hm-process-card:hover .pk-hm-process-icon {
  transform: scale(1.1);
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.pk-hm-process-card:hover .pk-hm-process-icon svg path{
  fill: #111;
}

.pk-hm-process-icon svg {
  width: 24px;
  height: 24px;
}

.pk-hm-process-step {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.pk-hm-process-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.pk-hm-process-slider{
  height: fit-content;
}

.pk-hm-process-slider .splide__track{
  padding: 10px 0;
}

.pk-hm-process-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}

.pk-hm-process-slider .splide__pagination__page {
  background: #ccc;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pk-hm-process-slider .splide__pagination__page.is-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

.pk-hm-process-slider .splide__pagination {
  margin-top: 30px;
  position: relative;
  bottom: auto;
}

/* PROCESS SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .pk-hm-process-grid::after {
    display: none;
  }

  .pk-hm-process-card {
    padding: 0 15px;
  }

  .pk-hm-process-icon {
    box-shadow: none;
  }
}

@media (max-width: 767px) {

  .pk-hm-process-header {
    margin-bottom: 10px;
  }

  .pk-hm-process-card {
    padding: 0 10px;
  }
    .pk-hm-process-card-title {
    font-size: 18px;
  }

  .pk-hm-process-card-desc {
    max-width: 100%;
  }
}

/* ============================= PROCESS SECTION END============================= */

/* ======================== VALUE SECTION (Our Core Values) ============================ */

.pk-hm-value-section {
  padding: 0 0 70px 0;
  /* background-color: #ffffff; */
}

.pk-hm-value-section .value-inner {
  background-color: var(--bg-secondary);
  border-radius: 24px;
  padding: 50px 0 !important;
}

.pk-hm-value-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pk-hm-value-slider {
  height: fit-content;
}
/* .pk-hm-value-grid {
  list-style: none;
  padding: 0;
  margin: 0;
} */

.pk-hm-value-card {
  /* flex: 1; */
  background-color: transparent;
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid #ddd9d0;
  margin: 0;
  transition: background-color 0.25s ease;
}

.pk-hm-value-card:last-child {
  border-right: none;
}

.pk-hm-value-card:hover {
  background-color: rgba(255, 255, 255, 0.55);
}

.pk-hm-value-icon {
  margin-bottom: 20px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-hm-value-icon svg,
.pk-hm-value-icon img{
  width: 42px;
  height: 42px;
}

.pk-hm-value-card-title {
  /* font-family: var(--font-heading); */
  font-weight: 700;
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.pk-hm-value-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 200px;
  margin-inline: auto;
}

.pk-hm-value-slider .splide__pagination__page {
  background: #ccc;
  opacity: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pk-hm-value-slider .splide__pagination__page.is-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

.pk-hm-value-slider .splide__pagination {
  margin-top: 20px;
  position: relative;
  bottom: auto;
}

.pk-hm-value-icon svg,
.pk-hm-value-icon img {
    animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.09);
    }
}

/* VALUE SECTION RESPONSIVE */
@media (max-width: 1024px) {
  .pk-hm-value-section {
    /* padding: 40px 0; */
    background-color: #ffffff;
  }
  .pk-hm-value-header {
    margin-bottom: 40px;
  }

  .pk-hm-value-card {
    border-right: none;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .pk-hm-value-section {
    padding: 0 0 50px 0;
    background-color: #ffffff;
  }
  .pk-hm-value-header {
    margin-bottom: 30px;
  }
  .pk-hm-value-card {
    padding: 0px 20px;
  }
  .pk-hm-value-icon svg {
    width: 34px;
    height: 34px;
  }
  .pk-hm-value-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .pk-hm-value-card-desc {
    font-size: 13px;
    line-height: 1.5;
    max-width: 100%;
  }
}
