a{
  text-decoration: none !important;
}
.left-lines-container {
  padding: 10px;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.right-lines-container {
  padding: 10px;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.line1,
.line2,
.line3,
.line4,
.line5,
.line6 {
  width: 0;
  height: 6px;
  border-radius: 50px;
  background-image: linear-gradient(to right, white, cyan);
  margin-bottom: 8px;
  animation: slide 0.2s linear forwards paused;
}
.line3,
.line6 {
  margin-bottom: 0;
}
.line2 {
  margin-right: 8px;
}
.line5 {
  margin-left: 8px;
}
.line4,
.line5,
.line6 {
  background-image: linear-gradient(to right, cyan, white);
}
.navbar{
  position: fixed !important;
  z-index: 10;
  width: 100%;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 10px 0;
}
.topbar .active {
  border-bottom: 3px solid cyan;
}

.topbar a span {
  transition: all 0.2s ease-in-out;
  padding: 10px 15px;
  font-size: 15px;
  cursor: pointer;
  color: black;
}
.topbar a span:hover {
  background-color: lightgray;
  border-radius: 10px;
}
.topbarSm {
  padding: 15px;
}
.topbarSm span{
  font-size: 22px;
}
.topbarSm span a{
  text-decoration: none;
  color: black;
}
.topbarSm i{
  font-size: 18px;
  cursor: pointer;
}
.sidebar{
  width: 0px;
  height: 100%;
  transition: all 0.2s;
  overflow: hidden;
  background-color: white;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  gap: 5px;
  padding: 20px 0;
  flex-direction: column;
}
.sidebar span{
  padding: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.sidebar span:hover{
  background-color: cyan;
}
.sidebar div span:hover{
  color: cyan;
  background: none;
}
@keyframes slide {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.mainBanContainer{
  overflow: hidden;
  position: relative;
}
.mainImg1{
  width: 100%;
  scale: 0;
  transition: all 0.5s;
}
.mainBanContainer .darkBackground{
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.584);
  position: absolute;
  top:0;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  transition-delay: 0.3s; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mainTexth1{
  color: aqua; 
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 90px;
  text-shadow: 1px 1px 15px rgb(0, 0, 0);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.5s;
}
.mainTexth2{
  color: white; 
  margin: 10px 10%;  
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.7s;
}
.mainBanContainer .darkBackground div{
  margin-top: 30px;
}
.mainIcon1,.mainIcon2{
  margin: 0 20px;
  color: white;
  font-size: 21px;
  font-weight: 100;
  transition: all 0.3s;
  transform: translateX(-100%);
  opacity: 0;
}
.mainIcon1{
  transition-delay: 0.9s;
}
.mainIcon2{
  transition-delay: 1s;
}
.mainBanContainer .darkBackground div span span{
  margin: 0 10px;
}
.mainBanContainer .darkBackground div span i{
  text-shadow: 1px 1px 10px white;
}
.mainBanContainer .darkBackground h2{
  color: white; 
  margin: 10px 10%;  
  text-align: center;
}

.productContainer {
  width: 100%;
  height: 100%; 
  position: relative;
}
.productContainer p {
  position: absolute;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  top: 8px;
}

.productBackground{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productLink{
  border: 1px solid aqua;
  border-radius: 5px;
  padding: 7px 10px;
  color: aqua;
  background: none;
  height: 38px;
  text-decoration: none;
  transform: translateY(200%);
  opacity: 0;
  transition: all 0.2s;
}
.productBackground:hover{
  background-color: rgba(0, 0, 0, 0.6);
}
.homeImages{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carouselContainer {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s;
  width: 100%;
  margin: auto;
  overflow: hidden;
  background-color: black;
  position: relative;
}
#carousel {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carouselItem {
  width: 100%; /* Set the width explicitly */
  flex: 0 0 auto; /* Prevent items from shrinking */
}

.carouselItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carouselButtons {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.carouselButtons button{
 background-color: lightcyan;
 border: none;
 padding: 10px;
}
.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  margin: 0 5px;
  cursor: pointer;
}

.activeCarousel {
  background-color: cyan;
}

.viewProductPname{
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.2s;
}
.viewProductPinfo{
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s;
  transition-delay:  0.4s;
}
.viewProductPcolor{
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.55s;
}
.viewProductPsize{
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.7s;
}
.viewProductPdetail{
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.2s;
  transition-delay: 0.85s;
}
.blogDescription{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 5; /* Limit the text to 6 lines */
  line-clamp: 5; /* Fallback for future compatibility */
}
footer{
  margin-top: 40px;
  background-color: black;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
footer span{
  text-shadow: 1px 1px 10px white;
  color: cyan;
}
.contactInfo1 i{
  font-size: 30px;
}
.contactInfoImg{
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s;
}
.contactInfoTxt1,.contactInfoTxt2{
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s;
  transition-delay: 0.2s;
  margin-top: 10px;
}
.contactInfo1, .contactInfo2, .contactInfo3, .contactInfo4, .contactInfo5{
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s;
}
.contactInfo1 ,.contactInfo2{
  transition-delay: 0.4s;
}
.contactInfo3{
  transition-delay: 0.6s;
}
.contactInfo4{
  transition-delay: 0.8s;
}
.contactInfo5{
  background-color: rgb(0, 191, 191);
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  color: white;
  margin-top: 10px;
  transition-delay: 1s;
}
@media screen and (max-width: 992px) {
  .topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 8px 0;
  }
  .topbar a span {
    padding: 7px 10px;
    font-size: 13px;
  }
  .mainTexth1{
    font-size: 70px;
  }
  .mainTexth2{
    font-size: 25px;
  }
  .mainIcon1 , .mainIcon2{
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 0;
  }
  .topbar a span {
    padding: 5px 8px;
  }
  .mainTexth1{
    font-size: 50px;
  }
  .mainTexth2{
    font-size: 20px;
  }
  .mainIcon1 , .mainIcon2{
    font-size: 15px;
  }
  .mainBanContainer .darkBackground div{
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .mainTexth1{
    font-size: 30px;
  }
  .mainTexth2{
    font-size: 15px;
  }
  .mainIcon1 , .mainIcon2{
    font-size: 13px;
  }
}
/* At last codes */
.appear{
  opacity:0;
  transform: translateY(50%);
  transition: all 0.3s;
}
.bring{
  opacity: 1;
  transform: translateY(0);
}
.appearBtoT{
  transform: translateY(0);
  opacity: 1;
}
.appearLtoR{
  transform: translateX(0);
  opacity: 1;
}