.trending-category-hero-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 100px;
  min-height: 650px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.trending-category-hero-heading {
  /* color: #fff; */
  color: #001a56;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-align: center;
}

.trending-category-hero-sec p.home-hero-p {
  /* color: #fff; */
}

.trending-page-a-btn-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

@media (max-width: 992px) {
  .trending-category-hero-heading {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .trending-category-hero-sec {
    padding: 30px 15px;
  }

  .trending-category-hero-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .trending-page-a-btn-parent {
    flex-direction: column;
  }
}

/* ---------------------- */
.hover-connecting-boxes-tab-section {
  padding: 50px 0;
  background-color: #cef7ff;
}

.hover-connecting-boxes-tab-panel {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 20px;
  max-width: 90%;
}

.hover-connecting-boxes-tab-panel.current-tab {
  display: flex;
  animation: fadeIn 0.4s ease-in-out;
}

.hover-connecting-boxes-tab-panel.current-tab h2 {
  text-align: left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.trending-page-a-btn {
  color: #000;
  padding: 16px 25px;
  border-radius: 30px;
  background: transparent linear-gradient(58deg, rgb(142 233 255 / 32%) 0, rgb(79 230 255 / 32%) 100%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease,
    background-color 0.3s ease, outline 0.3s ease;
  border: 1px solid #a4defd;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.trending-page-a-btn-normal {
  color: #000;
  padding: 16px 25px;
  border-radius: 30px;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease,
    background-color 0.3s ease, outline 0.3s ease;
  border: 1px solid #a4defd;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.trending-page-a-btn-normal:hover {
  color: #000;
}

.trending-page-a-btn-active {
  color: #ffffffff;
  padding: 16px 25px;
  border-radius: 30px;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease,
    background-color 0.3s ease, outline 0.3s ease;
  border: 1px solid #a4defd;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  letter-spacing: 1px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
}

.trending-page-a-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  z-index: -1;
}

.trending-page-a-btn-active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
  z-index: -1;
}

.trending-page-a-btn:hover {
  color: #000;
  box-shadow: inset 0 0 0 2px #fff;
}

.trending-page-a-btn-active:hover {
  color: #000;
  box-shadow: inset 0 0 0 2px #fff;
}

.trending-page-a-btn:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}

.trending-page-a-btn-active:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}

.hover-connecting-boxes-tab-buttons-parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 10px;
  position: relative;
}

.hover-connecting-boxes-tab-btn {
  height: 125px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.hover-connecting-boxes-tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 30px;
  width: 3px;
  z-index: -1;
  opacity: 0;
  background-color: #00a9e2;
  transition: opacity 0.3s ease-in;
}

.hover-connecting-boxes-tab-btn:nth-child(1)::after {
  height: 47px;
  bottom: -40px;
  right: -15px;
  transform: rotate(-42deg);
}

.hover-connecting-boxes-tab-btn:nth-child(2)::after {
  height: 29px;
  bottom: -29px;
  left: 50%;
}

.hover-connecting-boxes-tab-btn:nth-child(3)::after {
  height: 47px;
  bottom: -40px;
  left: -16px;
  transform: rotate(42deg);
}

.hover-connecting-boxes-tab-btn:nth-child(4)::after {
  height: 3px;
  width: 28px;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}

.hover-connecting-boxes-tab-btn:nth-child(6)::after {
  height: 3px;
  width: 28px;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
}

.hover-connecting-boxes-tab-btn:nth-child(7)::after {
  height: 3px;
  width: 29px;
  top: 50%;
  right: -29px;
  transform: translateY(-50%);
}

.hover-connecting-boxes-tab-btn:nth-child(8)::after {
  height: 3px;
  width: 28px;
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
}

.hover-connecting-boxes-tab-btn:nth-child(9)::after {
  height: 47px;
  top: -40px;
  right: -16px;
  transform: rotate(42deg);
}

.hover-connecting-boxes-tab-btn:nth-child(10)::after {
  height: 28px;
  top: -28px;
  left: 50%;
}

.hover-connecting-boxes-tab-btn:nth-child(11)::after {
  height: 47px;
  top: -40px;
  left: -15px;
  transform: rotate(-42deg);
}

.hover-connecting-boxes-tab-btn.current-tab::after {
  opacity: 1;
}

.hover-connecting-boxes-tab-btn img {
  height: 72px;
  border: 1px solid #efefef;
  border-radius: 13px;
}

/* .hover-connecting-boxes-tab-btn:hover, */
.hover-connecting-boxes-tab-btn.current-tab {
  background-color: #fff;
  border: 2px solid #00a9e2;
}

.hover-connecting-boxes-tab-buttons-center-box {
  grid-column: 2;
  grid-row: 2 / span 2;
  /* background: #fff; */
  border: 2px solid #00a9e2;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 10px;
}

/* .hover-connecting-boxes-connector {
  position: absolute;
  background: #00a9e2;
  height: 2px;
  transform-origin: 0 50%;
  z-index: 0;
  pointer-events: none;
} */

@media (max-width: 992px) {
  .hover-connecting-boxes-tab-panel {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hover-connecting-boxes-tab-btn img {
    height: 50px;
  }

  .hover-connecting-boxes-tab-buttons-parent {
    gap: 15px;
  }
    .hover-connecting-boxes-tab-btn:nth-child(1)::after {
      height: 33px;
      bottom: -27px;
      right: -10px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(2)::after {
      height: 18px;
      bottom: -18px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(3)::after {
      height: 35px;
      bottom: -28px;
      left: -11px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(4)::after {
      width: 19px;
      right: -19px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(6)::after {
      width: 19px;
      left: -19px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(7)::after {
      width: 19px;
      right: -19px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(8)::after {
      width: 19px;
      left: -19px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(9)::after {
      height: 35px;
      top: -28px;
      right: -11px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(10)::after {
      height: 18px;
      top: -18px;
    }
  
    .hover-connecting-boxes-tab-btn:nth-child(11)::after {
      height: 33px;
      top: -27px;
      left: -10px;
    }
}

/* ---------------------- */

.industry-specific-section {
  padding: 60px 10px;
}

@media (max-width: 768px) {
  .industry-specific-section {
    padding-bottom: 0;
  }
}

/* ---------------------- */
.key-features-section {
  padding: 50px 0;
}

/* ---------------------- */
.trending-category-process-section {
  padding: 50px 0;
  overflow: hidden;
}

.trending-category-process-parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 45px;
  position: relative;
}

.trending-category-process-cards {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
}

.trending-category-process-section .new-index-tab-head .left-main-h2 {
  text-align: left;
}

.trending-category-process-line {
  position: absolute;
  top: 58%;
  left: -25%;
  width: 2000px;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(0, 169, 226, 1) 0%,
      rgba(0, 169, 226, 0.54) 80%,
      rgba(0, 169, 226, 0.35) 85%);
  margin: 40px 0;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.trending-category-process-card-num {
  padding: 12px;
  background-color: #00a9e2;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.trending-category-process-card-num::before {
  content: "";
  height: 4px;
  width: 20px;
  background: #00a9e2;
  position: absolute;
  top: 50%;
  left: -20px;
  display: none;
  transform: translateY(-50%);
}

/* Animation base for cards */
.trending-category-process-cards {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

/* When in view */
.process-visible .trending-category-process-line {
  opacity: 1;
  transform: translateX(0);
}

.process-visible .trending-category-process-cards {
  opacity: 1;
  transform: translateX(0);
}

.process-visible .trending-category-process-cards:nth-child(2) {
  transition-delay: 0.3s;
}

.process-visible .trending-category-process-cards:nth-child(3) {
  transition-delay: 0.6s;
}

.process-visible .trending-category-process-cards:nth-child(4) {
  transition-delay: 0.9s;
}

@media (max-width: 1400px) {
  .trending-category-process-line {
    top: 51%;
  }
}

@media (max-width: 1200px) {
  .process-visible .trending-category-process-cards h3 {
    font-size: 24px;
  }

  .trending-category-process-line {
    top: 50%;
  }
}

@media (max-width: 992px) {
  .trending-category-process-parent {
    gap: 20px;
  }

  .trending-category-process-line {
    top: 39%;
  }

  .trending-category-process-cards {
    gap: 15px;
  }

  .process-visible .trending-category-process-cards h3 {
    font-size: 19px;
  }

  .trending-category-process-card-num {
    padding: 10px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .trending-category-process-section {
    padding-inline: 25px;
  }

  .trending-category-process-parent {
    grid-template-columns: repeat(1, 1fr);
  }

  .trending-category-process-parent {
    gap: 50px;
  }

  .trending-category-process-line {
    height: 1700px;
    width: 4px;
    top: -12px;
    left: -20px;
  }

  .process-visible .trending-category-process-cards h3 {
    font-size: 26px;
    order: 3;
  }

  .trending-category-process-cards img {
    order: 2;
  }

  .trending-category-process-cards p {
    order: 4;
  }

  .trending-category-process-card-num {
    padding: 12px;
    font-size: 20px;
    order: 1;
  }

  .trending-category-process-card-num::before {
    display: block;
  }
}

/* ---------------------- */
.service-delivary-options-section {
  padding: 50px 0;
}

.service-delivary-options-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.service-delivary-options-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  position: relative;
}

.service-delivary-options-sticky {
  height: 20%;
}

.service-delivary-options-images {
  height: 75%;
}

.service-delivary-options-images img {
  width: 100%;
}

.service-delivary-options-cards-parent {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 45%;
}

.service-delivary-options-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 30px;
  border: 2px solid #efefef;
  cursor: pointer;
  transition: border-color 0.3s ease-in;
}

.service-delivary-options-card.active-service {
  border-color: #00a9e2;
}

.service-delivary-options-card:hover {
  border-color: #00a9e2;
}

.service-delivary-options-card-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
}

.service-delivary-options-card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
}

.service-delivary-options-card-image img {
  height: 65px;
}

.service-delivary-options-card-text-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.service-delivary-options-sticky.new-index-tab-head h2 {
  text-align: left;
}

@media (max-width: 992px) {
  .service-delivary-options-main {
    flex-direction: column;
  }

  .service-delivary-options-content {
    width: 100%;
    align-items: center;
    gap: 40px;
  }

  /* .service-delivary-options-sticky {
    position: static;
    padding-bottom: 0;
  } */

  .service-delivary-options-cards-parent {
    width: 100%;
  }

  .service-delivary-options-card {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .service-delivary-options-section {
    padding: 40px 15px 40px;
  }

  .service-delivary-options-content {
    gap: 30px;
  }

  .service-delivary-options-sticky.new-index-tab-head h2 {
    text-align: center;
  }

  .service-delivary-options-content p {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .service-delivary-options-card {
    flex-direction: column;
  }

  .service-delivary-options-card-image {
    width: 100%;
    justify-content: left;
  }

  .service-delivary-options-card-image img {
    height: 55px;
  }

  .service-delivary-options-card-text {
    width: 100%;
  }
}

/* -------------------- */
.use-cases-applications-section {
  padding: 50px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.use-cases-applications-cards-parent {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  margin-top: 100px;
}

.use-cases-applications-card {
  padding: 20px;
  border: 2px solid #f7f7f7ff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.use-cases-applications-card-content-heading-icon {
  padding: 5px;
  border-radius: 10px;
  background-color: #fff;
  width: max-content;
}

.use-cases-applications-card img {
  height: 40px;
}

.use-cases-applications-card-content {
  display: none;
  margin-top: 15px;
}

/* Active card expands and shows content */
.use-cases-applications-card.present-card {
  grid-column: span 2;
  border-color: #00a9e2;
  background: #ffffffff;
}

.use-cases-applications-card.present-card .use-cases-applications-card-content {
  display: block;
}

.use-cases-applications-card-content-heading h3 {
  font-size: 22px;
  margin-top: 20px;
  color: #fff;
}

.use-cases-applications-card-content p {
  color: #fff;
}

.use-cases-applications-section .new-index-tab-head h2 {
  color: #fff !important;
}

.use-cases-applications-card.present-card .use-cases-applications-card-content p,
.use-cases-applications-card.present-card .use-cases-applications-card-content-heading h3 {
  color: #000;
}

.use-cases-applications-navigation {
  display: none;
  gap: 20px;
  margin-top: 10px;
}

.use-cases-applications-navigation-prev,
.use-cases-applications-navigation-next {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  font-size: 18px;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  user-select: none;
  cursor: pointer;
}

.use-cases-applications-navigation-prev:hover,
.use-cases-applications-navigation-prev:focus,
.use-cases-applications-navigation-next:hover,
.use-cases-applications-navigation-next:focus {
  color: #000;
  background-color: #fff;
}

@media (max-width: 1400px) {
  .use-cases-applications-cards-parent {
    grid-template-columns: repeat(7, minmax(250px, 1fr));
    padding-bottom: 15px;
    overflow-x: scroll;
  }

  .use-cases-applications-navigation {
    display: flex;
  }
}

@media (max-width: 768px) {
  .use-cases-applications-section {
    padding: 50px 10px;
  }

  .use-cases-applications-cards-parent {
    grid-template-columns: repeat(7, minmax(150px, 1fr));
  }
}

/* ------------------- */
.buyers-quest-tabs-section {
  padding: 50px 10px;
}

.buyers-quest-tabs-btn-parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.buyers-quest-tab-btn {
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-bottom: 3px solid #ddd;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  user-select: none;
}

.buyers-quest-tab-btn:hover {
  color: #00a9e2;
  border-color: #00a9e2;
}

.buyers-quest-tabs-cards-parent {
  margin-top: 50px;
}

.buyers-quest-tabs-card {
  padding: 25px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  gap: 25px;
  box-shadow: 0 0 10px #efefef;
}

.buyers-quest-tabs-card-content {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 0px 20px 10px 10px;
}

.buyers-quest-tabs-card-content h3 {
  line-height: 1.3;
}

.buyers-quest-tabs-card-content ul {
  padding-left: 1rem;
  margin-top: 20px;
}

.buyers-quest-tabs-card-content ul li {
  margin-top: 15px;
}

.buyers-quest-tabs-section .new-index-tab-head p {
  text-align: center;
  margin-top: 15px;
}

.buyers-quest-tabs-card-image {
  width: 65%;
}

.buyers-quest-tabs-card-image img {
  width: 100%;
  border-radius: 20px;
}

.buyers-quest-tabs-card {
  display: none;
}

.buyers-quest-tabs-card.active-card {
  display: flex;
}

.buyers-quest-tab-btn.active-tab {
  color: #00a9e2;
  border-color: #00a9e2;
}

@media (max-width: 992px) {
  .buyers-quest-tabs-btn-parent {
    overflow-x: scroll;
    padding-bottom: 15px;
    margin-top: 40px;
  }

  .buyers-quest-tabs-card {
    flex-direction: column;
  }

  .buyers-quest-tabs-card-content {
    width: 100%;
    gap: 20px;
  }

  .buyers-quest-tabs-card-content ul {
    margin-top: 15px;
  }

  .buyers-quest-tabs-card-image {
    width: 100%;
  }

  .buyers-quest-tab-btn {
    min-width: max-content;
  }
}

/* ------------------- */
.delivery-options-section {
  padding: 50px 10px;
}

.delivery-options-main-container {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.delivery-options-left-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.delivery-options-right-tab-cards-parent {
  width: 55%;
  display: flex;
  flex-direction: column;
  background-color: #cef7ff;
  padding: 20px;
  border-radius: 20px;
}

.delivery-options-right-tabs-card-inner-1 {
  margin-top: 10px;
}

.delivery-options-left-content-tabs-btn-parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.delivery-options-left-content-tab-btn {
  padding: 20px;
  border: 2px solid #efefef;
  border-radius: 15px;
  cursor: pointer;
  transition: border-color 0.3s ease-in;
}


/* .delivery-options-right-tabs-content {
  margin-top: 25px;
} */

.delivery-options-left-content-tab-btn-image {
  padding: 5px;
  background-color: #fff;
  border-radius: 10px;
  width: max-content;
  margin-bottom: 20px;
}

.delivery-options-left-content-tab-btn img {
  height: 45px;
}

.delivery-options-right-tab-btns-parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.delivery-options-right-tab-btn {
  padding: 10px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-bottom: 3px solid #ddd;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  user-select: none;
}

.delivery-options-right-tab-btn:hover {
  color: #00a9e2;
  border-color: #00a9e2;
}

.delivery-options-right-tabs-content pre {
  padding: 0;
  margin-bottom: 0;
}

.delivery-options-right-tabs-content pre code {
  padding: 10px 15px;
}

.delivery-options-left-content-tab-btn.current-format {
  background: #00a9e2;
  color: #fff;
  border-color: #00a9e2;
}

/* .delivery-options-right-tab-btn.current-format {
  background: #00a9e2;
  color: #fff;
} */

.delivery-options-right-tab-btn.current-format {
  /* background: #fff; */
  background: transparent;
  color: #00a9e2;
  border-color: #00a9e2;
}

.delivery-options-right-tabs-card {
  display: none;
  flex-direction: column;
}

.delivery-options-right-tabs-card.current-format {
  display: flex;
  gap: 25px;
}

@media (max-width: 992px) {
  .delivery-options-main-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .delivery-options-left-content {
    width: 100%;
  }

  .delivery-options-right-tab-cards-parent {
    width: 100%;
  }
}

@media (max-width: 475px) {
  .delivery-options-left-content-tabs-btn-parent {
    gap: 10px;
  }

  .delivery-options-left-content-tab-btn {
    padding: 10px;
  }

  .delivery-options-left-content-tab-btn img {
    height: 35px;
  }

  .delivery-options-right-tab-btns-parent {
    gap: 15px;
  }

  .delivery-options-right-tab-btn {
    font-size: 18px;
  }
}

/* -------------------------- */
.trending-page-why-choose-us-section {
  background-color: #cef7ff;
  padding: 50px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 850px;
}

.trending-page-why-choose-us-main {
  display: flex;
  gap: 50px;
}

.trending-page-why-choose-us-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}

.trending-page-why-choose-us-content .new-index-tab-head h2 {
  text-align: left;
  margin-bottom: 10px;
}

.trending-page-why-choose-us-tabs-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* margin-top: 50px; */
}

.trending-page-why-choose-us-tabs-categories button {
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.trending-page-why-choose-us-tabs-categories button.current-category {
  background: #00a9e2;
  color: white;
}

/* RIGHT SIDE SLIDER */
.trending-page-why-choose-us-slider-container {
  width: 50%;
  /* max-width: 600px; */
  height: 600px;
  position: relative;
}

.why-choose-us-card.slick-slide {
  max-width: 450px !important;
  margin-inline: auto;
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
}

.why-choose-us-card .why-choose-us-card-details-image {
  padding: 5px;
  background-color: #fff;
  border-radius: 10px;
  width: max-content;
  margin-bottom: 20px;
}

.why-choose-us-card .why-choose-us-card-details-image img {
  height: 45px;
}

/* .trending-page-why-choose-us-slider .slick-list.draggable .slick-track {
    display: flex;
    flex-direction: column;
} */

.trending-page-why-choose-us-slider .slick-slide {
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s ease;
}

.trending-page-why-choose-us-slider .slick-center {
  color: #fff;
  background-color: #00a9e2;
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

.trending-page-why-choose-us-slider .slick-center h4 {
  color: #fff !important;
}

/* Custom rotation */
.trending-page-why-choose-us-slider .slider-prev {
  transform: rotate(-10deg) scale(0.85);
  opacity: 0.7;
}

.trending-page-why-choose-us-slider .slider-next {
  transform: rotate(10deg) scale(0.85);
  opacity: 0.7;
}

.trending-page-why-choose-us-slider .slick-slide img {
  /* width: 100%;
  height: auto; */
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

.trending-page-why-choose-us-slider .slick-slide.slick-current.slick-active.slick-center~.slick-slide.slider-next {
  rotate: -18deg;
  transform: translate(15px, 100px);
}

.trending-page-why-choose-us-slider .slider-prev:has(+ .slick-center) {
  rotate: 18deg;
  transform: translate(-15px, -100px);
}

/* Responsive */
@media (max-width: 992px) {
  .trending-page-why-choose-us-section {
    min-height: unset;
  }

  .trending-page-why-choose-us-main {
    flex-direction: column;
  }

  .trending-page-why-choose-us-content {
    width: 100%;
  }

  .trending-page-why-choose-us-slider-container {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .why-choose-us-card.slick-slide {
    max-width: none !important;
  }

  .trending-page-why-choose-us-slider .slick-slide {
    opacity: 1;
    transform: scale(1);
  }

  .trending-page-why-choose-us-slider .slider-prev {
    transform: rotate(0deg) scale(0.85);
    opacity: 1;
  }

  .trending-page-why-choose-us-slider .slider-next {
    transform: rotate(0deg) scale(0.85);
    opacity: 1;
  }

  .trending-page-why-choose-us-slider .slick-slide.slick-current.slick-active.slick-center~.slick-slide.slider-next {
    rotate: 0deg;
    transform: translate(0, 0);
  }

  .trending-page-why-choose-us-slider .slider-prev:has(+ .slick-center) {
    rotate: 0deg;
    transform: translate(0, 0);
  }
}

@media (max-width: 600px) {
  .trending-page-why-choose-us-tabs-categories {
    gap: 10px;
  }

  .trending-page-why-choose-us-tabs-categories button {
    padding: 10px 15px;
    font-size: 16px;
  }
}

/* ------------------------- */
.dynamic-pricing-section {
  padding: 50px;
}

.dynamic-pricing-wrapper .new-index-tab-head {
  margin-inline: auto;
}

.dynamic-pricing-wrapper .new-index-tab-head p {
  text-align: center;
  margin-top: 10px;
}

/* Grid Layout */
.dynamic-pricing-main-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 70px;
}

/* Card Base */
.dynamic-pricing-priceCard,
.dynamic-pricing-chart-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 2px solid #efefef;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dynamic-pricing-chart-card {
  grid-column: span 2;
}

/* .dynamic-pricing-priceCard:hover {
  border-color: #00a9e2;
} */

.dynamic-pricing-chart-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.dynamic-pricing-chart-card-price-icon img {
  height: 40px;
}

/* .dynamic-pricing-main-grid-main-image {
  position: relative;
  border: 2px solid #efefef;
  border-radius: 1rem;
}
.dynamic-pricing-main-grid-main-image::before {
  content: '';
  height: 3px;
  width: 35px;
  background-color: #00a9e2;
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
}
.dynamic-pricing-main-grid-main-image::after {
  content: '';
  height: 3px;
  width: 35px;
  background-color: #00a9e2;
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
} */
.dynamic-pricing-main-grid-main-image img {
  /* height: 100%; */
  display: none;
  width: 100%;
  border-radius: 1rem;
}

.dynamic-pricing-main-grid-main-image img.active-price-img {
  /* height: 100%; */
  display: block;
}

/* Product Info */
.dynamic-pricing-product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* .dynamic-pricing-product-header img {
  display: none;
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
} */

/* Prices */
.dynamic-pricing-price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dynamic-pricing-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  background: #cef7ff4d;
  cursor: pointer;
  border-radius: 0.75rem;
}

.dynamic-pricing-price-row.active-price-tab {
  background: #cef7ff;
}

.dynamic-pricing-price-row span {
  font-weight: 500;
}

.dynamic-pricing-price-row .amazon {
  color: #4ade80;
  font-weight: bold;
}

.dynamic-pricing-price-row .flipkart {
  color: #3b82f6;
  font-weight: bold;
}

.dynamic-pricing-price-row .croma {
  color: #facc15;
  font-weight: bold;
}

.dynamic-pricing-lastUpdated {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Chart Card */
.dynamic-pricing-chart-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

/* Alerts */
.dynamic-pricing-alerts {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.dynamic-pricing-alertBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: #cef7ff;
  border: 1px solid #00a9e2;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

/* .dynamic-pricing-alertBox.activeAlert {
  transform: scale(1.05);
} */

.dynamic-pricing-alertBox h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

#dynamic-pricing-priceChart {
  max-height: 350px;
  width: 100%;
}

@media (max-width: 1200px) {
  /* .dynamic-pricing-main-grid {
    grid-template-columns: repeat(2, 1fr);
  } */

  /* .dynamic-pricing-product-header img {
    display: block;
  } */

  /* .dynamic-pricing-main-grid-main-image {
    display: none;
  } */

  .dynamic-pricing-product-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  /* .dynamic-pricing-main-grid {
    grid-template-columns: repeat(1, 1fr);
  } */
}

@media (max-width: 768px) {
  .dynamic-pricing-main-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .dynamic-pricing-chart-card {
    grid-column: span 1;
  }

  .dynamic-pricing-section {
    padding: 30px 20px;
  }

  .dynamic-pricing-main-grid {
    margin-top: 50px;
  }

  .dynamic-pricing-priceCard,
  .dynamic-pricing-chart-card {
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 375px) {
  #dynamic-pricing-priceChart {
    max-width: 270px !important;
  }
}

/* ----------------- */
.service-delivary-btn {
  padding: 5px;
  text-decoration: none;
  color: #000;
  border-bottom: 2px solid #e1f5fa;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.service-delivary-btn:hover {
  color: #00a9e2;
  border-color: #00a9e2;
}

.data-field-list li::before {
  color: #00a9e2;
}