@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Gothic&display=swap");
:root {
  --w-column: 200px;
  --background-color: #1a1a1a;
  --text-color: #eee;
  --border-radius: 30px;
  --green: #3be798;
  --violet: #7f6eb2;
  --dark: #2b2b2b;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: none;
  color: #fff;
  font-size: 15px;
  font-family: Poppins;
  & * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  header {
    position: fixed;
    z-index: 100000;
    width: min(1200px, 90vw);
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr calc(var(--w-column) * 3);
    gap: 10%;
    align-items: center;
    & .logo {
      & img {
        width: 50px;
      }
    }
    & nav {
      & ul {
        display: grid;
        grid-template-columns: repeat(3, var(--w-column));
      }
    }
  }
  & .carousel {
    background-image: radial-gradient(#f4f5f7, #f1f1f1);
    height: 100vh;
    overflow: hidden;
    position: relative;
    & .list {
      width: min(1200px, 90vw);
      margin: auto;
      height: 100%;
      position: relative;
      & .item {
        position: absolute;
        inset: 0;
        & figure {
          position: absolute;
          width: 70%;
          top: 50%;
          transform: translateY(-50%);
          & img {
            width: 100%;
            transform: rotate(-30deg);
          }
          &::before {
            content: "";
            position: absolute;
            background-color: #ffffff;
            width: 100%;
            height: 100px;
            top: 150%;
            left: 50px;
            border-radius: 50%;
            filter: blur(50px);
          }
        }

        & .content {
          position: absolute;
          z-index: 20;
          width: 70%;
          height: 100%;
          right: var(--w-column);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: end;
          gap: 20px;
          & .category {
            font-weight: 500;
            color: #0088a9;
          }
          & h2 {
            font-family: "League Gothic";
            font-size: 11em;
            line-height: 1em;
          }
          & .description {
            align-items: center;
            color: rgb(0, 0, 0);
            max-width: 400px;
            font-size: small;
            text-align: right;
            backdrop-filter: blur(10px);
            & i {
              height: 50px;
              color: #ffea7c;
              font-size: 2em;
              border: 1px solid #659cdf;
              border-radius: 50%;
              display: flex;
              justify-content: center;
              align-items: center;
            }
          }
        }
        & .more {
          display: grid;
          grid-template-columns: repeat(2, 120px);
          gap: 20px;
          grid-template-rows: 35px;
          & button {
            border-radius: 30px;
            font-family: "League Gothic";
            text-transform: uppercase;
            color: #fff;
            background-color: transparent;
            border: none;
            position: relative;
            &:nth-child(1) {
              background-image: linear-gradient(to right, #81baa0, #46a39c);
            }
            &:nth-child(2) {
              border: 2px solid transparent;
              background: linear-gradient(#d3d4da, #242745) padding-box,
                linear-gradient(to right, #81baa0, #46a39c) border-box;
              & i {
                margin-right: 10px;
              }
            }
          }
        }
      }
      &::after {
        content: "";
        position: absolute;
        right: var(--w-column);
        width: var(--w-column);
        height: 100%;
        pointer-events: none;
      }
      &::before {
        content: "";
        position: absolute;
        z-index: 10;
        height: var(--w-column);
        width: 100%;
        top: 52%;
        pointer-events: none;
      }
    }
    & .arrows {
      width: min(1200px, 90vw);
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: 52%;
      left: 50%;
      transform: translate(-50%, -25px);
      pointer-events: none;
      z-index: 100;
      & button {
        top: 60%;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1px solid #56565655;
        background-color: #f1f1f1;
        color: rgba(145, 145, 145, 0.84);
        font-size: large;
        cursor: pointer;
        pointer-events: auto;
        transition: 0.5s;
        &:hover {
          border: 1px solid #659cdf;
          color: #fff;
        }
      }
    }
    & .indicators {
      position: absolute;
      top: 52%;
      height: var(--w-column);
      width: min(1200px, 90vw);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      pointer-events: none;
      justify-content: end;
      gap: 10px;
      & .number {
        font-family: "League Gothic";
        font-size: 7vw;
      }
      & ul {
        display: flex;
        gap: 10px;
        & li {
          width: 50px;
          height: 5px;
          background-color: #659cdf;
          border-radius: 10px;
          pointer-events: auto;
          cursor: pointer;
          transition: 0.5s;
          &.active {
            background-color: yellow;
          }
        }
      }
    }
  }
}


body {
  .carousel {
    --calculation: 1; 
    & .list {
      & .item {
        transform: translateX(calc(100vw * var(--calculation)));
        transition: 0.5s;
        opacity: 0;
        & figure {
          & img {
            transform: rotate(0deg);
            transition: transform 0.5s;
            transition-delay: 0.3s;
          }
        }
        & .content {
          & .category,
          h2,
          .description,
          .more {
            transform: translateX(calc(200px * var(--calculation)));
            transition: 0.7s;
            opacity: 0;
            transition-delay: 0.3s;
          }
          & h2 {
            transition-delay: 0.5s;
          }
          & .description {
            transition-delay: 0.7s;
          }
          & .more {
            transition-delay: 0.9s;
          }
        }
        &.active {
          opacity: 1;
          transform: translateX(0);
          & figure {
            & img {
              transform: rotate(-20deg);
            }
          }
          & .content {
            & .category,
            h2,
            .description,
            .more {
              transform: translateX(0px);
              opacity: 1;
            }
          }
        }
        &.activeOld {
          transform: translateX(calc(-100vw * var(--calculation)));
        }
      }
    }
  }
}

section {
  background-image: none;
  color: black;
  position: relative;
  -webkit-text-stroke-width: 0.001px;
  -webkit-text-stroke-color: rgb(248, 248, 248);
}

.autoBLur {
  animation: autoBLurAnimation linear both;
  animation-timeline: view();
}

li,
a,
button {
  font-family: Poppins;
  color: #000000;
  text-decoration: none;
}

.nav-logo {
  width: 60px;
  height: 60px;
  height: auto;
  cursor: pointer;
  border-radius: 50%;
}

.tab-logo {
  width: 20px;
}

.nav__links {
  list-style: none;
}

.nav__links li {
  display: inline-block;
  padding: 0px 20px;
}

.nav__links li a {
  transition: all 0.3s ease 0s;
}

.nav__links li a :hover {
  color: #0088a9;
}

.img-rotate {
  animation: autorotateImage linear both;
  animation-timeline: view();
}

.section-class {
  font-family: poppins;
  font-size: 20px;
  position: relative;
}

.autoShow {
  animation: autoShowAnimation both;
  animation-timeline: view(70% 5%);
}

.section-title {
  margin-top: 10vh;
  margin-bottom: 10vh;
  font-family: poppins;
  font-size: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  position: relative;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: var(--dark);
}
.basicInfo {
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 25px;
  position: relative;
}
.title .category,
.title .info {
  font-weight: 600;
  font-size: x-small;
}
.title .name {
  font-weight: bold;
  font-size: large;
  padding-bottom: 3px;
}
.card .img {
  position: relative;
  z-index: 1;
  text-align: center;
}
.card .img img {
  width: 100%;
  transform: scale(1) rotate(20deg);
  transition: 0.5s;
  display: block;
}
.img input:checked ~ img {
  display: block;
}
.card .img::before {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  z-index: -2;
  top: 50%;
  left: 50%;
}
.card .img::after {
  position: absolute;
  bottom: 0;
  width: 70%;
  height: 40px;
  background-color: #000;
  content: "";
  right: 30px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(10px);
  transition: 0.5s;
}
.img input {
  position: absolute;
  opacity: 0;
}
.colors {
  display: flex;
  font-size: xx-small;
  text-align: center;
}
.colors label {
  margin-right: 10px;
}
.colors .name {
  margin-bottom: 5px;
}
.colors .ellipse {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.mores {
  padding: 25px;
}
.mores .stars,
.mores .price {
  display: inline-block;
}
.mores .price {
  float: right;
  color: #eee;
  font-weight: 600;
  letter-spacing: 1px;
}
.mores .stars {
  color: #9b9a9a;
}
.text-yellow {
  color: rgb(209, 209, 6);
}
.addCard {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.addCard i {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--green);
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  right: 90px;
  bottom: -25px;
  border: 5px solid var(--dark);
  transition: 0.5s;
  opacity: 0;
  transform: translate(0, 10px);
}
.addCard::after,
.addCard::before {
  position: absolute;
  bottom: 0;
  background-color: transparent;
  width: 47px;
  height: 38px;
  content: "";
  right: 46px;
  opacity: 0;
  transform: translate(0, 20px);
  transition: 0.5s;
}
.addCard::after {
  right: unset;
  left: 107px;
  border-bottom-left-radius: 0;
}

/* animation */
.card:hover .img img {
  transform: scale(1.2) rotate(30deg) translate(10px, -20px);
}

.card:hover .img::after {
  width: 90%;
}

.card:hover .addCard i,
.card:hover .addCard::before,
.card:hover .addCard::after {
  opacity: 1;
  transform: translate(0, 0);
}

.section-class-blur {
  font-family: poppins;
  font-size: 5vw;
  margin-top: 10vh;
  position: relative;
  display: grid;
  place-items: center;
}


.list {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  display: grid;
  /* 5 equal columns (desktop) with min-width fallback */
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  /* grid-auto-rows: minmax(450px, 500px); */
  grid-template-areas:
    " item1     item2     item3    item4"
    " item1     item2     item3    item4";
  gap: 2rem;
}

.item1 {
  grid-area: item1;
}
.item2 {
  grid-area: item2;
}
.item3 {
  grid-area: item3;
}
.item4 {
  grid-area: item4;
}

.item5 {
  grid-area: item5;
}
.item6 {
  grid-area: item6;
}

.list .item-list {
  color: #c7c3c3;
  font-family: "Poppins", sans-serif;
  position: relative;
  transition: transform 0.5s ease, filter 0.5s ease;
  border-radius: 20px;
  contain: layout paint;
}

.list .item-list img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

.list .item-list:hover img {
  transform: scale(1.1); 
  transform-origin: center;
}

.list .item-list .content {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: calc(100% - 40px); 
  box-sizing: border-box;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.list .item-list:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.list:hover .item-list:not(:hover) {
  filter: blur(4px); 
}

.list .card:hover {
  opacity: 1;
}

.list:has(.card:hover) .card:not(:hover) {
  filter: blur(8px);
}

.footer-class {
  width: auto;
  height: 8vh;
  font-family: Poppins;
  background-image: radial-gradient(#f4f5f7, #f1f1f1);
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline {
  position: relative;
  margin-left: 100px;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  content: "";
  background-color: #e9ecef;
}
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
.timeline > li:after,
.timeline > li:before {
  display: table;
  content: " ";
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timeline-panel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timeline-image {
  position: absolute;
  z-index: 100;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: 0;
  text-align: center;
  color: white;
  border: 7px solid #e9ecef;
  border-radius: 100%;
  background-color: #dc3545;
}
.timeline > li .timeline-image h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timeline-heading h4 {
  margin-top: 0;
  color: black;
}
.timeline .timeline-heading h4.subheading {
  text-transform: none;
}
.timeline .timeline-body > ul,
.timeline .timeline-body > p {
  margin-bottom: 0;
}

.rounded-circle {
  border-radius: 50% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.section-heading {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-subheading {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin-bottom: 4rem;
}
.text-center {
  text-align: center !important;
}

.team-member {
  margin-bottom: 3rem;
  text-align: center;
}
.team-member img {
  width: 14rem;
  height: 14rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}
.team-member h4 {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.text-muted {
  color: black;
}

.section-class-remaining {
  padding-top: 10vh;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #f8f9fa;
}

.btn {
  color: #242745;
}

.btn-social {
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 100%;
}

.slider {
  position: relative;
  width: 100%;
  height: 50vh;
  left: -50px;
  overflow: hidden;
}
.slideritem {
  position: absolute;
  width: auto;
  height: 520px;
  text-align: justify;
  background-color: #fff;
  color: black;
  border-radius: 10px;
  padding: 20px;
  transition: 0.5s;
  left: calc(50% - 110px);
  top: 0;
}

#slidernext,
#sliderprev {
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #56565655;
  background-color: #e5e5e5;
  color: rgba(145, 145, 145, 0.84);
  font-size: large;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.5s;
  left: 5vw;
}
#slidernext {
  left: unset;
  right: 5vw;
}

#slidernext:hover,
.sliderprev:hover {
  border: 1px solid #659cdf;
  color: #fff;
}

.product-images {
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-card {
  margin-bottom: 3rem;
  text-align: center;
}
.business-card img {
  width: 40rem;
  height: 20rem;
  border: 0.5rem solid rgba(0, 0, 0, 0.1);
}
.business-card h4 {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.owner-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.owner-profile {
  width: 100%;
}

#actual-product {
  margin-top: 10vh;
}

.copyright-elana {
  font-size: 0.9rem;
  font-weight: bolder;
  color: #000000;
  text-align: center;
}

.elana-developer {
  font-size: 0.5rem;
  color: #000000;
  text-align: center;
}
.elana-developer-name {
  font-size: 0.6rem;
  font-weight: bold;
  color: #3d51e6;
  text-align: center;
}

.card-overlay {
  position: relative;
  top: 10%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: var(--dark);
}

.additional-info {
  transition: opacity 0.3s ease, max-height 0.3s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.additional-info.show {
  opacity: 1;
  max-height: 200px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.show {
  display: flex;
  opacity: 1;
}

.overlay-content {
  background-color: white;
  border-radius: 10px;
  max-width: 50vw;
  width: 90%;
  position: absolute;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.overlay.show .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

.card-header {
  background-color: #007bff;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.close-btn {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 1rem;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.close-btn:hover {
  color: #ff0000;
}

.card-body {
  padding: 20px;
}

.list-group-item {
  border: none;
  padding: 10px 15px;
}

.badge {
  margin-right: 5px;
  font-size: 0.9em;
}

.project-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  margin-top: -75px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.circle-img-animation {
  animation: flip 3s forwards;
}

.slidernexttoys,
.sliderprevtoys {
  position: absolute;
  top: 36%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #56565655;
  background-color: #e5e5e5;
  color: rgba(145, 145, 145, 0.84);
  font-size: large;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.5s;
  left: 5vw;
  z-index: 1000;
}
.slidernexttoys {
  left: unset;
  right: 5vw;
}

.slidernexttoys:hover,
.sliderprevtoys:hover {
  border: 1px solid #659cdf;
  color: #fff;
}

.popupheader {
  color: #000;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.footer-copyright-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phone-img-size {
  display: flex;
  max-width: 95px;
  max-height: 230px;
  width: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  left: 70px;
}

.banner-image {
  max-width: 600px;
  max-height: 1200px;
  width: auto;
  height: auto;
}

.navbar {
  backdrop-filter: none;
}

.item4,.item3,.item2,.item1{
  position: relative;
  top: 50%;
  left: 50%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: var(--dark);
}

@property --angle{
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.item4::after, .item4::before,.item3::after, .item3::before,.item2::after, .item2::before,.item1::after, .item1::before{  
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(
    from var(--angle), #252927,
    #3be798,
    #252927,
    #3be798,
    #252927
  );
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding : 3px;
  border-radius: 30px;
  animation: 3s spin linear infinite;
}

.item4::before,.item3::before,.item2::before,.item1::before{
  filter: blur(1.5rem);
  opacity: 0.5;
}

.map-iframe{
  height: 40vh;
  width: 40%;
}

.map-section{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
  padding-bottom: 5vh;  
}

.find-us{
  background-color: #f8f9fa;
  margin: none;
  padding: none;
}

#customer-review{
  margin-top: 3vh;
}