:root {
  --bg: #1b1a20;
  --bg-2: #23222a;
  --card: #2a2932;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f6f6fb;
  --muted: #b9b8c6;
  --accent: #e52b67;
  --accent-2: #ff4b8a;
  --highlight: #f2e46b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(800px 500px at 15% 10%, rgba(229, 43, 103, 0.12), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(242, 228, 107, 0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.srcn-conatiner {
  max-width: 1480px;
  margin: 0 auto;
  width: 90%;
}

.di-flex {
  display: flex;
}

.j-content {
  justify-content: center;
}

.align-center {
  align-items: center;
}

/* Header */
.header-arae {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(27, 26, 32, 0.9);
  backdrop-filter: blur(8px);
}
.header-arae.is-sticky {
  padding: 19px 0;
  box-shadow: 0 0 21px 0 rgb(94 94 94 / 67%);
}
.header-glocal_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.header-social-list {
  display: flex;
  gap: 12px;
}
.header-social-list a {
  /* width: 50px; */
  /* height: 50px; */
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-flex;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  background: #D81D5C;
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-social-list a:hover {
  background: #325767;
  transform: translateY(-2px);
}
/* Hero */
.hero-section-area {
  padding: 65px 0 78px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section-area::after {
  content: "";
  position: absolute;
  top: -88px;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-img-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 0;
}
.hero-section-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-wrapper-box {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero_wrapper-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-lift-col {
  min-width: 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.hero-right-col {
  min-width: 0;
}
.hero_wrapper-heading h1 {
  margin-bottom: 29px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0;
}
.hero_wrapper-heading .text-color {
  color: var(--highlight);
}
.hero-grad {
  display: inline-block;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, rgba(157, 232, 238, 1), rgba(250, 124, 11, 1), rgba(159, 140, 237, 1));

}
.hero-title p {
  margin-top: 16px;
  color: #FFFFFF;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}
.btn-box {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.home-hero-signup-button {
  background: #D81D5C;
  color: #fff;
  box-shadow: 0 10px 24px rgba(229, 43, 103, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 55px;
  padding: 20px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.home-hero-signup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 43, 103, 0.4);
}
.home-hero-schedule-button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
  border-radius: 55px;
  padding: 18px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.home-hero-schedule-button i {
  rotate: 320deg;
  font-size: 18px;
}
.home-hero-schedule-button:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}
.hero-wrapper-from {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
}
.hero-wrapper-from.is-hidden {
  display: none;
}
.is-hidden {
  display: none;
}
.hero-wrapper-from-inner {
  background: linear-gradient(180deg, rgba(16, 14, 14, 0.92), rgba(24, 22, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 48px 42px 44px;
  box-shadow: 0 20px 50px rgb(0 0 0 / 63%);
  display: flex;
  width: 100%;
}
form {
  width: 100%;
}
.hero-hiring-from-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.hero-hiring-heading h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: 0;
  text-align: center;
}
.from-inner-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.from-inner-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.from-inner-row-full {
  grid-template-columns: 1fr;
}
.from-inner-row select,
.text-arae-box {
  width: 100%;
  min-height: 72px;
  padding: 0 28px;
  border-radius: 10px;
  border: 1px solid #e9ebf2;
  background: #ffffff;
  color: #131313;
  outline: none;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 0;
}
.from-inner-row-full select,
.from-inner-row-full .text-arae-box {
  min-height: 72px;
}
.from-inner-row-full {
  position: relative;
}
.from-inner-row-full select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 54px;
  background-image:
    linear-gradient(45deg, transparent 50%, #1f2430 50%),
    linear-gradient(135deg, #1f2430 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 18px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.text-arae-box {
  resize: vertical;
  min-height: 102px;
  padding-top: 22px;
  line-height: 1.4;
}
.hiring-input {
  width: 100%;
  min-height: 72px;
  padding: 0 28px;
  border-radius: 10px;
  border: 1px solid #D1E5F0;
  background: #ffffff;
  color: #131313;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  box-sizing: border-box;
}
.hiring-input::placeholder {
  color: #1f2430;
  opacity: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
}
.hiring-input,
.from-inner-row select,
.text-arae-box {
  box-shadow: none;
}

.hiring-input.is-invalid,
.from-inner-row select.is-invalid,
.text-arae-box.is-invalid {
  border-color: #d81d5c;
  box-shadow: 0 0 0 3px rgba(216, 29, 92, 0.16);
}

.hiring-input.is-valid,
.from-inner-row select.is-valid,
.text-arae-box.is-valid {
  border-color: #2fb344;
  box-shadow: 0 0 0 3px rgba(47, 179, 68, 0.16);
}

.from-inner-row .from-filder-inner {
  width: 100%;
}
.submit-btn {
  width: 100%;
  border: none;
  padding: 16px 18px;
  border-radius: 999px;
  height: 56px;
  background: #D81D5C;
  color: #fff;
  font-weight: 700;
  margin-top: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(229, 43, 103, 0.35);
}

.consultation-thank-you {
  padding: 32px 24px;
  text-align: center;
}

.consultation-thank-you h3 {
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.consultation-thank-you p {
  color: #d6d8e4;
  font-size: 16px;
}
/* Powering */
.powering-section-arae {
  padding: 80px 0;
  background-color: #f6f6f7;
  position: relative;
  overflow: hidden;
  background-size: 100%;
}
.powering-section-arae::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 366px;
  background-image: url(../images/divbg.png);
  pointer-events: none;
  top: 50%;
  transform: translate(0, -50%);
  background-size: cover;
}
.powering-container {
  position: relative;
  z-index: 1;
}
.powering-heading h2 {
  margin-bottom: 37px;
  color: #101018;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0;
  text-align: center;
}
.powering_wrapper-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 41px;
  margin-bottom: 43px;
}
.Powering_wrapper-card {
  background: #FFFFFF;
  border: 1px solid #E2E2E2;
  border-radius: 14px;
  padding: 60px 31px 60px 38px;
  text-align: center;
  box-shadow: 0 12px 28px #00000026;
  height: 100%;
}
.Powering_wrapper-inner h3 {
  margin-bottom: 17px;
  color: #e52b67;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1;
  letter-spacing: -2px;
  text-align: center;
}
.Powering_wrapper-inner h3 span {
  color: inherit;
}

.Powering_wrapper-inner p {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

/* Industries */
.industries-section-arae {
  padding: 80px 0 72px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.industries-section-arae::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 625px;
  background-image: url("../images/poweringbg.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  width: 100%;
}

.industries_banner {
  border-radius: 22px;
  min-height: 375px;
  padding: 64px 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#030409ab, #030409c4), url(../images/Industries-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  color: #fff;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}

.industries_wrapper-contnet h2 {
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 46px;
  letter-spacing: -1px;
  text-align: center;
}
.industries_wrapper-contnet p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: -0.2px;
  text-align: center;
}
.industries_wrapper-main-inner {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.industries_wrapper-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 46px;
  padding: 29px 0px 55px;
}
.industries_wrapper-col {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 19px;
  padding: 16px 0 26px;
  border-bottom: 1px solid #c9cfe0;
  align-items: start;
}
.industries_wrapper-img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industries_wrapper-img img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.industries_wrapper-content h3 {
  margin-bottom: 12px;
  color: #0E1E4C;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: middle;
}
.industries_wrapper-content p {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0;
  vertical-align: middle;
}
/* Choose */
.choose-section-arae {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.choose_wrapper-contnet {
  position: relative;
  z-index: 1;
}
.Choose_wrapper-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.Choose_wrapper-text span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.Choose_wrapper-text h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -1px;
  text-align: center;
}
.Choose_wrapper-text p {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: -0.2px;
  text-align: center;
}
.chooseg_glocal-arae {
  margin-top: 34px;
  position: relative;
  z-index: 1;
}
.chooseg_glocal_row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}
.chooseg_glocal_card {
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 48px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
  height: 100%;
}
.chooseg_glocal-content {
  display: grid;
  gap: 22px;
}
.chooseg_glocal_box {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #d91b5c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chooseg_glocal_img img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.chooseg_glocal_heading h4 {
  margin-bottom: 10px;
  color: #1b1b25;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}
.chooseg_glocal_heading p {
  color: #373737;
  font-weight: 400;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}
/* Smarter Hiring */
.smarter-hiring-section-area {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.smarter-hiring-wrapper-box {
  position: relative;
  z-index: 1;
}
.smarter-hiring_wrapper-row {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}
.smarter-hiring-lift-col {
  min-width: 0;
}
.smarter-hiring-right-col {
  display: flex;
  justify-content: center;
  min-width: 0;
}
.smarter-hiring_wrapper-heading h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 140%;
  letter-spacing: -1px;
}
.smarter-hiring-title p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  letter-spacing: 0;
}
.smarter-hiring-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 45px;
}
.smarter-hiring-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 19px;
  height: 100%;
  box-shadow: 0 10px 20px #00000026;
  border: 1px solid #D9D9D9;
}
.smarter-hiring-col1 {
  margin-right: 30px;
}
.smarter-hiring-col.smarter-hiring-col2 {
  margin-left: 58px;
}
.smarter-hiring-col.smarter-hiring-col3 {
  margin-left: 19px;
}
.smarter-hiring-card-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  align-items: center;
}
.smarter-hiring-card-box {
  background: #d91b5c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  opacity: 1;
}
.smarter-hiring-card-img img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.smarter-hiring-card-contnet h4 {
  margin-bottom: 9px;
  color: #1b1b25;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0;
}
.smarter-hiring-card-contnet p {
  color: #373737;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0;
}
.smarter-hiring_img {
  position: relative;
  width: 100%;
}
.smarter-hiring_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Success */
.success-section-area {
  padding: 78px 0 92px;
  background: #f7f8fe;
}
.success-header {
  text-align: center;
  margin-bottom: 70px;
}
.success-header span {
  display: inline-block;
  color: #D81D5C;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.success-header h2 {
  margin-top: 6px;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 112%;
  letter-spacing: -1px;
  text-align: center;
}
.success-grid {
  position: relative;
  display: grid;
  grid-template-columns: 620px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin: 0 auto;
}
.success-swiper {
  overflow: hidden;
}
.swiper-wrapper {
  height: auto !important;
}
.success-swiper .swiper-slide {
  height: auto;
  width: 100%;
}
.success-image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 16, 28, 0.12);
  position: relative;
  z-index: 1;
  width: 100%;
}
.success-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 0.86 / 1;
}
.success-slider-wrap {
  position: relative;
}
.success-quote-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 80px 81px 60px;
  border: none;
  box-shadow: 1px 1px 10px rgba(16, 16, 28, 0.10);
  position: relative;
  z-index: 1;
  max-width: 100%;
  transform: none;
  align-self: center;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -90px;
}
.success-quote-icon {
  font-size: 56px;
  line-height: 1;
  color: #e61d5f;
  font-weight: 800;
  margin-bottom: 12px;
}
.success-quote-card p {
  color: #101018;
  margin-bottom: 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 170%;
  letter-spacing: 0;
}
.success-quote-card span {
  color: #D81D5C;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 23px;
  line-height: 190%;
  letter-spacing: 0;
}
.success-nav {
  position: absolute;
  right: 100px;
  top: 13px;
  transform: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.success-nav-btn {
  width: 46px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #d5d5da;
  background: #d5d5da;
  color: #6c6c77;
  font-size: 29px;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.success-nav-btn:hover {
  transform: translateY(-2px);
  border-color: #d81d5c;
  color: #fff;
  background-color: #d81d5c;
}
/* Reach */
.reach_section-arae {
  padding: 82px 0 88px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reach_wrapper-box,
.reach_wrapper-row,
.reach_wrapper-col,
.reach_wrapper_contnet {
  position: relative;
  z-index: 1;
}
.reach_wrapper_heading {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.reach_wrapper_heading h2 {
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
}
.reach_wrapper_heading p {
  color: #FFFFFF;
  margin-bottom: 26px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
.reach-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #000;
  box-shadow: 0 12px 26px rgba(229, 43, 103, 0.35);
  border-radius: 55px;
  padding: 19px 38px;
  font-weight: 700;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.4px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
}
.reach-btn:hover {
  transform: translateY(-2px);
  background: #fff6fa;
}

/* Footer */
.footer-arae {
  padding: 18px 0 19px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-glocal_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-social-list {
  display: flex;
  gap: 12px;
}

.footer-social-list a {
  width: 50px;
  height: 50px;
  font-size: 21px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D81D5C;
  color: var(--text);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social-list a:hover {
  background: #325767;
  transform: translateY(-2px);
}

#preloader {
  position: fixed;
  inset: 0;
  background: #111019;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.preloader-hide {
  opacity: 0;
}
#status {
  width: 220px;
  height: 220px;
  position: relative;
}

.e-loadholder {
  width: 100%;
  height: 100%;
  position: relative;
}
.m-loader {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
}

.m-loader::before,
.m-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      transparent 0deg 26deg,
      #f7a300 26deg 92deg,
      transparent 92deg 160deg,
      #f7a300 160deg 200deg,
      transparent 200deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 67%, #000 68%);
  mask: radial-gradient(circle, transparent 67%, #000 68%);
  animation: outerRotate1 2.8s linear infinite;
}

.m-loader::after {
  inset: 28px;
  background:
    conic-gradient(from 40deg,
      transparent 0deg 40deg,
      #f7a300 40deg 110deg,
      transparent 110deg 180deg,
      #f7a300 180deg 240deg,
      transparent 240deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 63%, #000 64%);
  mask: radial-gradient(circle, transparent 63%, #000 64%);
  animation: outerRotate2 2s linear infinite;
  opacity: 0.9;
}

.m-loader span {
  display: none;
}
.e-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  letter-spacing: 1.5px;
}

@keyframes outerRotate1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes outerRotate2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes textColour {
  0% {
    color: #ffffff;
  }

  100% {
    color: #3bb2d0;
  }
}

.shooting-stars {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 120vh;
  width: 110vw;
  transform: translate(-50%, -50%) rotate(20deg);
  pointer-events: none;
  z-index: 0;
}

.shooting-star {
  left: 0;
  top: 50px;
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  animation: 10s linear infinite shoot-star;
}
.shooting-star::before {
  position: absolute;
  display: block;
  content: "";
  width: 130px;
  right: 1px;
  top: 0;
  height: inherit;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.4) 100%);
}

.shooting-star--mid {
  animation-duration: 5s;
  top: 60%;
  animation-delay: 4s;
}
.shooting-star--meh {
  animation-name: shoot-star-pause;
  animation-duration: 8s;
  top: 50%;
  animation-delay: 1s;
}
.shooting-star--fast {
  width: 1px;
  height: 1px;
  animation: 10s linear 2s infinite shoot-star-pause;
  top: 90%;
}

.shooting-star:nth-child(1) {
  top: 8%;
  animation-delay: 0s;
  animation-duration: 9s;
}
.shooting-star:nth-child(2) {
  top: 14%;
  animation-delay: 1.5s;
  animation-duration: 7s;
}
.shooting-star:nth-child(3) {
  top: 22%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.shooting-star:nth-child(4) {
  top: 28%;
  animation-delay: 0.8s;
  animation-duration: 8s;
}

.shooting-star:nth-child(5) {
  top: 34%;
  animation-delay: 2.2s;
  animation-duration: 11s;
}

.shooting-star:nth-child(6) {
  top: 40%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.shooting-star:nth-child(7) {
  top: 46%;
  animation-delay: 1.1s;
  animation-duration: 7.5s;
}

.shooting-star:nth-child(8) {
  top: 52%;
  animation-delay: 3.4s;
  animation-duration: 12s;
}
.shooting-star:nth-child(9) {
  top: 58%;
  animation-delay: 0.6s;
  animation-duration: 8.5s;
}

.shooting-star:nth-child(10) {
  top: 64%;
  animation-delay: 2.8s;
  animation-duration: 10.5s;
}
.shooting-star:nth-child(11) {
  top: 70%;
  animation-delay: 4.6s;
  animation-duration: 9.5s;
}
.shooting-star:nth-child(12) {
  top: 76%;
  animation-delay: 1.9s;
  animation-duration: 7.8s;
}
.shooting-star:nth-child(13) {
  top: 82%;
  animation-delay: 3.9s;
  animation-duration: 11.5s;
}
.shooting-star:nth-child(14) {
  top: 88%;
  animation-delay: 0.4s;
  animation-duration: 8.2s;
}
.shooting-star:nth-child(15) {
  top: 12%;
  animation-delay: 5.2s;
  animation-duration: 10.2s;
}
.shooting-star:nth-child(16) {
  top: 24%;
  animation-delay: 6s;
  animation-duration: 9.2s;
}
.shooting-star:nth-child(17) {
  top: 36%;
  animation-delay: 5.6s;
  animation-duration: 7.2s;
}
.shooting-star:nth-child(18) {
  top: 48%;
  animation-delay: 6.8s;
  animation-duration: 12s;
}
.shooting-star:nth-child(19) {
  top: 60%;
  animation-delay: 7.4s;
  animation-duration: 8.8s;
}
.shooting-star:nth-child(20) {
  top: 72%;
  animation-delay: 8s;
  animation-duration: 10.8s;
}

@keyframes anim-star {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-2000px);
  }
}

@keyframes space-color {

  0%,
  100%,
  25% {
    opacity: 0;
  }

  20% {
    opacity: 0.15;
  }

  35% {
    opacity: 0.38;
  }

  50% {
    opacity: 0.6;
  }

  60% {
    opacity: 0.3;
  }

  65% {
    opacity: 0.45;
  }

  85% {
    opacity: 0.25;
  }

  90% {
    opacity: 0.1;

  }
}

@keyframes shoot-star {
  0% {
    left: -100px;

  }

  70%,
  100% {
    left: calc(100% + 100px);
  }
}

@keyframes shoot-star-pause {
  0% {
    left: -100px;
  }

  20%,
  100% {
    left: calc(100% + 100px);
  }
}
