* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}

/* .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #13dada, #4ac3ec, #2c5364);
  color: white;
  padding: 5px 20px;
  position: relative;
  z-index: 1;
} */

/* .company-info {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
} */

/* .company-details {
  line-height: 1.2;
} */

/* .company-details span {
  font-size: 14px;
  margin-right: 20px;
} */
/* 
.social-icons {
  display: flex;
  gap: 15px;
  flex: 1;
  position: relative;
  right: 50px;
  justify-content: flex-end;
}

.social-icons a {
  background-color: #f4f4f4;
  font-size: 10px;
  transition: all 0.5s ease;
  padding: 10px;
  border-radius: 30%;
  position: relative;
  overflow: hidden;
}

.social-icons a i {
  font-size: 16px;
}
.social-icons .facebook {
  color: #1877f2;
}
.social-icons .instagram {
  color: #e1306c;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: all 0.5s ease;
}

.social-icons a:hover::before {
  left: 100%;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #f39c12, #d35400);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  .company-info,
  .social-icons {
    justify-content: center;
  }
} */

/* Nav */

/* HERO SECTION START */
.carousel {
  margin-top: -80px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel .list {
  height: 100%;
  position: relative;
}

.carousel .list::before {
  position: absolute;
  width: var(--w-image);
  height: 100%;
  content: "";
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  z-index: 10;
  pointer-events: none;
}

.carousel .list::after {
  position: absolute;
  top: 50px;
  left: 50px;
  content: "";
  background-color: red;
  width: 400px;
  height: 300px;
  z-index: 10;
  pointer-events: none;
  border-radius: 20px 50px 110px 230px;
  filter: blur(150px);
  opacity: 0.6;
}

.carousel .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel .list .item .image {
  width: var(--w-image);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(100% - calc(var(--w-image) * var(--calculate)));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  font-weight: 500;
}

.carousel .list .item .image img {
  width: 90%;
  height: 350px;
  margin-bottom: 20px;
  filter: drop-shadow(0 150px 50px #9e0c0c55);
  border-radius: 100%;
}

.carousel .list .item .image figcaption {
  font-family: "Aboreto";
  font-weight: bold;
  font-size: 1.3em;
  text-align: right;
  margin-bottom: 30px;
  width: 70%;
}

.carousel .list .item .main-content {
  height: 100%;
  display: grid;
  grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}

.carousel .list .item .main-content .content {
  padding: 150px 20px 20px 80px;
}

.carousel .list .item .main-content .content h2 {
  font-size: 5em;
  font-family: "Aboreto";
}

.carousel .list .item .main-content .content .price {
  font-family: "Aboreto";
  font-size: 3em;
  margin: 20px 0;
}

.carousel .list .item .main-content .content .addToCard {
  background-color: #4f8b69;
  color: #fff;
  padding: 10px 30px;
  font-family: Poppins;
  font-size: large;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  margin-top: 20px;
}

.arrows {
  position: absolute;
  bottom: 20px;
  width: calc(100% - calc(var(--w-image) * var(--calculate)));
  display: grid;
  grid-template-columns: repeat(2, 50px);
  grid-template-rows: 50px;
  justify-content: end;
  gap: 10px;
}

.arrows button {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: #fff;
  font-family: monospace;
  font-size: large;
  font-weight: bold;
  line-height: 0;
  box-shadow: 0 10px 40px #5555;
  cursor: pointer;
  transition: 0.5s;
}

.arrows button:hover {
  background-color: #eee5;
}

.carousel .list .item {
  display: none;
}

.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2 {
  display: block;
}

.carousel .list .item.active {
  z-index: 2;
}

.carousel .list .item.other_1,
.carousel .list .item.other_2 {
  pointer-events: none;
}

.carousel .list .item.active .main-content {
  animation: showContent 1s ease-in-out 1 forwards;
}

@keyframes showContent {
  from {
    clip-path: circle(0% at 70% 50%);
  }
  to {
    clip-path: circle(100% at 70% 50%);
  }
}

.next .item.other_1 {
  z-index: 1;
}

.next .item .image img,
.next .item .image figcaption {
  animation: effectNext 0.5s ease-in-out 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(calc(var(--transform-from)));
  }
  to {
    transform: translateX(calc(var(--transform-from) - var(--w-image)));
  }
}

.next .item.active .image {
  --transform-from: var(--w-image);
}

.next .item.other_1 .image {
  z-index: 3;
  --transform-from: 0px;
  overflow: hidden;
}

.next .item.other_2 .image {
  z-index: 3;
  --transform-from: calc(var(--w-image) * 2);
}

.arrows {
  z-index: 10;
}

/* prev */

.prev .list .item .image img,
.prev .list .item .image figcaption {
  animation: effectPrev 0.5s ease-in-out 1 forwards;
}

@keyframes effectPrev {
  from {
    transform: translateX(calc(var(--transform-from)));
  }
  to {
    transform: translateX(calc(var(--transform-from) + var(--w-image)));
  }
}

.prev .list .item.active .image {
  --transform-from: calc(var(--w-image) * -1);
  overflow: hidden;
}

.prev .list .item.other_1 .image {
  --transform-from: 0px;
  z-index: 3;
}

.prev .list .item.other_2 .image {
  z-index: 3;
  --transform-from: var(--w-image);
}

.prev .list .item.other_2 .main-content {
  opacity: 0;
}

@media screen and (max-width: 1023px) {
  :root {
    --calculate: 1;
    --w-image: 400px;
  }
  .carousel .list .item .main-content .content h2 {
    font-size: 3em;
  }
}

@media screen and (max-width: 767px) {
  .carousel .list .item .image {
    width: 100%;
    left: 0;
    justify-content: center;
  }
  .carousel .list .item .image figcaption {
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .carousel .list .item .main-content .content {
    display: none;
  }
  .arrows {
    left: 50%;
    justify-content: center;
  }
}

/* hero section end*/
:root {
  --border-color: #fff5;
  --w-image: 500px;
  --calculate: calc(3 / 2);
}
.nav-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-icon:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.nav-left {
  left: 10px;
}
.nav-right {
  right: 10px;
}

.dots-container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 15px;
  height: 15px;
  background: gray;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot .active {
  background: #ff4081;
}

@media (min-width: 769px) {
  .slide img {
    width: 50%;
  }
  .dots-container {
    gap: 20px;
  }
}

/*hero section end*/

/*about section for main section*/

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
}
.text-content {
  flex: 1;
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
}
.image-content {
  flex: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  animation: fadeInRight 1s ease-in-out;
}
.image-content img {
  width: 45%;
  border-radius: 10px;
  transition: transform 0.3s;
}
.image-content img:hover {
  transform: scale(1.1);
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ✅ Mobile View (Text Upar & Images Neeche) */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }

  .image-content {
    flex-direction: column;
    align-items: center;
  }

  .image-content img {
    display: none;
  }

  .text-content h2 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 0.9rem;
  }
}
/* about section end*/

/* features home add*/
.features {
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 50px 20px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
}

.feature {
  width: 30%;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature img {
  width: 50px;
  margin-bottom: 10px;
}

.feature h2 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 80%;
    margin-bottom: 20px;
  }
}
