@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
/* =============================Common styles */
@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:wght@200..700&display=swap");
* {
  box-sizing: border-box;
}

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

.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: #1F1F1F;
  font-family: "Instrument Sans", sans-serif;
}

img {
  max-width: 100%;
}

.global-width {
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media only screen and (min-width: 768px) {
  .global-width {
    max-width: 1300px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .global-width {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .global-width {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.3rem;
}

::-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: 0.3rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 2rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* ------------------ Burger Menu ------------------ */
  /* ------------------ Mobile Nav ------------------ */
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 1rem 0;
  }
}
.header .global-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header .logo img {
  width: 17rem;
}
@media only screen and (max-width: 767px) {
  .header .logo img {
    max-width: 150px;
  }
}
.header .nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .nav-menu ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .nav-menu ul {
    gap: 2rem;
  }
}
.header .nav-menu ul li {
  position: relative;
}
.header .nav-menu ul li a {
  position: relative;
  text-decoration: none;
  color: #0A0A0A;
  font-size: 1.4rem;
  font-weight: 400;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.header .nav-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #0A0A0A;
  transition: width 0.3s ease-in-out;
}
.header .nav-menu ul li a:hover::before {
  width: 100%;
}
.header .nav-menu ul li a.active {
  color: #0A0A0A;
  font-weight: 600;
}
.header .nav-menu ul li a.active::before {
  width: 100%;
}
.header .nav-menu ul li.login-link {
  display: none;
}
.header .contact-btn {
  padding: 1rem 2rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.2rem;
  width: 13.5rem;
  height: 5.2rem;
  font-weight: 500;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .header .contact-btn {
    padding: 1rem 1rem;
    width: 9.7rem;
    height: 4rem;
    font-size: 1.4rem;
  }
}
.header .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}
.header .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 0.5rem;
  margin-left: 1rem;
  z-index: 101;
  transition: transform 0.4s ease-in-out;
}
.header .burger-menu div {
  width: 2rem;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
}
.header .burger-menu.active div {
  background-color: #fff;
}
.header .burger-menu.active div:first-child {
  transform: translateY(10px) rotate(45deg);
}
.header .burger-menu.active div:nth-child(2) {
  opacity: 0;
}
.header .burger-menu.active div:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .header .nav-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #E20D79;
    transition: all 0.4s ease-in-out;
    padding-top: 8rem;
    z-index: 100;
    flex-direction: column;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  .header .nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header .nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
  }
  .header .nav-menu ul li a:hover {
    opacity: 0.8;
  }
  .header .nav-menu ul li a.active {
    font-weight: 500;
    color: #fff;
    font-size: 1.4rem;
  }
  .header .nav-menu ul li a.active::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background-color: #fff;
    border-radius: 2px;
  }
  .header .nav-menu ul li.login-link {
    display: block;
  }
  .header .nav-menu ul li.login-link a {
    color: #fff;
    font-weight: 400;
    font-size: 1.3rem;
    background: none;
    padding: 0;
    border: none;
  }
  .header .nav-menu.open {
    right: 0;
  }
  .header .burger-menu {
    display: flex;
  }
  .header .desktop-btn {
    display: none;
  }
}
.header.scrolled {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.home-page header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}
body.home-page header.scrolled {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sub-para {
  font-size: 1.8rem;
  color: #5F6368;
  font-weight: 400;
  line-height: 30px;
  margin-top: -2rem;
  margin-bottom: 4rem;
  font-family: "Geist", sans-serif;
}
@media only screen and (max-width: 767px) {
  .sub-para {
    font-size: 1.4rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
  }
  .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-para {
    margin-bottom: 3rem;
  }
}

.sub-head {
  font-size: 4rem;
  font-weight: 500;
  color: #212121;
  line-height: 40px;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .sub-head {
    font-size: 2.6rem;
    line-height: 44px;
  }
  .sub-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-head {
    font-size: 3rem;
    line-height: 44px;
  }
  .sub-head br {
    display: none;
  }
}

.main-head {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 85px;
  letter-spacing: -3px;
}
@media only screen and (max-width: 767px) {
  .main-head {
    letter-spacing: -1px;
    font-size: 3rem;
    line-height: 49px;
    font-weight: 500;
  }
  .main-head br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main-head {
    line-height: 68px;
    font-size: 5.4rem;
    letter-spacing: -2px;
  }
  .main-head br {
    display: none;
  }
}

.showcase-section {
  text-align: center;
  padding: 10rem 0 0;
}
@media only screen and (max-width: 767px) {
  .showcase-section {
    padding: 3rem 0 0;
    margin-top: 2rem;
  }
}
.showcase-section .showcase-content .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-content .button-group {
    gap: 1rem;
    margin-top: 2rem;
  }
}
.showcase-section .showcase-content .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-content .button-group a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.showcase-section .showcase-content .button-group .btn-outline {
  color: #E20D79;
  border: 1.5px solid #E20D79;
  background: transparent;
}
.showcase-section .showcase-content .button-group .btn-outline:hover {
  transform: translateY(-2px);
}
.showcase-section .showcase-content .button-group .btn-gradient {
  color: #fff;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
}
.showcase-section .showcase-content .button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-content .button-group .btn-gradient img {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.showcase-section .showcase-content .button-group .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}
.showcase-section .showcase-content .button-group .btn-gradient:hover img {
  transform: translateX(4px);
}
.showcase-section .showcase-images-wrapper {
  position: relative;
  width: 100%;
  margin-top: 8rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .showcase-section .showcase-images-wrapper {
    margin-top: 0;
  }
}
.showcase-section .showcase-images-wrapper .showcase-bg {
  position: absolute;
  top: 82px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-bg {
    top: 76px;
    z-index: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .showcase-section .showcase-images-wrapper .showcase-bg {
    top: 235px;
    z-index: 0;
  }
}
.showcase-section .showcase-images-wrapper .showcase-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: showcaseScroll 20s linear infinite;
  z-index: 2;
  position: relative;
  padding: 8rem 0;
  will-change: transform;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-track {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .showcase-section .showcase-images-wrapper .showcase-track {
    display: none;
  }
}
.showcase-section .showcase-images-wrapper .showcase-images {
  display: flex;
  gap: 3rem;
  margin-left: 3rem;
}
.showcase-section .showcase-images-wrapper .showcase-images .image-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 4rem;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-images .image-grid {
    gap: 2.7rem;
  }
}
.showcase-section .showcase-images-wrapper .showcase-images .res-img {
  width: 20rem;
  height: 20rem;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-images .res-img {
    height: 23rem;
  }
}
.showcase-section .showcase-images-wrapper .showcase-images .scroll-img {
  height: 30rem;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-images .scroll-img {
    height: 23rem;
  }
}
.showcase-section .showcase-images-wrapper .showcase-images img {
  border-radius: 1.6rem;
}
.showcase-section .showcase-images-wrapper .showcase-mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .showcase-section .showcase-images-wrapper .showcase-mobile {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .showcase-section .showcase-images-wrapper .showcase-mobile {
    display: block;
    z-index: 2;
    padding: 4rem 0;
  }
}
.showcase-section .showcase-images-wrapper .showcase-mobile .showcase-mobile-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: showcaseScrollMobile 20s linear infinite;
  will-change: transform;
}
.showcase-section .showcase-images-wrapper .showcase-mobile .showcase-mobile-images {
  display: flex;
  gap: 1rem;
  margin-left: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .showcase-section .showcase-images-wrapper .showcase-mobile .mob-show-img {
    width: 22rem;
  }
}
@keyframes showcaseScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes showcaseScrollMobile {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-20%);
  }
}
@keyframes showcaseScroll {
  0% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes showcaseScrollMobile {
  0% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.features-section {
  background: #fff;
  padding: 4rem 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .features-section {
    padding: 2rem 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section {
    padding: 3rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .sub-head {
    font-size: 4.8rem;
    line-height: 53px;
  }
}
@media only screen and (max-width: 767px) {
  .features-section .sub-head {
    letter-spacing: -1px;
    line-height: 34px;
    font-size: 2.4rem;
  }
}
.features-section .sub-para {
  line-height: 28px;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .sub-para {
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .sub-para {
    text-align: center;
    margin-top: 2rem;
  }
}
.features-section .coverage-section {
  background: #F9F8F6;
  border-radius: 1.6rem;
  padding: 4rem 4rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section {
    padding: 1rem 1rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .coverage-section {
    padding: 2rem 2rem;
  }
}
.features-section .coverage-section .coverage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section .coverage-container {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .coverage-section .coverage-container {
    display: flex;
    flex-direction: column;
  }
}
.features-section .coverage-section .coverage-left {
  width: 63rem;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section .coverage-left {
    width: 100%;
  }
}
.features-section .coverage-section .coverage-left h2 {
  font-size: 3.6rem;
  font-weight: 500;
  color: #212121;
  margin-bottom: 1rem;
  line-height: 42px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section .coverage-left h2 {
    line-height: 34px;
    text-align: left;
    margin-top: 1rem;
    font-size: 2rem;
    letter-spacing: -0.6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .coverage-section .coverage-left h2 {
    text-align: center;
    line-height: 46px;
    font-size: 4rem;
  }
}
.features-section .coverage-section .coverage-left .sub-para {
  text-align: left;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section .coverage-left .sub-para {
    margin-bottom: -1rem;
    text-align: left;
  }
}
.features-section .coverage-section .coverage-left .nation .coverage-map {
  width: 57rem;
  height: auto;
  display: block;
  margin-bottom: -4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .coverage-section .coverage-left .nation .coverage-map {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .coverage-section .coverage-left .nation .coverage-map {
    width: 100%;
    height: auto;
  }
}
.features-section .coverage-section .coverage-right {
  display: flex;
  justify-content: center;
}
.features-section .coverage-section .coverage-right .coverage-plans {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  border-radius: 1.4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .coverage-section .coverage-right .coverage-plans {
    display: none;
  }
}
.features-section .features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid {
    flex-direction: column;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid {
    flex-direction: column;
  }
}
.features-section .features-grid .feature-card {
  position: relative;
  border-radius: 1.6rem;
  padding: 3rem 2rem;
  flex: 1 1 calc(50% - 1rem);
  height: 66rem;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card {
    flex: 1 1 100%;
    padding: 1rem 1rem;
    min-height: 33rem;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid .feature-card {
    height: 56.5rem;
    flex: none;
  }
}
.features-section .features-grid .feature-card.full-width {
  flex: 1 1 100%;
}
.features-section .features-grid .feature-card:hover {
  transform: translateY(-5px);
}
.features-section .features-grid .feature-card .card-content {
  position: relative;
  z-index: 2;
}
.features-section .features-grid .feature-card .card-content h3 {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 44px;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card .card-content h3 {
    font-size: 2rem;
    margin: 0;
    line-height: 38px;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid .feature-card .card-content h3 {
    font-size: 4rem;
    margin-top: 2rem;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card .card-content .sub-para {
    text-align: left;
  }
}
.features-section .features-grid .feature-card .img-box-one {
  position: absolute;
  bottom: -164px;
  right: 3px;
  left: 100px;
  top: auto;
  z-index: 1;
  width: 53rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card .img-box-one {
    position: absolute;
    bottom: -131px;
    right: 3px;
    left: -56px;
    top: auto;
    z-index: 1;
    width: 30rem;
  }
}
.features-section .features-grid .feature-card .img-box-one img {
  width: 100%;
  opacity: 1;
  transform: none;
}
.features-section .features-grid .feature-card .img-box {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: auto;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .features-section .features-grid .feature-card .img-box {
    left: 227px;
    width: 50rem;
  }
}
.features-section .features-grid .feature-card .img-box img {
  width: 100%;
  opacity: 1;
  transform: none;
}
.features-section .features-grid .feature-card.blue {
  background: #F9F8F6;
}
.features-section .features-grid .feature-card.green {
  background: #F9F8F6;
}
.features-section .features-grid .feature-card.purple {
  background: #F9F8F6;
}
.features-section .features-grid .feature-card.purple.full-width {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem;
  height: 47rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width {
    padding: 2rem;
    min-height: 33rem;
  }
}
.features-section .features-grid .feature-card.purple.full-width .card-content {
  z-index: 2;
  position: relative;
  width: 58rem;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width .card-content {
    width: 100%;
  }
}
.features-section .features-grid .feature-card.purple.full-width .card-content h3 {
  margin-bottom: 1.5rem;
  color: #212121;
}
.features-section .features-grid .feature-card.purple.full-width .card-content .sub-para {
  margin: 0;
}
.features-section .features-grid .feature-card.purple.full-width .img-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.features-section .features-grid .feature-card.purple.full-width .img-box img {
  position: relative;
  opacity: 1;
  transform: none;
  top: 4rem;
  left: 4rem;
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width .img-box img {
    top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .features-section .features-grid .feature-card.purple.full-width {
    flex-direction: column;
    text-align: center;
  }
  .features-section .features-grid .feature-card.purple.full-width .card-content,
  .features-section .features-grid .feature-card.purple.full-width .img-box {
    flex: 1 1 100%;
    text-align: center;
  }
  .features-section .features-grid .feature-card.purple.full-width .img-box {
    margin-top: 2rem;
    justify-content: center;
  }
}

.info-section {
  text-align: center;
  padding: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .info-section {
    margin-top: 1rem;
  }
}
.info-section .info-content {
  max-width: 800px;
  margin: 0 auto;
}
.info-section .info-content .info-image {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-section .info-content .info-image img {
  max-width: 123rem;
  margin-bottom: 3rem;
  margin-top: 3rem;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .info-image img {
    margin-bottom: -1rem;
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .info-section .info-content .info-image img {
    max-width: 100%;
  }
}
.info-section .info-content .info-image .mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .info-image .desktop-img {
    display: none;
  }
  .info-section .info-content .info-image .mobile-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.info-section .info-content .sub-para {
  width: 85rem;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .sub-para {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .info-section .info-content .sub-para {
    width: 100%;
  }
}
.info-section .info-content .sub-head {
  font-size: 5.3rem;
  letter-spacing: -1px;
  line-height: 68px;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .sub-head {
    font-size: 2.4rem;
    line-height: 34px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .info-section .info-content .sub-head {
    font-size: 4.8rem;
    line-height: 53px;
  }
}
.info-section .info-content .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.info-section .info-content .button-group .btn-gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .button-group .btn-gradient {
    padding: 1.2rem 2.2rem;
    font-size: 1.2rem;
  }
}
.info-section .info-content .button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .info-section .info-content .button-group .btn-gradient img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.info-section .info-content .button-group .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}

.contact-section {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .contact-section {
    padding: 3rem 0;
    margin-top: 3rem;
    margin-bottom: -4rem;
  }
}
.contact-section .contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  background: #F9F8F6;
  height: 23.2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header {
    height: auto;
    margin-bottom: -3rem;
  }
}
.contact-section .contact-header .main-head {
  display: inline-block;
  margin-top: 7rem;
  color: #212121;
  padding: 1.5rem 4rem;
  border-radius: 1rem;
  letter-spacing: -2px;
  line-height: 72px;
  font-size: 6.4rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-header .main-head {
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    margin-top: 2rem;
    font-size: 3rem;
    line-height: 68px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-head {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact-section .sub-para {
    text-align: center;
  }
}
.contact-section .contact-content {
  gap: 7rem;
  display: flex;
  align-items: flex-start;
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content {
    flex-direction: column;
    margin-top: 3rem;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-section .contact-content {
    margin-top: 6rem;
    gap: 0;
  }
}
.contact-section .contact-content .contact-left {
  flex: 1;
}
.contact-section .contact-content .contact-left .sub-head {
  margin-top: 0;
}
.contact-section .contact-content .contact-left .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info {
    margin-top: 3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det {
  display: grid;
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
  margin: 0;
  color: #1F1F1F;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det h4 {
    font-size: 1.4rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p {
  color: #5F6368;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-left .contact-info .details .cont-det p {
    font-size: 1.3rem;
  }
}
.contact-section .contact-content .contact-left .contact-info .details .cont-det p a {
  text-decoration: none;
  color: #5F6368;
}
.contact-section .contact-content .contact-right {
  flex: 1;
  position: sticky;
  top: 10rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right {
    width: 100%;
  }
}
.contact-section .contact-content .contact-right form {
  padding: 3rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #F9F8F6;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form {
    padding: 2rem;
  }
}
.contact-section .contact-content .contact-right form .form-group {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .contact-section .contact-content .contact-right form .form-group {
    display: grid;
  }
}
.contact-section .contact-content .contact-right form input,
.contact-section .contact-content .contact-right form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-family: "Instrument Sans", sans-serif;
  border: none;
}
.contact-section .contact-content .contact-right form textarea {
  min-height: 12rem;
  resize: none;
}
.contact-section .contact-content .contact-right form button {
  background: #E20D79;
  color: #fff;
  border: none;
  padding: 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-content .contact-right form button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-section {
  background: #FFFFFF;
  border-top: 1px solid #e5eae6;
  padding: 6rem 0 3rem;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .footer-section {
    margin-top: 2rem;
    padding: 3rem 0 3rem;
    border-top: none;
  }
}
.footer-section .footer-inner .footer-total {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 23rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-total {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area {
  max-width: 33%;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area {
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-section .footer-inner .footer-logo-area .footer-logo img {
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .footer-logo {
    display: flex;
    flex-direction: column;
  }
}
.footer-section .footer-inner .footer-logo-area .sub-para {
  line-height: 22px;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-logo-area .sub-para {
    text-align: left;
  }
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer-section .footer-inner .footer-logo-area .sub-para br {
    display: none;
  }
}
.footer-section .footer-inner .link-cls {
  display: flex;
  justify-content: center;
  gap: 24rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls {
    gap: 1rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link {
  display: flex;
  flex-direction: column;
}
.footer-section .footer-inner .link-cls .footer-link h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link h4 {
    font-size: 1.2rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link a {
  color: #8F8F8F;
  font-size: 1.4rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link a {
    font-size: 1rem;
  }
}
.footer-section .footer-inner .link-cls .footer-link a:hover {
  color: #E20D79;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .link-cls .footer-link {
    align-items: flex-start;
  }
}
.footer-section .footer-inner .footer-social {
  text-align: center;
  margin-top: -1rem;
  gap: 1rem;
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    display: flex;
    justify-content: flex-start;
    margin-top: -4rem;
  }
}
.footer-section .footer-inner .footer-social a img {
  width: 4rem;
  height: 4rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social a img {
    width: 2.5rem;
    height: 3rem;
  }
}
.footer-section .footer-inner .footer-social a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer-section .footer-inner .footer-social {
    margin-top: 1rem;
  }
}
.footer-section .copyright {
  text-align: center;
  font-size: 1.3rem;
  color: #8F8F8F;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .footer-section .copyright {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}

.about-hero-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}
@media only screen and (max-width: 767px) {
  .about-hero-section {
    padding: 4rem 0;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero-section {
    padding: 5rem 0;
    margin-top: 4rem;
  }
}
.about-hero-section .global-width {
  position: relative;
}
.about-hero-section .global-width .about-hero-bg {
  position: relative;
  background: url("../images/ct-bg.svg") center/cover no-repeat;
  background-size: cover;
  margin-top: 2rem;
  border-radius: 2.2rem;
  padding: 10rem 4rem;
  text-align: center;
  overflow: hidden;
  height: 66.9rem;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg {
    width: 100%;
    height: auto;
    padding: 3rem 1rem;
    background: url(none);
    background: #F9F8F6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero-section .global-width .about-hero-bg {
    padding: 4rem 4rem;
    background: url(none);
    background: #F9F8F6;
    height: auto;
  }
}
.about-hero-section .global-width .about-hero-bg .about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #212121;
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .tag {
  display: inline-block;
  background: #fff;
  color: #E20D79;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .tag {
    font-size: 1.3rem;
    margin-bottom: -0.6rem;
  }
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .main-head {
  font-size: 6rem;
  line-height: 76px;
  font-weight: 500;
  color: #212121;
  letter-spacing: -2px;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .main-head {
    font-size: 3rem;
    line-height: 38px;
    letter-spacing: -1px;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .main-head {
    line-height: 60px;
    font-size: 5.4rem;
    margin-top: 1rem;
  }
}
.about-hero-section .global-width .about-hero-bg .about-hero-content .sub-para {
  line-height: 26px;
}
@media only screen and (max-width: 767px) {
  .about-hero-section .global-width .about-hero-bg .about-hero-content .sub-para {
    margin-top: 0;
  }
}

.building-ashgour {
  padding: 6rem 0;
}
@media only screen and (max-width: 767px) {
  .building-ashgour {
    padding: 2rem 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour {
    padding: 3rem 0;
  }
}
.building-ashgour .ashgour-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper {
    gap: 2rem;
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper {
    gap: 0;
  }
}
.building-ashgour .ashgour-wrapper .section-header {
  display: flex;
  align-items: flex-start;
  gap: 24rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header {
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header {
    display: grid;
  }
}
.building-ashgour .ashgour-wrapper .section-header .head-width {
  width: 30rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header .head-width {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header .head-width {
    width: 100%;
  }
}
.building-ashgour .ashgour-wrapper .section-header h2 {
  font-size: 4rem;
  font-weight: 500;
  color: #212121;
  margin-top: -2rem;
  letter-spacing: -2px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header h2 {
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header h2 span {
    display: none;
  }
}
.building-ashgour .ashgour-wrapper .section-header h2 .ashgour-line {
  display: block;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header h2 .ashgour-line {
    display: none;
  }
}
.building-ashgour .ashgour-wrapper .section-header h2 .sentient-line {
  display: block;
  white-space: nowrap;
  margin-top: -4rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header h2 .sentient-line {
    margin-top: -3rem;
  }
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header h2 {
    font-size: 2.6rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header h2 {
    text-align: center;
    max-width: none;
  }
}
.building-ashgour .ashgour-wrapper .section-header .sub-para {
  margin-left: 12rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .section-header .sub-para {
    text-align: center;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .section-header .sub-para {
    margin-left: 0;
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour {
  padding: 4rem 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour {
    padding: 2rem 0;
    text-align: center;
    margin-top: -2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .why-ashgour {
    margin-top: -2rem;
    padding: 2rem 0;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour .section-title {
  font-size: 4rem;
  font-weight: 500;
  color: #212121;
  letter-spacing: -1px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .section-title {
    font-size: 2.6rem;
    line-height: 38px;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .sub-para {
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour .info-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .info-cards {
    flex-direction: column;
    margin-top: 2rem;
    gap: 2rem;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card {
  flex: 1;
  border: 1px solid rgba(163, 163, 163, 0.3019607843);
  border-radius: 1.2rem;
  padding: 6rem 3rem;
  text-align: left;
  width: 65.4rem;
  height: 26.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card {
    width: 100%;
    height: auto;
    padding: 2rem 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card {
    height: 33.7rem;
    padding: 3rem 3rem;
  }
}
.building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card:hover {
  transform: translateY(-5px);
}
.building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card .card-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #CA0C6C;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .building-ashgour .ashgour-wrapper .why-ashgour .info-cards .info-card .card-title {
    font-size: 2rem;
    text-align: center;
  }
}

.team-section {
  position: relative;
  padding: 5rem 0;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .team-section {
    padding: 3rem 0;
    margin-top: -1rem;
  }
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/your-bg-image.jpg") center/cover no-repeat;
  filter: blur(20px);
  transform: scale(1.1);
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section::before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .team-section::before {
    display: none;
  }
}
.team-section::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .team-section::after {
    height: auto;
  }
}
.team-section .global-width {
  position: relative;
  z-index: 2;
}
.team-section .team-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
}
.team-section .team-wrapper .team-left {
  flex: 0 0 35%;
  position: sticky;
  top: 12rem;
  align-self: flex-start;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left {
    position: static;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left .tag {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.team-section .team-wrapper .team-left .tag .team-label {
  display: inline-block;
  background: #E20D79;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left .tag .team-label {
    font-size: 1.3rem;
    margin: 0;
    padding: 0.5rem 1rem;
  }
}
.team-section .team-wrapper .team-left h2 {
  font-size: 4rem;
  line-height: 1.3;
  color: #212121;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 50px;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left h2 {
    margin: 1rem;
    text-align: center;
    line-height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section .team-wrapper .team-left h2 {
    line-height: 57px;
    font-size: 5rem;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-left h2 {
    font-size: 2.4rem;
    line-height: 38px;
  }
}
.team-section .team-wrapper .team-right {
  flex: 1;
  position: relative;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right {
    padding-bottom: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section .team-wrapper .team-right {
    padding-bottom: 4rem;
  }
}
.team-section .team-wrapper .team-right .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-section .team-wrapper .team-right .team-grid {
    grid-template-columns: 1fr;
  }
}
.team-section .team-wrapper .team-right .team-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  border-radius: 1rem;
  padding: 0 1.5rem;
}
.team-section .team-wrapper .team-right .team-card:hover {
  transform: translateY(-5px);
}
.team-section .team-wrapper .team-right .team-card img {
  width: 100%;
  height: auto;
  display: block;
}
.team-section .team-wrapper .team-right .team-card .team-info {
  position: absolute;
  bottom: 1rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 6rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(33, 33, 33, 0.4);
  border-radius: 1rem;
  color: #212121;
  padding: 1.2rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info {
    bottom: 1rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 4.5rem;
    padding: 0.7rem 1rem;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role {
  display: flex;
  flex-direction: column;
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info .name-role h4 {
    font-size: 1.4rem;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .name-role p {
  font-size: 1.3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .team-section .team-wrapper .team-right .team-card .team-info .name-role p {
    font-size: 1rem;
  }
}
.team-section .team-wrapper .team-right .team-card .team-info .linkedin-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
}
.team-section .team-wrapper .team-right .team-card .team-info .linkedin-icon img {
  width: 100%;
  height: auto;
}

.terms-and-condition {
  position: relative;
  padding: 4rem 0;
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .terms-and-condition {
    margin-top: 3rem;
    padding: 1rem 1rem;
  }
}
.terms-and-condition .terms-head {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .terms-and-condition .terms-head {
    font-weight: 600;
    line-height: 45px;
  }
}
.terms-and-condition .terms-subhead {
  font-size: 2.2rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .terms-and-condition .terms-subhead {
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 1rem;
  }
}
.terms-and-condition .terms-para {
  font-size: 1.4rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .terms-and-condition .terms-para {
    margin-top: 0;
  }
}
.terms-and-condition .tag-line {
  text-decoration: none;
  color: #E20D79;
}

.journey-section {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  .journey-section {
    padding: 3rem 0;
    margin-top: -3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .journey-section {
    padding: 4rem 0;
    margin-top: -3rem;
  }
}
.journey-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.journey-section .journey-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content {
    flex-direction: column;
    gap: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .journey-section .journey-content {
    flex-direction: column;
  }
}
.journey-section .journey-content .left-content {
  flex: 1;
}
.journey-section .journey-content .left-content .journey-title {
  font-size: 6.4rem;
  font-weight: 500;
  color: #212121;
  line-height: 80px;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content .left-content .journey-title {
    font-size: 3rem;
    line-height: 46px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .journey-section .journey-content .left-content .journey-title {
    line-height: 64px;
    font-size: 5rem;
    text-align: center;
  }
}
.journey-section .journey-content .left-content .journey-title span {
  color: #CA0C6C;
}
.journey-section .journey-content .left-content .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content .left-content .sub-para {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .journey-section .journey-content .left-content .sub-para {
    text-align: center;
  }
}
.journey-section .journey-content .left-content .button-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content .left-content .button-group {
    gap: 1rem;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .journey-section .journey-content .left-content .button-group {
    justify-content: center;
  }
}
.journey-section .journey-content .left-content .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.2rem 2.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content .left-content .button-group a {
    padding: 0.5rem 1.8rem;
    font-size: 1.3rem;
  }
}
.journey-section .journey-content .left-content .button-group .btn-outline {
  color: #212121;
  border: 1.5px solid #E20D79;
  background: transparent;
}
.journey-section .journey-content .left-content .button-group .btn-outline:hover {
  transform: translateY(-2px);
}
.journey-section .journey-content .left-content .button-group .btn-gradient {
  color: #fff;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
}
.journey-section .journey-content .left-content .button-group .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}
.journey-section .journey-content .right-images {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
}
.journey-section .journey-content .right-images .main-image {
  flex: 1;
}
.journey-section .journey-content .right-images .main-image img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.journey-section .journey-content .right-images .side-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.journey-section .journey-content .right-images .side-images img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.6rem;
}
.journey-section .journey-content .right-images .mobile-image {
  display: none;
}
.journey-section .journey-content .right-images .mobile-image img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .journey-section .journey-content .right-images {
    flex-direction: column;
    align-items: center;
  }
  .journey-section .journey-content .right-images .main-image,
  .journey-section .journey-content .right-images .side-images {
    display: none;
  }
  .journey-section .journey-content .right-images .mobile-image {
    display: block;
  }
}

.blog-news {
  padding: 3rem 2rem;
  background-color: #F9F8F6;
  margin-top: 7rem;
}
@media only screen and (max-width: 767px) {
  .blog-news {
    padding: 1rem 1rem;
    margin-top: 2rem;
  }
}

.blog-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-news-header {
    margin-bottom: 2rem;
  }
}
.blog-news-header h2 {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 52px;
  color: #2B2B2B;
}
@media only screen and (max-width: 767px) {
  .blog-news-header h2 {
    font-size: 2.6rem;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-news-header h2 {
    font-size: 4.8rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 1px solid #212121;
  border-radius: 2rem;
  padding: 1rem 2rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  color: #212121;
}
@media only screen and (max-width: 767px) {
  .view-all {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}
.view-all:hover .icon-img {
  transform: translateX(4px);
}
.view-all .icon-img {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(610px, 1fr));
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  transition: transform 0.2s ease;
  height: 21.6rem;
}
@media only screen and (max-width: 767px) {
  .blog-card {
    flex-direction: column;
    height: auto;
  }
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 20rem;
  height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-card img {
    width: 100%;
    height: auto;
  }
}

.blog-card-content {
  padding: 1rem 1.2rem;
}
@media only screen and (max-width: 767px) {
  .blog-card-content {
    padding: 0;
  }
}
.blog-card-content h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 32px;
  color: #212121;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-card-content h3 {
    font-size: 2rem;
    line-height: 30px;
  }
}
.blog-card-content p {
  font-size: 1.4rem;
  color: #808080;
  margin-bottom: 0.8rem;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-card-content p {
    margin-top: 1rem;
    line-height: 27px;
  }
}
.blog-card-content .tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-card-content .tags {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
}
.blog-card-content .tag {
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
  font-size: 1.2rem;
  color: #212121;
  font-weight: 500;
  border: 1px solid rgba(33, 33, 33, 0.3019607843);
}

.how-it-works {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works {
    padding: 2rem 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works {
    padding: 2rem 1rem;
    margin-top: 0;
  }
}
.how-it-works .section-title {
  font-size: 2rem;
  font-weight: 400;
  color: #E20D79;
  margin-bottom: 0.5rem;
}
.how-it-works .section-subtitle {
  color: #212121;
  font-size: 4rem;
  margin-bottom: 3rem;
  letter-spacing: -1px;
  line-height: 54px;
  font-weight: 500;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .how-it-works .section-subtitle {
    line-height: 34px;
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .section-subtitle {
    font-size: 4.8rem;
    line-height: 53px;
  }
}
.how-it-works .steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 480px);
  align-items: stretch;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    justify-content: center;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    align-items: start;
  }
}
.how-it-works .step-card {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 0 20px 0 rgba(19, 99, 223, 0.1);
  padding: 2rem 3rem;
  width: 480px;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  text-align: left;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.how-it-works .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px 0 rgba(19, 99, 223, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card {
    width: 100%;
    gap: 1rem;
    height: 100%;
    align-items: flex-start;
    padding: 2rem 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: auto;
  }
}
.how-it-works .step-card .step-left {
  flex-shrink: 0;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card .step-left {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card .step-left {
    margin-top: 0;
  }
}
.how-it-works .step-card .step-left .step-number {
  font-size: 9rem;
  font-weight: 700;
  color: #e6f7fb;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card .step-left .step-number {
    font-size: 9rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card .step-left .step-number {
    font-size: 6rem;
  }
}
.how-it-works .step-card .step-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.how-it-works .step-card .step-right .step-label {
  color: #01B2D6;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  line-height: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card .step-right .step-label {
    font-size: 1.6rem;
    margin-top: 0.5rem;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card .step-right .step-label {
    font-size: 1.6rem;
    margin-top: 1rem;
    text-align: center;
  }
}
.how-it-works .step-card .step-right h4 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 0.5rem;
  line-height: 30px;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card .step-right h4 {
    font-size: 2.2rem;
    line-height: 32px;
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card .step-right h4 {
    font-size: 2rem;
    text-align: center;
  }
}
.how-it-works .step-card .step-right .sub-para {
  margin-top: 1rem;
  color: #6d6e78;
  flex-grow: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .step-card .step-right .sub-para {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works .step-card .step-right .sub-para {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .how-it-works .section-title {
    font-size: 1.7rem;
  }
  .how-it-works .step-card {
    padding: 1.75rem;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .how-it-works .section-title {
    font-size: 2.5rem;
  }
  .how-it-works .steps-grid {
    gap: 2.5rem;
    align-items: stretch;
  }
  .how-it-works .step-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 2rem 2.5rem;
    width: 100%;
    height: 100%;
    min-height: -moz-fit-content;
    min-height: fit-content;
    gap: 3rem;
  }
  .how-it-works .step-card .step-left .step-number {
    font-size: 9rem;
  }
  .how-it-works .step-card .step-right .step-label {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
  .how-it-works .step-card .step-right h4 {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
  .how-it-works .step-card .step-right .step-desc {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works {
    padding: 2em 1rem;
  }
  .how-it-works .section-title {
    font-size: 1.2rem;
  }
  .how-it-works .step-card {
    padding: 1.25rem;
    width: 100%;
    height: auto;
    gap: 0.5rem;
  }
}

.div-display {
  border-radius: 2rem;
  padding: 1rem 0;
}
@media only screen and (max-width: 767px) {
  .div-display {
    padding: 0;
  }
}
.div-display .data-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
  background: #F9F8F6;
  border-radius: 1.6rem;
  padding: 2rem 2rem;
}
@media only screen and (max-width: 767px) {
  .div-display .data-section {
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: 1rem 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .div-display .data-section {
    display: grid;
  }
}
.div-display .data-section .data-left {
  flex: 1;
  padding-left: 2rem;
}
@media only screen and (max-width: 767px) {
  .div-display .data-section .data-left {
    margin-top: -2rem;
  }
}
.div-display .data-section .data-left h3 {
  font-size: 3.3rem;
  font-weight: 500;
  color: #212121;
  margin-bottom: 1.6rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .div-display .data-section .data-left h3 {
    font-size: 4rem;
    text-align: center;
    margin-top: 2rem;
  }
}
.div-display .data-section .data-left .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .div-display .data-section .data-left .sub-para {
    margin-top: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .div-display .data-section .data-left .sub-para {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .div-display .data-section .data-left {
    padding: 0;
  }
  .div-display .data-section .data-left h3 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .div-display .data-section .data-left h3 {
    font-size: 2rem;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .div-display .data-section .data-left p {
    max-width: 100%;
  }
}
.div-display .data-section .data-right {
  flex: 1;
  position: relative;
  height: 40rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .div-display .data-section .data-right {
    height: 26rem;
  }
}
.div-display .data-section .data-right .main-image {
  position: absolute;
  right: -18px;
  bottom: -36px;
  width: 68rem;
  height: auto;
}
.div-display .data-section .data-right .main-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.div-display .data-section .data-right .main-image .desktop-img {
  display: block;
}
.div-display .data-section .data-right .main-image .mobile-img {
  display: none;
}
@media only screen and (max-width: 767px) {
  .div-display .data-section .data-right .main-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }
  .div-display .data-section .data-right .main-image .desktop-img {
    display: none;
  }
  .div-display .data-section .data-right .main-image .mobile-img {
    display: block;
    position: relative;
    width: 325px;
    height: 161px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 1rem;
    margin: 0 auto;
    bottom: -1rem;
    left: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .div-display .data-section .data-right .main-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }
  .div-display .data-section .data-right .main-image .desktop-img {
    display: none;
  }
  .div-display .data-section .data-right .main-image .mobile-img {
    display: block;
    position: relative;
    width: 480px;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 1rem;
    margin: 0 auto;
  }
}

.blog-grid-section {
  padding: 8rem 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section {
    margin-top: 5rem;
    padding: 2rem 0;
  }
}
.blog-grid-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog-grid-section .blog-cards {
  background: #F9F8F6;
  border-radius: 1.6rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  width: 39rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards {
    width: 100%;
  }
}
.blog-grid-section .blog-cards:hover {
  transform: translateY(-6px);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards {
    border-radius: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards {
    border-radius: 1.2rem;
    width: 100%;
  }
}
.blog-grid-section .blog-cards .blog-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 2rem;
}
.blog-grid-section .blog-cards .blog-img .news-img {
  transition: transform 0.3s ease;
  border-radius: 1.5rem;
  width: 35rem;
}
.blog-card:hover .blog-grid-section .blog-cards .blog-img .news-img {
  transform: scale(1.05);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards .blog-img {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-img {
    width: 100%;
    height: auto;
  }
}
.blog-grid-section .blog-cards .blog-content {
  padding: 2rem;
  margin-top: -4rem;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-grid-section .blog-cards .blog-content {
    padding: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content {
    padding: 14px;
  }
}
.blog-grid-section .blog-cards .blog-content .blog-title {
  font-size: 2.4rem;
  color: #212121;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content .blog-title {
    font-size: 2.2rem;
    line-height: 34px;
    text-align: center;
  }
}
.blog-grid-section .blog-cards .blog-content .sub-para {
  color: #808080;
  line-height: 24px;
  font-weight: 400;
  margin-top: 2rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .blog-grid-section .blog-cards .blog-content .sub-para {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-meta {
    align-items: flex-start;
    gap: 6px;
    margin-top: 3rem;
  }
}
.blog-meta .meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-meta .meta-left img {
  width: 2.8rem;
  height: 2.8rem;
}
@media only screen and (max-width: 767px) {
  .blog-meta .meta-left img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.blog-meta .meta-date {
  color: #212121;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .blog-meta .meta-date {
    font-size: 1.4rem;
  }
}

.mg-t-4 {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-4 {
    margin-top: 0.5rem;
  }
}

.blog-inner-page {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.blog-inner-page .main-header {
  width: 100%;
  background: #F9F8F6;
  margin-top: 10rem;
  padding: 4rem 1rem;
  height: 34rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header {
    margin-top: 7rem;
    padding: 2rem 1rem;
    height: auto;
    margin-bottom: 3rem;
  }
}
.blog-inner-page .main-header .header-content {
  max-width: 900px;
  margin: 0 auto;
}
.blog-inner-page .main-header .header-content .blog-head {
  font-size: 6rem;
  margin-bottom: 1rem;
  line-height: 78px;
  letter-spacing: -3px;
  font-weight: 500;
  color: #212121;
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .blog-head {
    line-height: 42px;
    letter-spacing: 0;
    font-size: 3rem;
    font-weight: 600;
  }
}
.blog-inner-page .main-header .header-content .subtitle {
  font-size: 1.8rem;
  color: #808080;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .main-header .header-content .subtitle {
    line-height: 28px;
    font-size: 1.4rem;
  }
}
.blog-inner-page .main-header .header-content .blog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}
.blog-inner-page .mobile-more-blogs {
  display: none;
  background: #F9F8F6;
  padding: 2rem 1.5rem;
  margin: 3rem 1rem 0;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs {
    margin: 0;
    padding: 1rem 2rem;
  }
}
.blog-inner-page .mobile-more-blogs h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #212121;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs h3 {
    margin: 0;
    font-size: 2rem;
  }
}
.blog-inner-page .mobile-more-blogs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-inner-page .mobile-more-blogs ul li {
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #ECECF1;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li {
    margin-top: 1rem;
    padding-bottom: 0rem;
  }
}
.blog-inner-page .mobile-more-blogs ul li a {
  color: #212121;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li a {
    font-size: 1.4rem;
    line-height: 22px;
  }
}
.blog-inner-page .mobile-more-blogs ul li a:hover {
  color: #212121;
}
.blog-inner-page .mobile-more-blogs ul li p {
  color: #808080;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs ul li p {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .mobile-more-blogs {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .blog-inner-page .mobile-more-blogs {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-inner-page .mobile-more-blogs {
    display: none;
  }
}
.blog-inner-page .blog-image {
  width: 100%;
}
.blog-inner-page .blog-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image {
    display: none;
  }
}
.blog-inner-page .blog-image-mobile {
  display: none;
  width: 100%;
}
.blog-inner-page .blog-image-mobile img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-image-mobile {
    display: block;
  }
}
.blog-inner-page .blog-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.blog-inner-page .blog-content {
  font-size: 1rem;
}
.blog-inner-page .blog-content .blog-inner-head {
  margin-top: 3rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-inner-head {
    font-size: 2.2rem;
    line-height: 33px;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.blog-inner-page .blog-content .sub-blog {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 29px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .sub-blog {
    line-height: 28px;
    font-size: 1.8rem;
  }
}
.blog-inner-page .blog-content .blog-para {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-para {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-content .blog-points {
  margin: 20px 0;
  padding-left: 25px;
  list-style-type: disc;
}
.blog-inner-page .blog-content .blog-points li {
  color: #808080;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-content .blog-points {
    padding-left: 20px;
  }
  .blog-inner-page .blog-content .blog-points li {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .sticky-sidebar {
  position: sticky;
  top: 2rem;
}
.blog-inner-page .blog-sidebar .toc {
  background: #F9F8F6;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc {
    padding: 0.5rem 1rem;
    margin-bottom: 0rem;
  }
}
.blog-inner-page .blog-sidebar .toc h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #212121;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc h3 {
    margin-top: 0rem;
    font-size: 2rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-inner-page .blog-sidebar .toc ul li {
  margin-bottom: 0.8rem;
}
.blog-inner-page .blog-sidebar .toc ul li a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .toc ul li a {
    font-size: 1.4rem;
  }
}
.blog-inner-page .blog-sidebar .toc ul li a:hover {
  color: #212121;
}
.blog-inner-page .blog-sidebar .more-blogs {
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .blog-inner-page .blog-sidebar .more-blogs {
    display: none;
  }
}
.blog-inner-page .blog-sidebar .more-blogs h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #212121;
  margin-top: 2rem;
}
.blog-inner-page .blog-sidebar .more-blogs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-inner-page .blog-sidebar .more-blogs ul li {
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #ECECF1;
}
.blog-inner-page .blog-sidebar .more-blogs ul li a {
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.8rem;
  font-weight: 500;
}
.blog-inner-page .blog-sidebar .more-blogs ul li a:hover {
  color: #212121;
}
.blog-inner-page .blog-sidebar .more-blogs ul li p {
  color: #808080;
  font-size: 1.4rem;
  margin-top: 0.5rem;
}

.platform-page {
  padding: 4rem 0;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .platform-page {
    margin-bottom: -5rem;
    margin-top: 0;
  }
}
.platform-page .grid-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .platform-page .grid-area {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-page .grid-area {
    flex-direction: column;
    align-items: center;
  }
}
.platform-page .grid-area .left-sec .main-head {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .platform-page .grid-area .left-sec .main-head {
    text-align: center;
    font-size: 2.6rem;
    line-height: 40px;
    margin-top: 3rem;
  }
}
.platform-page .grid-area .left-sec .sub-para {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .platform-page .grid-area .left-sec .sub-para {
    text-align: center;
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-page .grid-area .left-sec .sub-para br {
    display: none;
  }
}
.platform-page .btn-grid .button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-page .btn-grid .button-group {
    gap: 1rem;
  }
}
.platform-page .btn-grid .button-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 3rem;
  padding: 1.1rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-page .btn-grid .button-group a {
    font-size: 1.2rem;
    padding: 1.1rem 1.5rem;
    line-height: 13px;
  }
}
.platform-page .btn-grid .button-group .btn-outline {
  color: #E20D79;
  border: 1.5px solid #E20D79;
  background: transparent;
}
.platform-page .btn-grid .button-group .btn-outline:hover {
  transform: translateY(-2px);
}
.platform-page .btn-grid .button-group .btn-gradient {
  color: #fff;
  background: radial-gradient(circle at top left, #FF6EB7, #E20D79);
}
.platform-page .btn-grid .button-group .btn-gradient img {
  width: 1.6rem;
  height: 1.6rem;
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .platform-page .btn-grid .button-group .btn-gradient img {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.platform-page .btn-grid .button-group .btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(226, 13, 121, 0.4);
}
.platform-page .btn-grid .button-group .btn-gradient:hover img {
  transform: translateX(4px);
}
.platform-page .img-grid {
  margin-top: 3rem;
}

.platform-cards {
  position: relative;
  padding: 3rem 0;
}
@media only screen and (max-width: 767px) {
  .platform-cards {
    padding: 2rem 0;
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards {
    margin-top: -3rem;
  }
}
.platform-cards .global-width {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width {
    padding: 0 1.5rem;
  }
}
.platform-cards .global-width .sub-head {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width .sub-head {
    font-size: 2.4rem;
    line-height: 38px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .global-width .sub-head {
    font-size: 4.8rem;
    line-height: 58px;
  }
}
.platform-cards .global-width .sub-para {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .global-width .sub-para {
    margin-top: 1.2rem;
    line-height: 1.6;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .global-width .sub-para br {
    display: none;
  }
}
.platform-cards .card-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-stack {
    position: static;
    gap: 2rem;
  }
}
.platform-cards .card-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #F9F8F6;
  border-radius: 1.6rem;
  padding: 2rem 2rem;
  position: sticky;
  top: 80px;
  gap: 7rem;
  transform-origin: center;
  transition: transform 0.3s ease, top 0.3s ease;
  height: auto;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item {
    padding: 8rem 2rem;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item {
    position: static;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transform: none;
    top: auto;
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-img {
    order: 1;
  }
}
.platform-cards .card-item .card-img img {
  width: 56rem;
  height: 56rem;
  border-radius: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-img img {
    width: 100%;
    margin: 0 auto;
    display: block;
    height: auto;
  }
}
.platform-cards .card-item .card-content {
  flex: 1;
  text-align: left;
  margin-left: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content {
    text-align: center;
    order: 2;
    margin-left: 0;
  }
}
.platform-cards .card-item .card-content .card-title {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #212121;
  line-height: 50px;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .card-title {
    font-size: 2rem;
    line-height: 32px;
    margin-top: 1rem;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .platform-cards .card-item .card-content .card-title {
    line-height: 47px;
    font-size: 4.9rem;
  }
}
.platform-cards .card-item .card-content .card-subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  color: #212121;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .card-subtitle {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 2rem;
    line-height: 26px;
  }
}
.platform-cards .card-item .card-content .sub-para {
  margin-top: -1rem;
  margin-bottom: -2rem;
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item .card-content .sub-para {
    margin-top: 0rem;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  .platform-cards .card-item.reverse {
    flex-direction: column;
  }
}

.mg-t-14 {
  margin-top: -14rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-14 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mg-t-14 {
    margin-top: 0;
  }
}

.mg-t-6 {
  margin-top: 10rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-6 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .mg-t-6 {
    margin-top: 0;
  }
}

.mg-t-5 {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-5 {
    margin-top: 0;
  }
}

.mg-t-2 {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-2 {
    margin-top: 0;
  }
}

.mg-t-12 {
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-12 {
    margin-top: 0;
  }
}

.mg-t-18 {
  margin-top: 18rem;
}
@media only screen and (max-width: 767px) {
  .mg-t-18 {
    margin-top: 0;
  }
}

/* ✅ remove any fixed card height definitions */
.card-1,
.card-2,
.card-3,
.card-4,
.card-5 {
  height: auto;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media only screen and (max-width: 767px) {
  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5 {
    height: auto;
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}/*# sourceMappingURL=style.css.map */