.boxmapda {
  width: 620px;
  height: 620px;
  /* background: white; */
  margin: 0 auto;
}

.video_homepage {
  /* opacity: 0.5; */
}

.supportview_imgcompoent {
  width: 100%;
  max-height: 100vh;
  height: 100%;
}

.tp-leftarrow.tparrows.default.hidearrows,
.tp-rightarrow.tparrows.default.hidearrows {
  display: none;
}
.image-fullwidth-component {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  margin: 0 auto;
  display: block;
}
.image-fullwidth-component img {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: block;
  object-fit: contain;
  /* Prevents overlap with content below */
  position: static;
}

.materials-grid {
  max-width: 600px;
  margin: 0 auto;
}

.material-sample {
  position: relative;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.material-sample:hover {
  transform: scale(1.1);
}

.sample-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
  transition: border-color 0.3s ease;
  margin: 0 auto;
}

.material-sample:hover .sample-circle {
  border-color: rgba(255, 255, 255, 0.6);
}

.sample-number {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

/* 

*/

.power-feature-section {
  width: 100vw;
  background: #e0e0e0 url("your-bg.jpg") center/cover no-repeat;
  padding: 60px 0 40px 0;
  box-sizing: border-box;
}
.power-feature-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.power-feature-left {
  flex: 1 1 350px;
  max-width: 420px;
}
.power-feature-left h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}
.power-feature-left .strong {
  font-weight: 700;
}
.power-feature-left p {
  color: #333;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.6;
}
.power-feature-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: background 0.2s;
  width: 100%;
}
.power-feature-btn:hover {
  background: #f5f5f5;
}
.power-feature-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 260px;
}
.power-feature-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 8px;
}
.power-feature-tabs .tab {
  font-weight: 600;
  color: #222;
  font-size: 1.1rem;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.power-feature-tabs .tab.active {
  color: #222;
  border-bottom: 2px solid #bdb08d;
}
.power-feature-tabline {
  height: 1px;
  background: #d6d1c2;
  width: 100%;
}
