@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* =============================Common styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 8px;
  }
}

.ul-reset {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
}

img {
  width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.global-width {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .global-width {
    width: 100%;
    padding: 0 15px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 3px;
}

::-webkit-scrollbar-thumb {
  background: #8F9BB3;
  border-radius: 0.3rem;
  opacity: 0.3;
}

::-webkit-scrollbar-thumb:hover {
  background: #8F9BB3;
  opacity: 0.3;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.0784313725);
  border-radius: 3px;
}

.pink-btn {
  background-color: #EC577A;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 500;
}

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  -webkit-backdrop-filter: blur(5.65px);
          backdrop-filter: blur(5.65px);
  padding: 2rem 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease;
}
.main-header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.main-header .logo img {
  width: 120px;
}
.main-header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .nav-menu ul {
  display: flex;
  align-items: center;
  gap: 6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-header .nav-menu ul {
    gap: 3rem;
  }
}
.main-header .nav-menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-header .nav-menu ul li a:hover {
  color: #04B2D6;
}
.main-header .nav-menu ul li a.active {
  color: #04B2D6;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .main-header .nav-menu ul li a.active {
    color: #fff;
  }
}
.main-header .nav-menu .mobile-btn {
  display: none;
}
.main-header .header-buttons {
  display: flex;
  gap: 1.5rem;
}
.main-header .header-buttons .btn {
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: 0.3s;
}
.main-header .header-buttons .sign-in {
  color: #000000;
}
.main-header .header-buttons .sign-up {
  background-color: #04B2D6;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
  border-radius: 1.2rem;
}
.main-header .header-buttons .sign-up::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgb(3.5321100917, 157.1788990826, 188.9678899083);
  transform: skew(30deg) translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
.main-header .header-buttons .sign-up:hover::before {
  transform: skew(30deg) translateX(0);
}
.main-header .header-buttons .sign-up:active {
  transform: scale(0.97);
}
.main-header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.main-header .burger-menu span {
  width: 2.4rem;
  height: 0.3rem;
  background: #000;
  border-radius: 0.2rem;
  transition: 0.4s;
}
.main-header .burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.main-header .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.main-header .burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media only screen and (max-width: 767px) {
  .main-header .burger-menu {
    display: flex;
  }
  .main-header .desktop-btn {
    display: none;
  }
  .main-header .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 68%;
    height: 100vh;
    background: #04B2D6;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 1000;
    padding-top: 18rem;
    text-align: center;
  }
  .main-header .nav-menu.open {
    right: 0;
  }
  .main-header .nav-menu ul {
    flex-direction: column;
    gap: 2rem;
  }
  .main-header .nav-menu ul li a {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
  }
  .main-header .nav-menu ul li a.active::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    margin: 6px auto 0;
  }
  .main-header .nav-menu .mobile-btn {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
  .main-header .nav-menu .mobile-btn .btn {
    width: 13rem;
    text-align: center;
  }
  .main-header .nav-menu .mobile-btn .sign-in {
    background: #fff;
    color: #04B2D6;
  }
  .main-header .nav-menu .mobile-btn .sign-up {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
}

.main-head {
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #04B2D6, #000000, #04B2D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .main-head {
    font-size: 4.8rem;
    text-align: center;
    margin-top: 8rem;
  }
  .main-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-head {
    font-size: 5rem;
    text-align: center;
  }
  .main-head br {
    display: none;
  }
}

.sub-para {
  font-size: 1.6rem;
  margin: 2rem 0;
  color: #6f7373;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
    text-align: center;
  }
  .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-para {
    text-align: center;
  }
  .sub-para br {
    display: none;
  }
}

.sub-head {
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: 0.2px;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 3.5rem;
    line-height: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-head {
    font-size: 4rem;
  }
}

.hero-section {
  background: linear-gradient(180deg, rgba(0, 146, 163, 0) 0%, rgba(0, 146, 163, 0.0705882353) 7%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  height: 73rem;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    height: 90rem;
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section {
    height: 95rem;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: url(/assets/images/radial-dots.svg) no-repeat center/cover;
  background-size: cover;
  background-position: left top;
  opacity: 0.8;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .hero-section::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section::before {
    display: none;
  }
}
.hero-section .hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner {
    padding: 3rem 2rem;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner {
    padding: 7rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
  }
}
.hero-section .hero-inner .hero-left {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-left {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-left {
    width: 100%;
  }
}
.hero-section .hero-inner .hero-left .main-head {
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #04B2D6, #000000, #04B2D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-left .main-head {
    font-size: 4.8rem;
    text-align: center;
    margin-top: 8rem;
  }
  .hero-section .hero-inner .hero-left .main-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-left .main-head {
    font-size: 5rem;
    text-align: center;
    margin: 0;
  }
  .hero-section .hero-inner .hero-left .main-head br {
    display: none;
  }
}
.hero-section .hero-inner .hero-left .sub-para {
  font-size: 1.6rem;
  margin: 2rem 0;
  color: #6f7373;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-left .sub-para {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-left .sub-para {
    text-align: center;
  }
}
.hero-section .hero-inner .hero-left .hero-btns {
  display: flex;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-left .hero-btns {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-left .hero-btns {
    justify-content: center;
  }
}
.hero-section .hero-inner .hero-left .hero-btns .btn {
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hero-section .hero-inner .hero-left .hero-btns .pink-btn {
  background-color: #EC577A;
  color: #fff;
  border: none;
  transition: all 0.4s ease;
  font-size: 1.4rem;
  font-weight: 500;
}
.hero-section .hero-inner .hero-left .hero-btns .pink-btn::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.hero-section .hero-inner .hero-left .hero-btns .pink-btn:hover {
  padding-right: 4rem;
}
.hero-section .hero-inner .hero-left .hero-btns .pink-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.hero-section .hero-inner .hero-left .hero-btns .outline-btn {
  border: 1px solid #04B2D6;
  color: #04B2D6;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  font-weight: 500;
}
.hero-section .hero-inner .hero-left .hero-btns .outline-btn:hover {
  background-color: #04B2D6;
  color: #fff;
}
.hero-section .hero-inner .hero-right {
  width: 48%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .hero-inner .hero-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-49%, -45%);
  width: 69rem;
  height: 64rem;
  background: url("/assets/images/halfcircle.svg") no-repeat center;
  background-size: contain;
  opacity: 1;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-right::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-right::before {
    display: none;
  }
}
.hero-section .hero-inner .hero-right .floating-imgs {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section .hero-inner .hero-right .floating-imgs .fimg {
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
}
.hero-section .hero-inner .hero-right .floating-imgs:hover .fimg {
  transform: scale(1.05);
}
.hero-section .hero-inner .hero-right .floating-imgs .f1 {
  left: 21%;
  width: 26.1rem;
  height: 43.4rem;
  bottom: -368px;
}
.hero-section .hero-inner .hero-right .floating-imgs .f2 {
  bottom: -72px;
  right: 15%;
  width: 26.5rem;
  height: 15.2rem;
  left: 70%;
}
.hero-section .hero-inner .hero-right .floating-imgs .f3 {
  left: 34%;
  width: 18.7rem;
  height: 24.5rem;
  top: -209px;
}
.hero-section .hero-inner .hero-right .floating-imgs .f4 {
  right: -15%;
  width: 26rem;
  height: 19rem;
  top: 94px;
}
.hero-section .hero-inner .hero-right .floating-imgs .f5 {
  left: 70%;
  width: 26.5rem;
  height: 15.2rem;
  bottom: 103px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-right .floating-imgs {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-right .floating-imgs {
    display: none;
  }
}
.hero-section .hero-inner .hero-right .tab-img {
  display: none;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-section .hero-inner .hero-right .tab-img img {
  width: 51rem;
  max-width: 54rem;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-right .tab-img img {
    width: 60rem;
    max-width: 42rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .hero-inner .hero-right .tab-img {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-inner .hero-right .tab-img {
    display: block;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-section .floating-imgs {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .floating-imgs {
    display: none;
  }
}

.growth-sec {
  padding: 10rem 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .growth-sec {
    padding: 5rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .growth-sec {
    padding: 7rem 0;
  }
}
.growth-sec .growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  justify-content: center;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-grid {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .growth-sec .growth-grid {
    margin-top: 4rem;
    gap: 2rem;
  }
}
.growth-sec .growth-card {
  background: rgba(4, 178, 214, 0.2);
  border-radius: 1.2rem;
  padding: 3rem;
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  width: 37rem;
  height: 31.7rem;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .growth-sec .growth-card {
    width: 100%;
    height: auto;
  }
}
.growth-sec .growth-card .card-head {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 9rem;
  color: #000000;
  line-height: 27.5px;
  transition: transform 0.4s ease, color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card .card-head {
    margin-top: 4rem;
    text-align: center;
  }
}
.growth-sec .growth-card .card-para {
  font-size: 1.2rem;
  line-height: 22.5px;
  color: #6f7373;
  opacity: 0;
  letter-spacing: 0.2px;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card .card-para {
    line-height: 21.5px;
    font-size: 1.4rem;
  }
}
.growth-sec .growth-card .card-icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.growth-sec .growth-card .card-icon img {
  width: 3.6rem;
  height: 3.6rem;
  transition: 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card .card-icon img {
    width: 3rem;
    height: 3rem;
  }
}
.growth-sec .growth-card:hover {
  background: rgba(138, 56, 245, 0.2);
  transform: scale(1.03);
}
.growth-sec .growth-card:hover .card-head {
  transform: translateY(-30px);
}
.growth-sec .growth-card:hover .card-para {
  opacity: 1;
  max-height: 200px;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card:hover .card-para {
    max-height: 100%;
    text-align: center;
  }
}
.growth-sec .growth-card:hover .card-icon img {
  content: url("/assets/images/card-hover.svg");
}
.growth-sec .growth-card.active {
  background: rgba(138, 56, 245, 0.2);
  transform: scale(1.03);
}
.growth-sec .growth-card.active .card-head {
  transform: translateY(-30px);
}
.growth-sec .growth-card.active .card-para {
  opacity: 1;
  max-height: 200px;
  margin-top: -1rem;
}
@media only screen and (max-width: 767px) {
  .growth-sec .growth-card.active .card-para {
    max-height: 100%;
    text-align: center;
  }
}
.growth-sec .growth-card.active .card-icon img {
  content: url("/assets/images/card-hover.svg");
}

.power-sales {
  padding: 4rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .power-sales {
    padding: 2rem 0;
  }
}
.power-sales .global-width {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.power-sales .sales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  align-items: start;
  justify-content: center;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .power-sales .sales-grid {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 4rem;
  }
}
.power-sales .sales-card1,
.power-sales .sales-card2,
.power-sales .sales-card3,
.power-sales .gradient-card {
  border-radius: 2rem;
  padding: 5rem;
  box-shadow: 0 16px 35px rgba(117, 87, 117, 0.1), 0 63px 63px rgba(117, 87, 117, 0.09);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .power-sales .sales-card1,
  .power-sales .sales-card2,
  .power-sales .sales-card3,
  .power-sales .gradient-card {
    padding: 3rem 3rem;
  }
}
.power-sales .sales-card1 .float-head,
.power-sales .sales-card2 .float-head,
.power-sales .sales-card3 .float-head,
.power-sales .gradient-card .float-head {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  line-height: 45px;
  letter-spacing: 0.2px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .power-sales .sales-card1 .float-head,
  .power-sales .sales-card2 .float-head,
  .power-sales .sales-card3 .float-head,
  .power-sales .gradient-card .float-head {
    font-size: 2.5rem;
    line-height: 35px;
    text-align: left;
  }
}
.power-sales .sales-card1:hover,
.power-sales .sales-card2:hover,
.power-sales .sales-card3:hover,
.power-sales .gradient-card:hover {
  border: 2px dashed #04B2D6;
}
.power-sales .sales-card1,
.power-sales .sales-card2,
.power-sales .sales-card3 {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-content: flex-start;
}
.power-sales .sales-card1 .icon,
.power-sales .sales-card2 .icon,
.power-sales .sales-card3 .icon {
  width: 5.5rem;
  height: 5.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.power-sales .sales-card1 {
  width: 100%;
  height: 27rem;
  gap: 3rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .power-sales .sales-card1 {
    height: auto;
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .power-sales .sales-card1 {
    gap: 1rem;
  }
}
.power-sales .sales-card2 {
  width: 100%;
  height: 17rem;
  gap: 2rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .power-sales .sales-card2 {
    gap: 1rem;
  }
}
.power-sales .sales-card3 {
  width: 100%;
  height: 21.8rem;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .power-sales .sales-card3 {
    gap: 1rem;
  }
}
.power-sales .gradient-card {
  width: 100%;
  max-width: 65rem;
  height: 38rem;
  margin-top: -8rem;
  justify-self: center;
  background: linear-gradient(135deg, #ffe6ff, #d4f8ff);
  border-radius: 2rem;
  box-shadow: 0 16px 35px rgba(117, 87, 117, 0.1), 0 63px 63px rgba(117, 87, 117, 0.09);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: block !important;
  padding: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .power-sales .gradient-card {
    margin-top: -4rem;
  }
}
.power-sales .gradient-card .icon {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.power-sales .gradient-card .default-img {
  opacity: 1;
  transition: opacity 0.4s ease;
  position: relative;
  z-index: 1;
}
.power-sales .gradient-card .hover-img {
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}
.power-sales .gradient-card:hover .default-img {
  opacity: 0;
}
.power-sales .gradient-card:hover .hover-img {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .power-sales {
    padding: 3rem 1.5rem;
  }
  .power-sales .sales-card1,
  .power-sales .sales-card2,
  .power-sales .sales-card3,
  .power-sales .gradient-card {
    width: 100%;
    height: auto;
    padding: 2.5rem;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .power-sales .sales-card1 .icon,
  .power-sales .sales-card2 .icon,
  .power-sales .sales-card3 .icon,
  .power-sales .gradient-card .icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .power-sales .sales-card1 .icon,
  .power-sales .sales-card2 .icon,
  .power-sales .sales-card3 .icon,
  .power-sales .gradient-card .icon {
    width: 100%;
    height: 4.5rem;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .power-sales .sales-card1 .float-head,
  .power-sales .sales-card2 .float-head,
  .power-sales .sales-card3 .float-head,
  .power-sales .gradient-card .float-head {
    font-size: 1.8rem;
    line-height: 26px;
  }
  .power-sales .gradient-card {
    margin-top: 0;
    padding: 5rem 4rem;
    width: 100%;
    height: auto;
  }
  .power-sales .gradient-card .icon {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
  }
  .power-sales .gradient-card .hover-img {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
    height: auto;
  }
}

.simplify-journey {
  text-align: center;
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .simplify-journey {
    padding: 4rem 0;
  }
}
.simplify-journey .sub-head {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .sub-head {
    text-align: center;
  }
}
.simplify-journey .sub-para {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .sub-para {
    text-align: center;
  }
}
.simplify-journey .journey-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards {
    margin-top: 3rem;
    gap: 0;
    flex-direction: column;
  }
}
.simplify-journey .journey-cards .card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}
.simplify-journey .journey-cards .card img {
  width: 32.7rem;
  height: 40.4rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: inherit;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards .card img {
    width: 100%;
    height: auto;
  }
}
.simplify-journey .journey-cards .card .hover-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
}
.simplify-journey .journey-cards .card .hover-arrow img {
  width: 5rem;
  height: 5rem;
}
.simplify-journey .journey-cards .card:hover .hover-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.simplify-journey .journey-cards .card .card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem;
  color: #fff;
  text-align: left;
  backdrop-filter: blur(2.65px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards .card .card-text {
    padding: 3rem 2rem;
  }
}
.simplify-journey .journey-cards .card .card-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards .card .card-text h3 {
    font-size: 2rem;
  }
}
.simplify-journey .journey-cards .card .card-text p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards .card .card-text p {
    font-size: 1.4rem;
  }
}
.simplify-journey .journey-cards .arrow.between {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: blink 1.5s infinite;
}
@media only screen and (max-width: 767px) {
  .simplify-journey .journey-cards .arrow.between {
    transform: rotate(90deg);
  }
}
.simplify-journey .journey-cards .arrow.between img {
  width: 4rem;
  height: 5rem;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.frequent-question {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .frequent-question {
    padding: 4rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .frequent-question {
    padding: 3rem 0;
  }
}
.frequent-question .sub-head {
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .frequent-question .sub-head {
    text-align: center;
  }
}
.frequent-question .faq-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 8rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .frequent-question .faq-container {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .frequent-question .faq-container {
    margin-top: 3rem;
  }
}
.frequent-question .faq-item {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s ease;
}
.frequent-question .faq-item:hover {
  border-color: rgba(236, 87, 122, 0.4);
}
.frequent-question .faq-item.active .faq-header .faq-toggle {
  background: none;
}
.frequent-question .faq-item.active .faq-header .faq-toggle .open-icon {
  opacity: 0;
  visibility: hidden;
}
.frequent-question .faq-item.active .faq-header .faq-toggle .close-icon {
  opacity: 1;
  visibility: visible;
}
.frequent-question .faq-item.active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding: 0 3rem 2rem;
}
@media only screen and (max-width: 767px) {
  .frequent-question .faq-item.active .faq-content {
    padding: 0 2rem 2rem;
  }
}
.frequent-question .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.frequent-question .faq-header h3 {
  font-weight: 600;
  color: #000000;
  font-size: 1.8rem;
  margin: 0;
}
.frequent-question .faq-header .faq-toggle {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.frequent-question .faq-header .faq-toggle img {
  width: 3.4rem;
  height: 3.4rem;
  transition: all 0.3s ease;
  position: absolute;
}
.frequent-question .faq-header .faq-toggle .close-icon {
  opacity: 0;
  visibility: hidden;
}
.frequent-question .faq-header .faq-toggle .open-icon {
  opacity: 1;
  visibility: visible;
}
.frequent-question .faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 3rem;
}
.frequent-question .faq-content .sub-para {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .frequent-question .faq-content .sub-para {
    font-size: 1.3rem;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .frequent-question .faq-content .sub-para {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .frequent-question .sub-head {
    font-size: 3rem;
    text-align: center;
  }
  .frequent-question .faq-header {
    padding: 1.6rem 2rem;
  }
  .frequent-question .faq-header h3 {
    font-size: 1.5rem;
  }
  .frequent-question .faq-header .faq-toggle img {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .frequent-question .faq-header .faq-toggle img {
    height: 2rem;
    width: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .frequent-question .faq-content {
    padding: 0 2rem 1rem;
  }
}

.ct-section {
  padding: 3rem 0;
  background: #fff;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .ct-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }
}
.ct-section .global-width {
  position: relative;
}
.ct-section .global-width .ct-inner {
  position: relative;
  background: radial-gradient(circle at center, #04b2d6, #8fecff);
  border-radius: 2rem;
  padding: 11rem 0;
  overflow: hidden;
  height: 44rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ct-section .global-width .ct-inner {
    height: auto;
  }
}
.ct-section .global-width .ct-inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background: url(/assets/images/dot-radial.svg) no-repeat center/cover;
}
.ct-section .global-width .ct-inner .ct-decor {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 12rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}
.ct-section .global-width .ct-inner .ct-content {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  margin: 0 auto;
  color: #fff;
}
.ct-section .global-width .ct-inner .ct-content .ct-heading {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 61.5px;
}
@media only screen and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-content .ct-heading {
    padding: 3rem 0;
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ct-section .global-width .ct-inner .ct-content .ct-heading {
    font-size: 5rem;
    line-height: 71.5px;
  }
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-content .ct-buttons {
    margin-top: 2rem;
  }
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn {
  padding: 1.2rem 2.8rem;
  border-radius: 1.2rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-pink {
  background-color: #EC577A;
  color: #fff;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-pink::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgb(233.4090909091, 64.0909090909, 103.8636363636);
  transform: skew(30deg) translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-pink:hover {
  color: #fff;
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-pink:hover::before {
  transform: skew(30deg) translateX(0);
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-pink:active {
  transform: scale(0.97);
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.ct-section .global-width .ct-inner .ct-content .ct-buttons .btn-outline:hover {
  background-color: #fff;
  color: #04B2D6;
}
@media only screen and (max-width: 767px) {
  .ct-section {
    padding: 3rem 0;
  }
  .ct-section .global-width .ct-inner {
    padding: 6rem 2rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .ct-section .global-width .ct-inner {
    padding: 4rem 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-decor {
    width: 8rem;
    left: 20px;
    top: 20px;
  }
  .ct-section .global-width .ct-inner .ct-content .ct-subheading {
    font-size: 1.4rem !important;
  }
  .ct-section .global-width .ct-inner .ct-content .ct-heading {
    font-size: 3rem;
    line-height: 35.5px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-content .ct-heading {
    padding: 0;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-content .ct-heading br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .ct-section .global-width .ct-inner .ct-content .ct-heading .ct-buttons {
    flex-direction: column;
    align-items: center;
  }
  .ct-section .global-width .ct-inner .ct-content .ct-heading .ct-buttons .btn {
    width: 100%;
    max-width: 200px;
  }
}

.footer-sec {
  background: #f5f5f6;
  padding: 6rem 0 1rem;
  font-size: 1.2rem;
  color: #333;
  height: 39rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec {
    height: auto;
  }
}
.footer-sec .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-content {
    gap: 0;
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-sec .footer-content {
    display: grid;
    justify-content: normal;
    gap: 5rem;
  }
}
.footer-sec .footer-brand {
  flex: 1;
  min-width: 32.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-brand {
    min-width: 100%;
  }
}
.footer-sec .footer-brand .logo {
  max-width: 14rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-brand .logo {
    width: 100%;
    height: auto;
  }
}
.footer-sec .footer-brand .footer-para {
  color: #1F1F1F;
  font-size: 1.4rem;
}
.footer-sec .footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  flex: 3;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links {
    gap: 0;
    margin-top: 4rem;
  }
}
.footer-sec .footer-links .footer-head {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1F1F1F;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links .footer-head {
    font-size: 1.4rem;
  }
}
.footer-sec .footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-sec .footer-links ul li {
  margin-bottom: 0.6rem;
  color: #535353;
  font-size: 1.4rem;
}
.footer-sec .footer-links ul li a {
  color: #535353;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links ul li a {
    font-size: 1.2rem;
  }
}
.footer-sec .footer-links ul li a:hover {
  color: #04B2D6;
}
.footer-sec .footer-links .contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  color: #333;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-links .contact-list li {
    font-size: 1.2rem;
  }
}
.footer-sec .footer-links .contact-list li img {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-sec .footer-bottom {
  border-top: 1px solid #1F1F1F;
  font-size: 1.4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #666;
}
.footer-sec .footer-bottom .all-rights {
  font-size: 1.4rem;
  color: #1F1F1F;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-bottom .all-rights {
    font-size: 1rem;
  }
}
.footer-sec .footer-bottom .social-icons {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer-sec .footer-bottom .social-icons {
    margin-top: 2rem;
  }
}
.footer-sec .footer-bottom .social-icons img {
  width: 2rem;
  height: 2rem;
}
.footer-sec .footer-bottom .social-icons .img-wd {
  width: 2rem;
  height: 1.8rem;
}
.footer-sec .footer-bottom .social-icons a {
  color: #ddd;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer-sec .footer-bottom .social-icons a:hover {
  color: #04B2D6;
}

.contact-sec {
  padding: 10rem 0;
  background: #fff;
}
.contact-sec .contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-wrapper {
    display: grid;
    gap: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-sec .contact-wrapper {
    justify-content: flex-start;
  }
}
.contact-sec .contact-left {
  display: flex;
}
.contact-sec .contact-left .contact-img-box {
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48.5rem;
  height: 63.4rem;
  transition: transform 0.8s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-left .contact-img-box {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-sec .contact-left .contact-img-box {
    display: none;
  }
}
.contact-sec .contact-left .contact-img-box:hover .contact-img {
  animation: floatUpDown 1s ease-in-out infinite alternate;
}
.contact-sec .contact-left .contact-img {
  width: 35.9rem;
  height: 34.1rem;
  border-radius: 50%;
  transition: transform 0.8s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-sec .contact-left .contact-img {
    display: none;
  }
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.contact-sec .contact-right {
  width: 60rem;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-right {
    width: 100%;
    text-align: center;
  }
}
.contact-sec .contact-right .contact-heading {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #04b2d6 0%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact-sec .contact-right .sub-para {
  margin-bottom: 2rem;
}
.contact-sec .contact-right .mobile-contact-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-right .mobile-contact-img {
    display: block;
    margin: 2rem auto 3rem;
    text-align: center;
  }
  .contact-sec .contact-right .mobile-contact-img img {
    width: 22rem;
    height: auto;
    border-radius: 50%;
    animation: floatUpDown 2s ease-in-out infinite alternate;
  }
}
.contact-sec .contact-right .contact-form .form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-right .contact-form .form-row {
    display: grid;
  }
}
.contact-sec .contact-right .contact-form .form-row input,
.contact-sec .contact-right .contact-form .form-row textarea {
  width: 100%;
  padding: 1.4rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  background: #fff;
  transition: 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
.contact-sec .contact-right .contact-form .form-row input:focus,
.contact-sec .contact-right .contact-form .form-row textarea:focus {
  outline: none;
}
.contact-sec .contact-right .contact-form .form-row textarea.message-box {
  height: 12rem;
  resize: none;
  font-family: "Plus Jakarta Sans", sans-serif !important;
}
.contact-sec .contact-right .contact-form .header-buttons {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .contact-sec .contact-right .contact-form .header-buttons {
    text-align: center;
  }
}
.contact-sec .contact-right .contact-form .header-buttons .pink-btn {
  width: 9rem;
  height: 4rem;
  border-radius: 1.2rem;
  background-color: #EC577A;
  color: #fff;
  border: none;
  font-weight: 500;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
}
.contact-sec .contact-right .contact-form .header-buttons .pink-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgb(233.4090909091, 64.0909090909, 103.8636363636);
  transform: skew(30deg) translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
  z-index: -1;
}
.contact-sec .contact-right .contact-form .header-buttons .pink-btn:hover::before {
  transform: skew(30deg) translateX(0);
}
.contact-sec .contact-right .contact-form .header-buttons .pink-btn:active {
  transform: scale(0.97);
}

.about-header {
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .about-header {
    margin-top: 3rem;
    padding: 6rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-header {
    margin-top: 3rem;
    padding: 5rem 0;
  }
}
.about-header .about-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .about-header .about-header-content {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-header .about-header-content {
    flex-direction: column;
  }
}
.about-header .about-left {
  width: 50%;
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .about-header .about-left {
    width: 100%;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-header .about-left {
    width: 100%;
    margin-top: 4rem;
  }
}
.about-header .about-left .main-head {
  margin: 0;
  font-size: 5.2rem;
}
@media only screen and (max-width: 767px) {
  .about-header .about-left .main-head {
    font-size: 4rem;
  }
}
.about-header .about-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .about-header .about-right {
    margin-top: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-header .about-right {
    width: 100%;
    margin-top: 1rem;
  }
}
.about-header .about-right .img-wrapper {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.about-header .about-right .img-wrapper .main-img {
  width: 52rem;
  height: 52rem;
  border-radius: 2rem;
  display: block;
}
@media only screen and (max-width: 767px) {
  .about-header .about-right .img-wrapper .main-img {
    width: 100%;
    height: auto;
  }
}
.about-header .about-right .img-wrapper .blue-box {
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  width: 16rem;
  height: 18rem;
  background: rgba(4, 178, 214, 0.2);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .about-header .about-right .img-wrapper .blue-box {
    width: 14rem;
    height: 15rem;
  }
}
.about-header .about-right .img-wrapper .blue-box #star-animation {
  width: 8rem;
  height: 8rem;
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
}
.about-header .about-right .img-wrapper .blue-box:hover {
  transform: scale(1.05);
}

.box-section {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .box-section {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .box-section {
    padding: 4rem 0;
  }
}
.box-section .values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .box-section .values-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .box-section .values-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.box-section .values-list .value-card {
  background: #F0F0F0;
  border-radius: 2rem;
  padding: 3rem;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .box-section .values-list .value-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .box-section .values-list .value-card .sub-para {
    text-align: left;
  }
}
.box-section .values-list .value-card .icon {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .box-section .values-list .value-card .icon {
    margin-bottom: 1rem;
  }
}
.box-section .values-list .value-card .icon img {
  width: 4rem;
  height: 4rem;
}
.box-section .values-list .value-card .card-head {
  font-size: 2.6rem;
  color: #000000;
  font-weight: 500;
  line-height: 22.5px;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .box-section .values-list .value-card .card-head {
    margin-bottom: 0;
  }
}
.box-section .values-list .value-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
@media only screen and (max-width: 767px) {
  .box-section .values-list .value-card .sub-para {
    text-align: left;
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

.our-story {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  .our-story {
    margin-top: 2rem;
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-story {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .our-story .sub-head {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .our-story .sub-head {
    text-align: center;
  }
}

.what-make-difference {
  padding: 4rem 0;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .what-make-difference {
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .what-make-difference .sub-head {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .sub-head {
    text-align: center;
  }
}
.what-make-difference .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
  }
}
.what-make-difference .card {
  border-radius: 2rem;
  padding: 4.5rem 6rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card {
    padding: 2rem 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .card {
    padding: 2rem 3rem;
  }
}
.what-make-difference .card:hover {
  transform: translateY(-5px);
}
.what-make-difference .card .head-name {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card .head-name {
    text-align: center;
    font-size: 2rem;
  }
}
.what-make-difference .card .sub-card {
  margin-top: 1rem;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card .sub-card {
    text-align: center;
  }
}
.what-make-difference .card-1 {
  background-image: url(/assets/images/bg1.svg);
  position: relative;
  text-align: left;
}
.what-make-difference .card-1 .card-img-group {
  position: relative;
  height: 12rem;
  margin-bottom: 8rem;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card-1 .card-img-group {
    margin-bottom: 7rem;
  }
}
.what-make-difference .card-1 .card-img-group .card-img {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 1.2rem;
  transition: transform 0.9s cubic-bezier(0.45, 0, 0.55, 1), opacity 0.6s ease;
  transform-origin: center center;
}
.what-make-difference .card-1 .card-img-group .pink-img {
  z-index: 1;
  transform: translate(-20px, 15px) scale(0.97);
  opacity: 0.9;
}
.what-make-difference .card-1 .card-img-group .blue-img {
  z-index: 2;
  transform: translate(20px, -15px) scale(1);
  opacity: 1;
}
.what-make-difference .card-1 .card-img-group:hover .pink-img {
  z-index: 2;
  transform: translate(20px, -15px) scale(1);
  opacity: 1;
}
.what-make-difference .card-1 .card-img-group:hover .blue-img {
  z-index: 1;
  transform: translate(-20px, 15px) scale(0.97);
  opacity: 0.9;
}
.what-make-difference .card-2 {
  background-image: url("/assets/images/bg3.svg");
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  text-align: center;
  padding: 3rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .card-2 {
    padding: 2rem 3rem;
  }
}
.what-make-difference .card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.what-make-difference .card-2 .static-img {
  width: 29.2rem;
  height: auto;
}
.what-make-difference .card-2 .img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5.5rem;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card-2 .img-div {
    margin-bottom: 2.5rem;
  }
}
.what-make-difference .card-3 {
  background-image: url(/assets/images/spiral-card.jpg);
}
.what-make-difference .card-3 .zoom-img-box {
  overflow: hidden;
  border-radius: 1.5rem;
  width: 100%;
  height: 21rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.5rem;
  padding: 3rem 6rem;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card-3 .zoom-img-box {
    height: auto;
    margin-bottom: 1.5rem;
    padding: 1rem 6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .card-3 .zoom-img-box {
    padding: 2rem 3rem;
  }
}
.what-make-difference .card-3 .zoom-img-box .zoom-img {
  width: 51%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card-3 .zoom-img-box .zoom-img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .card-3 .zoom-img-box .zoom-img {
    width: 76%;
  }
}
.what-make-difference .card-3 .zoom-img-box:hover .zoom-img {
  transform: scale(1.1);
}
.what-make-difference .card-4 {
  background-image: url("/assets/images/bg1.svg");
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  text-align: center;
  padding: 3rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-make-difference .card-4 {
    padding: 2rem 3rem;
  }
}
.what-make-difference .card-4 .zoom-img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.5rem;
  overflow: visible;
}
.what-make-difference .card-4 .zoom-img-box .zoom-img {
  width: 32.3rem;
  height: 18.2rem;
  transition: transform 0.5s ease-in-out;
  transform-origin: center center;
}
@media only screen and (max-width: 767px) {
  .what-make-difference .card-4 .zoom-img-box .zoom-img {
    width: 100%;
    height: auto;
  }
}
.what-make-difference .card-4 .zoom-img-box:hover .zoom-img {
  transform: scale(1.15);
}

.feature-sec {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .feature-sec {
    padding: 4rem 0;
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec {
    margin-top: 6rem;
    padding: 5rem 0;
  }
}
.feature-sec .global-width {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-sec .tag-name {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-sec .tag-name h3 {
  font-size: 1.6rem;
  color: #EC577A;
  font-weight: 400;
  background: rgba(236, 87, 122, 0.1019607843);
  padding: 1rem 2rem;
  border-radius: 1.5rem;
}
.feature-sec .main-head {
  text-align: center;
  margin-top: 3rem;
}
.feature-sec .sub-para {
  text-align: center;
}
.feature-sec .feature-container {
  display: flex;
  align-items: center;
  margin-top: 11rem;
  background: #EC577A;
  padding: 12rem 17rem;
}
@media only screen and (max-width: 767px) {
  .feature-sec .feature-container {
    margin-top: 4rem;
    padding: 3rem 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-container {
    flex-direction: column;
    margin-top: 3rem;
    padding: 3rem 2rem;
  }
}
.feature-sec .feature-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-sec .feature-column .feature-box {
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 1.6rem;
  padding: 2.5rem;
  display: grid;
  gap: 3rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
  cursor: pointer;
  width: 42rem;
}
.feature-sec .feature-column .feature-box:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%), rgba(255, 255, 255, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-column .feature-box {
    width: 65rem;
    height: auto;
  }
}
.feature-sec .feature-column .feature-box .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-column .feature-box .icon-box {
    width: 5rem;
    height: 5rem;
  }
}
.feature-sec .feature-column .feature-box .icon-box img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-column .feature-box .icon-box img {
    height: 5rem;
    width: 5rem;
  }
}
.feature-sec .feature-column .feature-box .content .feature-head {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-column .feature-box .content .feature-head {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .feature-sec .feature-column .feature-box .content .feature-head {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
  }
}
.feature-sec .feature-column .feature-box .content p {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .feature-sec .feature-column .feature-box .content p {
    text-align: center;
  }
}
.feature-sec .feature-image {
  width: 30%;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-sec .feature-image {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.feature-sec .feature-image img {
  width: 31.5rem;
  height: 51.7rem;
  border-radius: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .feature-sec .feature-container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
  .feature-sec .feature-column {
    width: 100%;
    align-items: center;
  }
  .feature-sec .feature-column .feature-box {
    max-width: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .feature-sec .feature-image {
    width: 80%;
    height: 45rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .feature-sec .feature-image {
    width: 100%;
    height: auto;
  }
}

.terms-and-condition {
  position: relative;
  padding: 4rem 0;
  margin-top: 10rem;
}
.terms-and-condition .terms-head {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
.terms-and-condition .terms-subhead {
  font-size: 2.2rem;
  margin-top: 2rem;
}
.terms-and-condition .terms-para {
  font-size: 1.4rem;
  margin-top: 2rem;
}
.terms-and-condition .tag-line {
  text-decoration: none;
  color: #04B2D6;
}/*# sourceMappingURL=style.css.map */