@import url('/landing/css/base.css');

.header-section {
  /* padding: 20px 80px; */
}

.banner-section {
  width: 100%;
  height: calc(100dvh - 120px);
  /* background: url('../images/banner-img.png') no-repeat; */
  background: none;
  background-position: center bottom;
  background-size: 100% 825px;
  z-index: 1;
}

/* Animation A: Subtle Left → Top */
@keyframes subtleLeftTop {
  0% {
    transform: translate(0px, 0px);
  }

  30% {
    transform: translate(-5px, 0px);
  }

  /* slight left */
  60% {
    transform: translate(-5px, -5px);
  }

  /* then top */
  100% {
    transform: translate(0px, 0px);
  }

  /* back */
}

/* Animation B: Subtle Up-Down Floating */
@keyframes subtleUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }

  /* slight up */
  100% {
    transform: translateY(0px);
  }

  /* back */
}

/* ===== Apply animations to images ===== */

/* Animation A: Left → Top */
.blue-jacket-img {
  left: 0px;
  top: 0px;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0s;
}

.yellow-skirt {
  left: 34%;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.2s;
}

.black-joggers {
  right: 12%;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.4s;
}

/* Animation B: Up-Down Floating */
.dhoti-img {
  left: 89px;
  bottom: 0px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.1s;
}

.parachute-img {
  right: 70px;
  bottom: 0px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.gown-img {
  right: 267px;
  bottom: 66px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.brown-jacket-img {
  top: 30%;
  right: 0px;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.6s;
}

.blur-denim-short {
  top: 146px;
  left: 286px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.blur-brown-short {
  top: 202px;
  left: 50%;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.4s;
}

.pink-shirt {
  top: 43px;
  right: 40%;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.3s;
}

.yellow-blur-hat {
  top: 129px;
  right: 28%;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.brown-blur-hoody {
  left: 199px;
  top: 46%;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.6s;
}

.white-blur-skirt {
  left: 35%;
  top: 65%;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.7s;
}

.black-blur-skirt {
  left: 363px;
  bottom: 69px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.2s;
}

.light-blur-top {
  left: 50%;
  bottom: 77px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.brown-blur-hoody2 {
  right: 36%;
  bottom: 200px;
  animation: subtleUpDown 5s ease-in-out infinite;
  animation-delay: 0.4s;
}

.navy-top {
  right: 179px;
  top: 53%;
  animation: subtleLeftTop 6s ease-in-out infinite;
  animation-delay: 0.5s;
}

.main-heading {
  color: var(--dark);
  font-size: 39px;
  font-weight: 400;
  line-height: 65px;
  font-family: 'Romie';
}

.font-Romie {
  font-family: 'Romie';
}

.section-heading {
  color: var(--dark);
  font-size: 36px;
  font-weight: 400;
  line-height: 60px;
  font-family: 'Romie';
}

.banner-btn {
  padding: 20px 24px;
}

.imagine-section {
  padding: 20px 80px;
}

.imagine-video-wrapper {
  width: 100%;
  height: 927px;
  background-color: var(--dark);
  border-radius: 40px;
  overflow: hidden;
}

.imagine-video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}

.welcome-section {
  padding: 80px 80px;
}

.content-wrapper p:last-child {
  margin-bottom: 0px !important;
}

.footer-section {
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(
    --gradient_color,
    linear-gradient(89deg, #194266 -14.53%, #18c1ad 45.76%, #17fdcf 106.05%)
  );
}

.cms-section {
  padding: 80px 80px;
}

.banner-text-wrapper {
  position: relative;
  z-index: 888;
}

@media (max-width: 991px) {
  .header-section {
    position: sticky;
    top: -2px;
    padding: 20px 24px;
    box-shadow:
      rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
      rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    z-index: 999;
  }

  .header-sidebar {
    position: fixed;
    top: 0px;
    left: -350px;
    width: 280px;
    transition: 0.3s all ease-in-out;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    /* border-right: 1px solid #ddd; */
    z-index: 9999;
    background: var(--white);
  }

  .logo-wrapper {
    background: linear-gradient(
      89deg,
      #194266 -14.53%,
      #18c1ad 45.76%,
      #17fdcf 106.05%
    );
  }

  .header-sidebar-active {
    left: 0px;
  }

  .banner-section {
    background-size: 100% 625px;
  }

  .blue-jacket-img img {
    width: 144px;
    height: 144px;
  }

  .yellow-skirt {
    top: 70px;
    left: 170px;
  }

  .yellow-skirt img {
    width: 70px;
    height: 118px;
  }

  .black-joggers {
    top: 50px;
    right: -40px;
  }

  .blur-brown-short {
    top: 170px;
    left: 140px;
  }

  .black-joggers img {
    width: 130px;
    height: 190px;
  }

  .dhoti-img {
    left: 0px;
    bottom: 10px;
  }

  .dhoti-img img {
    width: 110px;
    height: 170px;
  }

  .gown-img {
    bottom: 0px;
    right: -20px;
  }

  .gown-img img {
    width: 130px;
    height: 140px;
  }

  .parachute-img {
    right: 134px;
    bottom: 30px;
  }

  .parachute-img img {
    width: 90px;
    height: 135px;
  }

  .brown-jacket-img {
    top: 40%;
  }

  .brown-jacket-img img {
    width: 80px;
    height: 160px;
  }

  .blur-denim-short {
    top: 35%;
    left: 45%;
  }

  .blur-denim-short img {
    width: 100px;
    height: 150px;
  }

  .pink-shirt {
    top: 70px;
    right: 190px;
  }

  .black-blur-skirt {
    bottom: 70px;
    left: 130px;
  }

  .black-blur-skirt img {
    width: 100px;
    height: 170px;
  }

  .main-heading {
    font-size: 28px;
    line-height: 45px;
  }

  .section-heading {
    font-size: 27px;
    line-height: 40px;
  }

  .content-text-wrapper p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .banner-section {
    padding: 80px 20px;
    background: none;
  }

  .default-btn {
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    padding: 14px 21px;
    color: var(--white);
    background: linear-gradient(
        89deg,
        #194266 -14.53%,
        #18c1ad 45.76%,
        #17fdcf 106.05%
      )
      no-repeat;
    border: 1px solid transparent !important;
  }

  .imagine-section,
  .welcome-section,
  .cms-section {
    padding: 20px 40px;
  }

  .footer-section {
    padding-top: :20px;
    padding-bottom: 30px;
    /* padding: 20px 30px; */
  }

  .footer-section ul li a {
    font-size: 13px;
  }

  .imagine-video-wrapper,
  .imagine-video-wrapper video {
    height: 550px;
    border-radius: 24px;
  }

  .cms-section p,
  .cms-section ul li {
    font-size: 15px;
    line-height: 30px;
  }

  .blue-jacket-img {
    top: 20px;
    left: 30px;
  }

  .blue-jacket-img img {
    width: 104px;
    height: 104px;
  }

  .yellow-skirt {
    top: 70px;
    left: 170px;
  }

  .yellow-skirt img {
    width: 65px;
    height: 90px;
  }

  .black-joggers {
    top: 30px;
    right: 0px;
  }

  .black-joggers img {
    width: 110px;
    height: 140px;
  }

  .blur-brown-short {
    top: 170px;
    left: 140px;
  }

  .blur-brown-short img {
    width: 90px;
    height: 140px;
  }

  .dhoti-img {
    left: 10px;
    bottom: 10px;
  }

  .dhoti-img img {
    width: 90px;
    height: 120px;
  }

  .gown-img {
    bottom: 0px;
    right: 0px;
  }

  .gown-img img {
    width: 110px;
    height: 110px;
  }
}
