.main-cont {
  padding: 0rem 8rem;
}

/* SLIDER CONTAINER */
.slider {
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* SLIDES WRAPPER */
.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* SINGLE SLIDE */
.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1366 / 400;
  object-fit: cover;
}

/* NAVIGATION BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 15px;
}

.slider-btn.next {
  right: 15px;
}

/* RESPONSIVE PADDING */
@media (max-width: 1160px) {
  .main-cont {
    padding: 0rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .slider {
    border-radius: 8px;
  }

  /* .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  } */
  .slider-btn {
    display: none;
  }
}

/* FEATURES STRIP */
.features-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1rem 1rem;
  margin-top: 1rem;
  /* background-color: rgba(240, 248, 255, 0.525); */
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feature {
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}

.feature img {
  height: 2rem;
  width: 2rem;
  margin-bottom: 0.3rem;
  margin-left: 0.3rem;
}

.feature img:nth-child(1) {
  height: 1.9rem;
  width: 1.9rem;
}

.feature h4 {
  font-family: Teko;
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
  margin-top: -3px;
}

.feature p {
  font-family: Inter;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: -4px;
}

.feature:hover {
  scale: 1.1;
}

@media (max-width: 690px) {
  .feature p {
    display: none;
  }
  .feature h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 525px) {
  .feature h4 {
    font-size: 1rem;
    line-height: 17px;
  }
  .feature {
    gap: 0.4rem;
  }
}

/* ABOUT US */
.about-us {
  margin-top: 2rem;
  background-color: #183d9e;
  /* background-color: #0a2472; */
  display: flex;
}

.about-wrapper {
  display: flex;
  padding: 3rem 10%;
}

.about-us .content {
  padding-top: 4.2rem;
}

.about-img {
  display: flex;
  align-items: center;
}

.about-img img {
  height: 27rem;
  transition: all 0.3s;
  cursor: pointer;
  opacity: 1;
}

.about-us .content h4,
.about-us .content h2,
.about-us .content p {
  color: white;
}

.about-us .content h4 {
  font-family: Teko;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  text-decoration: underline;
  margin-bottom: 1rem;
  width: fit-content;
}

.about-us .content h2 {
  font-family: Teko;
  font-size: 2.8rem;
  width: 95%;
  line-height: 50px;
  margin-bottom: 1rem;
}
.about-us .content p {
  width: 79%;
  font-family: Inter;
  line-height: 26px;
  color: #e5e5e5;
  font-weight: 600;
}

.neon-head {
  color: greenyellow;
  cursor: pointer;
  text-decoration: underline;
}

.sec-head {
  margin-top: 5px;
  display: flex;
  align-items: center;
}

.sec-head a:link,
.sec-head a:visited,
.sec-head a:hover,
.sec-head a:active {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1460px) {
  .about-img img {
    height: 27rem;
  }
}

@media (max-width: 1430px) {
  .about-us .content {
    padding-top: 2.2rem;
  }
}

@media (max-width: 1360px) {
  .about-us .content h2 {
    width: 95%;
  }
  .about-us .content p {
    width: 73%;
    font-size: 0.9rem;
  }
  .about-img img {
    height: 24rem;
  }
}
@media (max-width: 1285px) {
  .about-img img {
    height: 20rem;
  }
}

@media (max-width: 1250px) {
  .about-us .content h2 {
    width: 95%;
  }
  .about-us .content p {
    width: 80%;
  }
}

@media (max-width: 1160px) {
  .about-wrapper {
    display: flex;
    padding: 4rem 3.4rem;
  }
  .about-img img {
    height: 22rem;
  }
}

@media (max-width: 900px) {
  .about-wrapper {
    padding: 2rem 2rem;
    padding-top: 1rem;
  }
  .about-us .content h2 {
    width: 100%;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 38px;
  }
  .about-us .content p {
    width: 99%;
    font-size: 0.8rem;
    line-height: 18px;
    color: #e5e5e5;
  }
  .sec-head {
    margin-top: 10px;
  }

  .about-img img {
    height: 20rem;
  }
}
@media (max-width: 700px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .about-img img {
    height: 21rem;
  }
}

@media (max-width: 450px) {
  .about-wrapper {
    flex-direction: column;
    padding: 2rem;
  }
  .about-img {
    justify-content: center;
  }
  .about-us .content h2 {
    font-size: 1.8rem;
    line-height: 37px;
    margin-bottom: 0.6rem;
  }
  .about-us .content p {
    line-height: 23px;
  }
  .about-us .content h4 {
    margin-bottom: 0.7rem;
  }
  .sec-head {
    margin-top: 10px;
  }
  .about-img img {
    height: 17rem;
  }
}

.temp {
  height: 100vh;
  background-color: greenyellow;
}

/* TOP PROUCTS */
.cont-top-products {
  display: flex;
  gap: 1rem;
  padding: 2.2rem;
  border-bottom: 2px solid rgba(74, 74, 74, 0.612);
  padding-bottom: 2.2rem;
}

.top-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 42%;
}

.top-text h2 {
  font-family: Teko;
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  width: fit-content;
}

.top-text h4 {
  font-weight: 500;
  font-size: 1rem;
  width: 100%;
}

.top-head {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid black;
}

.top-icons {
  display: flex;
  align-items: center;
}

.top-icons img {
  height: 2rem;
}
.top-icons p {
  font-weight: 600;
  font-size: 1.4rem;
  font-family: Teko;
  font-style: italic;
}

.top-slider {
  /* background-color: #e9e9e9; */
  background-color: #183d9e;
  height: 27rem;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.slide-mover {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  align-items: center;
  height: 100%;
  padding: 0rem 2.2rem;
  transition: transform 0.4s ease-in-out;
}

.slide-comp {
  background-color: white;
  height: 22rem;
  width: 20rem;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* .tp-img {
  height: 250px;
  width: 250px;
  overflow: hidden;
  border-bottom: 1px solid black;
}

.tp-img img {
  height: 250px;
} */

.tp-img {
  height: 250px;
  width: 250px;
  overflow: hidden;
  border-bottom: 1px solid black;
  display: block; /* ensure block container */
}

.tp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comp-text {
  align-self: flex-start;
  margin-left: 10px;
  margin-top: 5px;
}

.slide-comp h4 {
  font-size: 1.1rem;
}

.tp-price {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.tp-price .mrp {
  text-decoration: line-through;
  font-size: 0.8rem;
}
.tp-price .discounted {
  font-weight: 600;
  font-size: 0.95rem;
}

.order-btn {
  margin-top: 0.4rem;
  border: none;
  background-color: #183d9e;
  padding: 0.3rem;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.slider-btn-top {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.slider-btn-top:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn-top.prev {
  left: 15px;
}

.slider-btn-top.next {
  right: 15px;
}

@media (max-width: 1370px) {
  .slide-comp {
    width: 18.5rem;
  }
  .slide-mover {
    gap: 1.5rem;
  }
}

@media (max-width: 1290px) {
  .slide-comp {
    width: 16.8rem;
  }
  .slide-mover {
    gap: 1.5rem;
  }
}
@media (max-width: 1050px) {
  .slide-comp {
    width: 15.8rem;
  }
  .slide-mover {
    gap: 1.5rem;
  }
  .tp-img {
    height: 235px;
    width: 234px;
  }
}
@media (max-width: 500px) {
  .cont-top-products {
    flex-direction: column;
    padding: 2.2rem 1.2rem;
  }
  .top-text {
    width: 100%;
  }
  .tp-img img {
    width: 97%;
    margin-top: 10px;
  }
  .slide-comp {
    height: 22rem;
    width: 15rem;
    padding: 0rem 1.2rem;
  }
  .slide-mover {
    padding: 0rem 1.2rem;
  }
  .comp-text {
    margin-top: 9px;
  }
}

@media (max-width: 415px) {
  .slide-comp {
    width: 14.6rem;
  }
}

@media (max-width: 395px) {
  .slide-comp {
    width: 13rem;
  }
  .tp-img img {
    width: 100%;
  }
  .tp-img {
    width: 198px;
    height: 226px;
  }
  .slide-comp {
    padding: 0rem 1rem;
  }
}

@media (max-width: 380px) {
  .slide-comp {
    width: 12rem;
  }
  .tp-img img {
    width: 100%;
  }
  .tp-img {
    width: 170px;
    height: 220px;
  }
  .slide-comp {
    padding: 0rem 0.8rem;
  }
}

/* MARQUE CONTAINER */
.brands-marque {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marque-text {
  padding-top: 3.2rem;
  text-align: center;
}

.marque-text h2 {
  font-family: Teko;
  font-size: 3.2rem;
}

.marque-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: -12px auto 0;
  background-color: #183d9e;
}

.marque-cont {
  padding-top: 3.2rem;
  width: 100%;
  height: 5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow: visible;
  animation: scroll 40s linear infinite;
  align-items: center;
  margin-bottom: 2.2rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marque-cont img {
  height: 4rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.5s;
  opacity: 1;
  filter: grayscale(100%);
}

.marque-cont img:hover {
  scale: 1.05;
  filter: grayscale(0%);
}

.vsonic {
  height: 30px !important;
}

.fuji {
  height: 36px !important;
}

@media (max-width: 950px) {
  .marque-cont {
    gap: 1.5rem;
    animation: scroll 25s linear infinite;
  }
}

@media (max-width: 650px) {
  .marque-cont {
    animation: scroll 25s linear infinite;
    gap: 1.3rem;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-300%);
    }
  }

  .marque-text h2 {
    line-height: 52px;
  }

  h2::after {
    margin: -2px auto 0 !important;
  }
}

.xerox-auth {
  background-color: #0e0e0e;
  height: 3rem;
  width: 100%;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xerox-auth img {
  height: 2rem;
}
.xerox-auth p {
  color: white;
  font-weight: 600;
}

.xerox-auth a:link,
.xerox-auth a:visited,
.xerox-auth a:hover,
.xerox-auth a:active {
  text-decoration: none;
  color: inherit;
}

.xerox-auth span {
  color: white;
  margin-left: 5px;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 3px;
}
.shop {
  width: fit-content;
  border: none;
  background-color: #183d9e;
  color: white;
  padding: 0.5rem 0.7rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: rgba(0, 0, 0, 0.208) 0px 5px 15px;
}

.shop:hover {
  scale: 1.05;
}
/* ! STORE LOCATION */
.store-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem;
  padding-top: 2.2rem;
}

.store-location h2 {
  font-family: Teko;
  text-align: center;
  font-size: 3.4rem;
}

.store-location h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: -12px auto 0;
  background-color: #183d9e;
}

.gmap {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  margin-top: 2rem;
}

@media (max-width: 550px) {
  .store-location {
    padding: 0;
    padding-top: 2.2rem;
  }
  .gmap {
    width: 93%;
  }
}
