/* Main Content */
body {
  background-color: #000;
}

.main-content {
  padding: 60px 0;
  /* max-width: 1920px; */
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
  color: #fff;
}

.smartdial-section {
  padding: 50px 0 0;
}

.smartdial-section img {
  width: 100%;
}

.smartdial-section-title,
.features-list-section-title {
  color: #fff;
  font-size: clamp(24px, calc(1.5rem + (30 - 24) * ((100vw - 768px) / (1920 - 768))), 30px);
  font-family: "Figtree", sans-serif;
}

.smartdial-section-list {
  list-style: none;
}

.smartdial-section-list-inner {
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}

.smartdial-section-wrapper {
  /* margin-bottom: 80px; */
  padding: 60px 1px;
}

.smartdial-section-wrapper:nth-child(even) {
  flex-direction: row-reverse;
  /* margin-bottom: 0; */
}


.power-supply-banner {
  position: relative;
}

.power-supply-banner img {
  width: 100%;
  height: calc(100vh - 200px);
}

.power-supply-banner-content {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  text-align: center;
}

.power-supply-banner-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(16px, calc(1rem + (26 - 16) * ((100vw - 768px) / (1920 - 768))), 26px);
  font-family: "Figtree", sans-serif;
}

.power-supply-banner-subtitle {
  font-size: clamp(14px, calc(0.875rem + (16 - 14) * ((100vw - 768px) / (1920 - 768))), 16px);

}

.power-supply-banner-desc {
  font-size: clamp(12px, calc(0.75rem + (16 - 12) * ((100vw - 768px) / (1920 - 768))), 16px);

}

.smartdial-section-subtitle,
.features-list-section-subtitle {
  font-size: clamp(16px, calc(1rem + (20 - 16) * ((100vw - 768px) / (1920 - 768))), 20px);
}

.smartdial-section-desc,
.features-list-section-desc {
  margin-bottom: 0;
  font-size: clamp(14px, calc(0.875rem + (16 - 14) * ((100vw - 768px) / (1920 - 768))), 16px);
  color: #fff;
}

.features-list-section {
  margin-top: 50px;
}

.features-list-section-wrap {
  padding: 55px 1px;
  display: flex;
  align-items: center;
}

.features-list-section-item-block {
  width: calc(60% - 0px);
}

.features-list-section-item-image {
  width: calc(40% - 0px);
}

.features-list-section-wrap:nth-child(odd) .features-list-section-item-block {
  margin-right: 50px;
}

.features-list-section-wrap:nth-child(even) .features-list-section-item-block {
  padding-left: 10%;
}

.features-list-section-wrap:nth-child(even) {
  flex-direction: row-reverse;
}

/* Hero Banner Section */
.personalisation-hero-section {
  .page-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 2px;

    .page-title {
      font-family: 'Figtree', sans-serif;
      font-size: clamp(24px, calc(1.5rem + (48 - 24) * ((100vw - 767px) / (1920 - 767))), 48px);
      text-align: center;
      color: #ffffff;
      font-weight: 400;
      margin: 0;
    }

    .title-divider {
      width: 256px;
      height: 1px;
      background: linear-gradient(to right,
          rgba(0, 0, 0, 0) 0%,
          #b68e44 50%,
          rgba(0, 0, 0, 0) 100%);
    }
  }

  .intro-text {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    margin: 0 auto;
  }

  .personalisation-hero-image {
    /* aspect-ratio: 16 / 5.6; */

    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
  }

}

/* Jogdial Animaton section starts here */
.jog-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0;
  background: #000;

  .jog-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 2px 20px;

    .jog-image {
      .jog-image-inner {
        position: relative;
        overflow-x: hidden;

        img {
          display: block;
          width: 100%;
          height: auto;
          max-height: 500px;
          object-fit: cover;
        }
      }
    }

    .jog-menu {
      text-align: left;

      .jog-menu-title {
        font-size: 14px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #bda371;
        margin-bottom: 16px;
      }

      .jog-menu-list {
        list-style: none;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scroll-behavior: smooth;
        gap: .5rem;

        .jog-menu-item {
          width: fit-content;
          font-size: clamp(16px, calc(1rem + (21 - 16) * ((100vw - 768px) / (1920 - 768))), 21px);
          font-family: "Figtree", sans-serif;
          letter-spacing: 0.15em;
          text-transform: uppercase;

          cursor: pointer;
          transition: color 0.25s ease, transform 0.25s ease;
          color: rgba(255, 255, 255, 0.8);

          &:hover,
          &.active {
            transform: translateX(4px);
          }
        }
      }
    }
  }
}

.jog-menu-item.active a {
  color: #bda371;
}

/* Jogdial Animaton section Ends here */

   @media (width <=1280px) {
        .smartdial-section-wrapper {
            padding: 60px 35px;
        }
    }

    
    @media (width <=1024px) {
        .features-list-section-wrap {
            padding: 40px 35px;
        }

        .features-list-section {
            margin-top: 0;
        }

        .features-list-section-item-block,
        .features-list-section-item-image {
            width: 100%;
        }

        .power-supply-banner-content {
            padding: 20px;
            max-width: 300px;
        }

        .power-supply-banner-subtitle {
            line-height: 21px;
        }

        .power-supply-banner-desc {
            line-height: 21px;
        }

        .power-supply-banner img {
            width: 100%;
            height: 100%;
        }



    }

@media (max-width: 992px) {
  .jog-section {
    & .jog-wrapper {
      padding: 2px;
    }
  }
}



@media (max-width: 760px) {
  .main-content {
    padding: 30px 0;
  }

  .jog-section {
    & .jog-wrapper {
      padding: 2px;

      /* flex-direction: column-reverse; */
      .jog-image {
        display: flex;
        order: 2;

        .jog-image-inner {
          text-align: center;
          width: 100%;

          img {
            max-height: 100%;
          }
        }
      }

      .jog-menu {
        order: 1;

        .jog-menu-list {
          display: flex;
          flex-direction: row;
          white-space: nowrap;
          width: 100%;
          overflow: auto;
          -ms-overflow-style: none;
          scrollbar-width: none;

          &::-webkit-scrollbar {
            display: none;
          }

          .jog-menu-item {
            border: 1px solid #bda371;
            padding: 5px;
            font-size: 12px;

            &:hover,
            &.active {
              transform: translateX(0);
            }
          }
        }
      }
    }
  }


      .features-list-section-wrap {
            flex-direction: column-reverse;
            padding: 18px;
        }

        .features-list-section-wrap:nth-child(odd) .features-list-section-item-block {
            margin-right: 0;
        }

        .features-list-section-wrap:nth-child(even) .features-list-section-item-block {
            padding-left: 0%;
        }

        .features-list-section-wrap:nth-child(even) {
            margin-top: 20px;
            flex-direction: column-reverse;
        }

        .power-supply-banner-content {
            padding: 30px;
            position: static;
            background: unset;
            max-width: 500px;
            width: 100%;

        }

        .smartdial-section {
            padding: 20px 0 0;
        }

        .smartdial-section-wrapper {
            padding: 25px 1px;
        }


}

