*{
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

.tech-specs {
  background-color: #fff;
  color: #333;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  /* max-width: 650px; */
  /* margin: 0 auto; */
  padding: 40px 0px;
}

.tech-specs h2 {
  text-align: center;
  font-size: 42px;
  margin-top: 40px;
  margin-bottom: 40px;
  color: #111;
}

.specs-table {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
}

.spec-row {
  font-size: clamp(14px,2vw,16px);
  display: flex;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  transition: background-color 0.3s ease;
}

.spec-row:hover {
  background-color: #f9f9f9;
}

.spec-row:nth-child(1) { animation-delay: 0.1s; }
.spec-row:nth-child(2) { animation-delay: 0.2s; }
.spec-row:nth-child(3) { animation-delay: 0.3s; }
.spec-row:nth-child(4) { animation-delay: 0.4s; }
.spec-row:nth-child(5) { animation-delay: 0.5s; }
.spec-row:nth-child(6) { animation-delay: 0.6s; }
.spec-row:nth-child(7) { animation-delay: 0.7s; }
.spec-row:nth-child(8) { animation-delay: 0.8s; }
.spec-row:nth-child(9) { animation-delay: 0.9s; }
.spec-row:nth-child(10) { animation-delay: 1s; }
.spec-row:nth-child(11) { animation-delay: 1.1s; }
.spec-row:nth-child(12) { animation-delay: 1.2s; }
.spec-row:nth-child(13) { animation-delay: 1.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spec-label {
  padding-left: 16px;
  font-weight: bold;
  width:250px;
}
.spec-label a{
  left: 50%;
}

.spec-value {
  text-align: left;
  flex: 1;
  padding-left: 20px;
}
#indent1{
  padding-right: 20px;
}

@media (min-width: 321px) and (max-width: 767px) {
  #indent1{
    padding-right: 10px;
  }
  .specs-table {
    border-left: none;
     padding-left: 0px;
    padding-right: 0px;

  }
  .spec-row {
    align-items: flex-start;
    padding: 10px;
  }
  .spec-label, .spec-value {
    padding-left: 0;
  }
  .spec-label {
    width: 100px;
  }
  .spec-value {
    padding-left: 30px;
  }
}
@media (max-width: 375px) {

  #indent1{
    padding-right: 10px;
  }
  .specs-table {
    border-left: none;
    padding-left: 0px;
    padding-right: 0px;
  }
  .spec-row {
    align-items: flex-start;
    padding: 10px;
  }
  .spec-label, .spec-value {
    padding-left: 0;
  }
  .spec-label {
    flex: none;
    width: 120px;
  }
}



/*version 2*/
.tech-specs2 {
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  padding: 40px 20px;
  background-color: black;
}
.tech-specs2 h1 {
  text-align: center;
  font-size: clamp(30px,4vw,42px);
  margin-top: 70px;
  margin-bottom: 30px;
  color: white;
  font-weight: bold;
}
.specs-card2 {
  background-color: black;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.specs-table2 {
  margin:auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background-color: #201f1f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-row2.show {
  opacity: 1;
  transform: translateY(0);
}
.spec-row2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.spec-label2, .spec-value2 {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  min-width: 150px;
  color: #f1f1f1;
}
.spec-label2{
  font-size:clamp(19px,2.5vw,20px);
  font-weight: bold;
  padding:0px;
}
.spec-value2{
  font-size:20px;
  padding:0px;
}
.vertical-line2 {
  width: 2px;
  height: 100%;
  background-color: rgb(255,153,0);
  min-height: 40px;
}
@media (max-width: 700px) {
  #safety-images{
    margin:0px !important;
  }
  .spec-row2 {
    flex-direction: row !important;
    justify-content: space-between !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .spec-row2:nth-child(odd) {
    background-color: #000000 !important;
  }

  .spec-row2:nth-child(even) {
    background-color: #201f1f !important;
  }

  /* Enhanced animation for mobile */
  .spec-row2.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  /* Add sequential delay for each row */
  .spec-row2:nth-child(1).show { transition-delay: 0.1s; }
  .spec-row2:nth-child(2).show { transition-delay: 0.2s; }
  .spec-row2:nth-child(3).show { transition-delay: 0.3s; }
  .spec-row2:nth-child(4).show { transition-delay: 0.4s; }
  .spec-row2:nth-child(5).show { transition-delay: 0.5s; }
  .spec-row2:nth-child(6).show { transition-delay: 0.6s; }
  .spec-row2:nth-child(7).show { transition-delay: 0.7s; }
  .spec-row2:nth-child(8).show { transition-delay: 0.8s; }
  .spec-row2:nth-child(9).show { transition-delay: 0.9s; }
  .spec-row2:nth-child(10).show { transition-delay: 1.0s; }
  .spec-row2:nth-child(11).show { transition-delay: 1.1s; }
  .spec-row2:nth-child(12).show { transition-delay: 1.2s; }
  .spec-row2:nth-child(13).show { transition-delay: 1.3s; }

  .spec-row2:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6) !important;
  }

  .spec-label2 {
    text-align: left !important;
    width: 45% !important;
    color: #f1f1f1 !important;
  }

  .spec-value2 {
    text-align: right !important;
    width: 45% !important;
    color: #f1f1f1 !important;
  }

  .vertical-line2 {
    display: none !important;
  }

  .tech-specs2 {
    background-color: black !important;
  }

  .specs-card2 {
    background-color: black !important;
  }
}
@media (max-width: 425px) {
  .specs-card2 {
    padding: 0px;
  }
  .spec-label2, .spec-value2 {
    padding: 5px 0px;
  }
  .spec-value2 {
    font-size: 15px;
  }
  .spec-row2 {
    padding:15px;
  }
}

/* Override tech-specs2 styles specifically for mobile */
@media (max-width: 700px) {
  .tech-specs2 {
    padding: 20px 0;
  }

  .specs-card2 {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }

  .specs-table2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 100%;
  }

  .spec-row2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 7px;
    margin-bottom: 2px;
    border-radius: 0;
    background-color: #f5f5f5;
    opacity: 1;
    transform: none;
    box-shadow: none;
    transition: none;
  }

  .spec-row2:nth-child(odd) {
    background-color: #f5f5f5;
  }

  .spec-row2:nth-child(even) {
    background-color: #fff;
  }

  .spec-row2:hover {
    transform: none;
    box-shadow: none;
    background-color: inherit;
  }

  .spec-label2, .spec-value2 {
    flex: none;
    min-width: auto;
    padding: 0 10px;
  }

  .spec-label2 {
    width: 45%;
    text-align: left;
    color: #333;
    font-size: 16px;
  }

  .spec-value2 {
    width: 45%;
    text-align: right;
    color: #333;
    font-size: 16px;
  }

  .vertical-line2 {
    display: none;
  }

  /* Remove animation classes */
  .spec-row2.show {
    opacity: 1;
    transform: none;
  }
}
/* @media(min-width:1441px){
  .spec-label, .spec-value, p, li{
    font-size: 24px;
  }
} */
/*Safety Features*/

/* .safety-features h1{
  text-align: center;
  margin: 20px 0px 20px 0px;
  color: black;
  font-size: 32px;
}
@media (max-width: 767px) {
  .safety-features h1{
    font-size: 26px;
  }
} */
.safety-features h2{
  margin-bottom:0px;
  font-size:clamp(23px,3vw,2.5rem);
  color: black;
}
.safety-features p{
  font-size:clamp(12px,1.7vw,1.5rem);
  margin-bottom:clamp(10px,2vw,20px);
  color:#000000
}
.safety-features p,.safety-features h2{
  text-align: left;
}
.info1, .info2, .info3{
  max-width: 100vw;
}
@media (max-width: 767px) {
  .safety-features img{
    padding:5%;
  }
  .safetyinfo{
    padding:5% !important;
  }
  .infocontent{
    margin: 0px !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ff9500, #ffb347);
}