@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
}

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

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

a {
  text-decoration: none;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 6px 14.3px 0px #feeee9;
  -webkit-backdrop-filter: blur(10.35px);
          backdrop-filter: blur(10.35px);
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header .logoContainer {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: bold;
}
.header .logoContainer img {
  width: 200px;
}
.header .logoContainer .subtext {
  color: rgba(60, 60, 67, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.32px;
}
.header .storeButtons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .storeButtons img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 960px) {
  .header {
    padding: 12px 16px;
  }
  .header .logoContainer img {
    width: 130px;
  }
  .header .logoContainer .subtext {
    font-size: 10px;
  }
  .header .storeButtons {
    gap: 6px;
  }
  .header .storeButtons img {
    width: 72px;
    height: 24px;
  }
}

.hero {
  background-image: url("/assets/img/hero-background.svg");
  background-size: cover;
  background-position: center;
  padding: 140px 60px 0px;
  text-align: center;
  color: #111;
}
.hero .heroContainer {
  display: flex;
  flex-direction: column;
}
.hero .heroContainer h1 {
  color: #000;
  text-align: center;
  font-size: 66px;
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.32px;
}
.hero .heroContainer .textSpan {
  color: #444;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  max-width: 700px;
  padding-top: 24px;
  margin: auto;
}
.hero .heroContainer .trustIndicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 2rem;
}
.hero .heroContainer .trustIndicators .trustText {
  color: #3b3b3b;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 73%;
  letter-spacing: -0.32px;
  display: flex;
  align-items: center;
}
.hero .heroContainer .trustIndicators .trustText img {
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.hero .heroContainer .apps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.hero .heroContainer .apps .appBox {
  text-align: center;
  position: relative;
}
.hero .heroContainer .apps .appBox img {
  height: auto;
  max-width: 100%;
}

.top-ctabtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.employee-label {
  background-color: #444;
}

@media (max-width: 960px) {
  .hero {
    padding: 90px 16px 0px;
  }
  .hero .heroContainer h1 {
    font-size: 22px;
    line-height: 25px;
  }
  .hero .heroContainer .textSpan {
    font-size: 16px;
    padding-top: 8px;
  }
  .hero .heroContainer .trustIndicators {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .hero .heroContainer .trustIndicators .trustText {
    font-size: 16px;
    font-weight: 500;
  }
  .top-ctabtn {
    padding-top: 12px;
  }
}
.appFeatures {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}
.appFeatures .container {
  max-width: 1200px;
  margin: 0 auto;
}
.appFeatures .featureText {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-top: 20px;
}
.appFeatures .appFeatur {
  color: #404040;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  margin-top: 10px;
}
.appFeatures .featuresGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 30px;
}
.appFeatures .featuresGrid .featureItem {
  max-width: 374px;
  text-align: center;
  padding: 20px;
}
.appFeatures .featuresGrid .featureItem img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 16px;
}
.appFeatures .featuresGrid .featureItem h3 {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 6px;
}
.appFeatures .featuresGrid .featureItem p {
  color: #404040;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
}
@media (max-width: 960px) {
  .appFeatures {
    padding: 0px 16px;
  }
  .appFeatures .featureText {
    font-size: 24px;
    margin-top: 20px;
  }
  .appFeatures .appFeatur {
    font-size: 14px;
    line-height: 14px;
    margin-top: 4px;
  }
  .appFeatures .featuresGrid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
  }
  .appFeatures .featuresGrid .featureItem {
    padding: 6px;
  }
  .appFeatures .featuresGrid .featureItem img {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
  }
  .appFeatures .featuresGrid .featureItem h3 {
    font-size: 14px;
    line-height: 13px;
  }
  .appFeatures .featuresGrid .featureItem p {
    font-size: 12px;
    line-height: 13px;
  }
}

.comparisonWrapper {
  text-align: center;
  padding: 20px;
  background-color: #fff;
}

.title {
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  color: #000;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 26px;
  font-weight: 400;
  color: #404040;
  margin-bottom: 30px;
}

.comparisonBox {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid #e6e6e6;
}

.comparItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparInfo {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.compar0Info {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.appCardInfo {
  max-width: 240px;
  text-align: center;
}
.appCardInfo h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 5px;
  color: #000;
}
.appCardInfo p {
  font-size: 12px;
  font-weight: 600;
  color: #646464;
}

.content0Item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.featureList {
  list-style: none;
  padding: 0;
  text-align: left;
}
.featureList li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.featureList li:last-child {
  border-bottom: none;
}
.featureList li span {
  font-size: 22px;
  font-weight: 700;
  color: #404040;
  letter-spacing: -0.32px;
}
.featureList li .stars {
  color: #f4a300;
  font-size: 18px;
  text-align: right;
}

.leftFeatureList li span {
  text-align: right;
}

.rightFeatureList li .stars {
  text-align: left;
}

.appCard {
  max-width: 240px;
}
.appCard img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.divider {
  width: 1px;
  background-color: #e6e6e6;
  height: 100%;
}

/* Responsive */
@media (max-width: 960px) {
  .comparisonWrapper {
    padding: 30px 16px 0px;
  }
  .title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .comparisonBox {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    border: none;
  }
  .content0Item {
    gap: 20px;
  }
  .comparInfo {
    justify-content: center;
  }
  .compar0Info {
    justify-content: center;
  }
  .divider {
    height: 1px;
    width: 100%;
    background-color: #ffc2ac;
  }
  .appCard img {
    width: 182px;
    height: 368px;
    border-radius: 30px;
  }
  .featureList li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .featureList li span {
    font-size: 16px;
  }
  .featureList li .stars {
    font-size: 14px;
  }
  .appCardInfo h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .appCardInfo p {
    font-size: 14px;
    font-weight: 400;
  }
}
.heroWrapper {
  background-image: url("/assets/img/bottomimag.svg");
  background-size: cover;
  background-position: center;
  padding: 20px;
}

.tabcontainer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

.left {
  flex: 1;
}

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

.right {
  flex: 1 1 500px;
  padding: 20px;
  text-align: left;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.tab_item {
  display: none;
}

.tab_item:first-child {
  display: block;
}

.tabItem {
  color: #404040;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.32px;
  cursor: pointer;
  position: relative;
}
.tabItem.active {
  color: #f15a29;
}
.tabItem.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 100%;
  height: 2px;
  background-color: #f15a29;
}

.tabtitle {
  color: #000;
  font-size: 44px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 10px;
  text-align: left;
}

.subtitle {
  color: #404040;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 40px;
}

.cta {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-radius: 12px;
  background: linear-gradient(83deg, #f25922 47.2%, #ffb9a0 111.42%);
  box-shadow: -8px 8px 28px rgba(0, 0, 0, 0.06);
  border: none;
  transition: background 0.3s;
}
.cta:hover {
  background-color: #d94d22;
}
.cta .imaright {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 960px) {
  .heroWrapper {
    padding: 30px 16px;
  }
  .tabcontainer {
    display: block;
  }
  .left {
    display: none;
  }
  .tabs {
    gap: 16px;
    margin-bottom: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .tabItem {
    font-size: 18px;
    white-space: nowrap;
  }
  .tabtitle {
    font-size: 24px;
    text-align: left;
  }
  .subtitle {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 14px;
  }
  .cta {
    font-size: 18px;
    padding: 8px 14px;
  }
  .right {
    padding: 0px;
    text-align: left;
  }
}
.howItWorks {
  padding: 20px;
  text-align: center;
}

.howittitle {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
}

.subtitle {
  font-size: 26px;
  margin-bottom: 20px;
  color: #404040;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.step {
  width: 340px;
  text-align: center;
}

.iconWrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 30px;
  border: 2px dashed #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepNumber {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 28px;
  height: 28px;
  background: #ececec;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 80px rgba(167, 167, 167, 0.8);
}

.icon {
  width: 80px;
  height: 80px;
}

.stepTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #404040;
}

.stepDescription {
  font-size: 18px;
  color: #404040;
}

.arrowWrapper {
  position: absolute;
  left: 466px;
  top: 25%;
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrowWra {
  position: absolute;
  right: 465px;
  top: 20%;
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrowImage {
  width: 170px;
  height: auto;
}

/* Responsive */
@media (max-width: 960px) {
  .step {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contant-stap {
    width: 61%;
  }
  .howittitle {
    font-size: 24px;
  }
  .title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .steps {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
  }
  .arrowWrapper,
  .arrowWra,
  .arrowImage {
    display: none;
  }
  .iconWrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
  }
  .icon {
    width: 50px;
    height: 50px;
  }
  .stepNumber {
    top: -20px;
    left: -20px;
    font-size: 16px;
  }
  .stepTitle {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .stepDescription {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.pricing-container {
  text-align: center;
  padding: 20px;
}
.pricing-container .pricing-title {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
  margin-bottom: 10px;
}
.pricing-container .pricing-subtitle {
  color: #404040;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.pricing-container .plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.pricing-container .plans .plan-box {
  background: #fff;
  border: 1px solid #c2c2c2;
  border-radius: 16px;
  width: 380px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.3s;
}
.pricing-container .plans .plan-box:hover {
  transform: translateY(-5px);
}
.pricing-container .plans .plan-box.popular {
  border-color: #ff9873;
  box-shadow: 0px 3px 26px rgba(242, 88, 34, 0.2);
}
.pricing-container .plans .plan-box.popular .badge {
  position: absolute;
  top: 21px;
  right: 24px;
  background: rgba(53, 215, 156, 0.2);
  color: #12c081;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
}
.pricing-container .plans .plan-box .plan-title {
  color: #12c081;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 16px;
}
.pricing-container .plans .plan-box .plan-subtitle {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.pricing-container .plans .plan-box .price {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 24px;
}
.pricing-container .plans .plan-box .features {
  list-style: none;
  padding: 0;
  text-align: left;
  color: #000;
  font-size: 18px;
  margin-bottom: 25px;
}
.pricing-container .plans .plan-box .features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.pricing-container .plans .plan-box .features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: url("/assets/img/Check.svg") no-repeat center/contain;
}
.pricing-container .plans .plan-box .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 35px;
  width: 100%;
  background: #f25822;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: auto;
  transition: background-color 0.3s;
}
.pricing-container .plans .plan-box .btn:hover {
  background-color: #d94e1b;
}

@media (max-width: 960px) {
  .pricing-container {
    padding: 10px 16px 30px;
  }
  .pricing-container .pricing-title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .pricing-container .pricing-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .pricing-container .plans {
    gap: 16px;
  }
  .pricing-container .plans .plan-box {
    width: 100%;
    padding: 16px;
  }
  .pricing-container .plans .plan-box .plan-title,
  .pricing-container .plans .plan-box .plan-subtitle {
    margin-bottom: 10px;
  }
  .pricing-container .plans .plan-box .price {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .pricing-container .plans .plan-box .features li {
    font-size: 16px;
  }
  .pricing-container .plans .plan-box .features li::before {
    width: 23px;
    height: 23px;
  }
  .pricing-container .plans .plan-box .features li:last-child {
    margin-bottom: 0;
  }
  .pricing-container .plans .plan-box .btn {
    padding: 12px 35px;
  }
  .pricing-container .plans .plan-box .badge {
    top: 14px;
    right: 16px;
    padding: 6px 10px;
    font-size: 12px;
  }
}
.slider-wrapper {
  text-align: center;
  padding: 20px;
}
.slider-wrapper .heading {
  color: #000;
  font-size: 40px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 10px;
  letter-spacing: -0.32px;
}
.slider-wrapper .subheading {
  color: #404040;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: -0.32px;
}
.slider-wrapper .slider {
  max-width: 900px;
  margin: 0 auto;
}
.slider-wrapper .slider .card {
  text-align: center;
  padding: 10px;
}
.slider-wrapper .slider .card .phone-img {
  width: 100%;
  max-width: 205px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.slider-wrapper .slider .card .label {
  font-size: 22px;
  font-weight: 600;
  color: #404040;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slider-wrapper .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  font-size: 48px;
  color: #9d9d9d;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  padding: 30px;
  border-radius: 80px;
  border: 1px dashed #939393;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.3s ease;
}
.slider-wrapper .arrow.left {
  left: -155px;
}
.slider-wrapper .arrow.right {
  right: -155px;
}
.slider-wrapper .arrow.clicked {
  color: #f15a29;
}
.slider-wrapper .arrow span {
  font-size: 65px;
  line-height: 1;
  display: inline-block;
}

@media (max-width: 768px) {
  .slider-wrapper .heading {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .slider-wrapper .subheading {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .slider-wrapper .slider {
    max-width: 300px;
  }
  .slider-wrapper .label {
    font-size: 17px;
    font-weight: 500;
  }
  .slider-wrapper .arrow {
    top: 40%;
    font-size: 18px;
    width: 30px;
    height: 30px;
    padding: 0;
  }
  .slider-wrapper .arrow span {
    font-size: 24px;
  }
  .slider-wrapper .arrow.left {
    left: -32px;
  }
  .slider-wrapper .arrow.right {
    right: -32px;
  }
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.faq-title {
  font-size: 40px;
  color: #000;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 26px;
  color: #404040;
  margin-bottom: 30px;
}

.faq-item {
  background-color: #f7f7f8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  border: none;
  text-align: left;
  transition: background-color 0.3s;
}
.faq-item .faq-header {
  font-size: 16px;
  font-weight: 500;
  color: #151515;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item .faq-header span {
  font-size: 22px;
  transition: transform 0.3s;
}
.faq-item .faq-header.active span {
  transform: rotate(45deg);
}
.faq-item .faq-content {
  font-size: 16px;
  color: #747474;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s;
  line-height: 24px;
  letter-spacing: -0.384px;
}
.faq-item .faq-content.show {
  max-height: 300px;
  margin-top: 20px;
}

@media (max-width: 960px) {
  .faq-container {
    padding: 0 16px 30px;
  }
  .faq-title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .faq-content {
    font-size: 14px;
  }
}
.footer {
  background: #fdeee0;
  padding: 20px;
  font-family: sans-serif;
  color: #000;
}
.footer .footer-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .left-footer {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}
.footer .left-footer .logo {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer .left-footer .logo img {
  width: 200px;
}
.footer .left-footer .description {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer .left-footer .more {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  margin-bottom: 20px;
  color: #000;
}
.footer .left-footer .more .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
}
.footer .left-footer .socialIcons {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}
.footer .left-footer .socialIcons a {
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s;
}
.footer .left-footer .socialIcons a:hover {
  background: #ddd;
}
.footer .left-footer .copyright {
  font-size: 12px;
  line-height: 140%;
  margin-top: 20px;
}
.footer .right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .right .navLinks {
  display: flex;
  gap: 20px;
  font-size: 16px;
}
.footer .right .navLinks a {
  color: #000;
  text-decoration: none;
}
.footer .right .navLinks a:hover {
  text-decoration: underline;
}
.footer .right .contactBlock .heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer .right .contactBlock .headingSmall {
  font-size: 14px;
  line-height: 160%;
}
.footer .right .languages .langHeading {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
  text-align: right;
}
.footer .right .languages .langList {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.footer .right .languages .langList a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.footer .right .languages .langList a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer {
    padding: 16px;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .footer .left-footer,
  .footer .right {
    width: 100%;
    margin: 0;
  }
  .footer .logo {
    margin-bottom: 8px !important;
  }
  .footer .logo img {
    width: 130px !important;
  }
  .footer .right {
    gap: 8px;
  }
  .footer .socialIcons {
    margin: 0 0 17px !important;
  }
  .footer .contactBlock {
    margin-bottom: 8px;
  }
  .footer .description {
    margin-bottom: 8px !important;
  }
  .footer .footer-container {
    gap: 20px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-popup {
  background: #fff;
  border-radius: 12px;
  max-width: 1100px;
  width: 95%;
  padding: 56px;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 12px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.modal-left {
  flex: 1;
  min-width: 280px;
}

.modal-left h2 {
  font-size: 55px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}

.highlight {
  background: linear-gradient(180deg, #f25822 50%, #8c3314 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: block;
}

.modal-right {
  flex: 1;
  min-width: 450px;
  border-left: 1px solid #f25822;
  padding-left: 40px;
}

.modal-right h3 {
  color: #132238;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hi {
  color: #011f4b;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
form input,
form textarea {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e6e8eb;
  background: #fff;
  font-size: 18px;
  font-weight: 500;
  color: rgba(50, 25, 54, 0.32);
  resize: none;
  outline: none;
  transition: border-color 0.2s ease;
}
form input:focus,
form textarea:focus {
  border-color: #f15a29;
}

.note {
  font-size: 14px;
  font-weight: 600;
  color: rgba(63, 63, 63, 0.77);
}

.interested-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 36px;
  background: linear-gradient(83deg, #f25922 47.2%, #ffb9a0 111.42%);
  color: white;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.interested-btn .check img {
  width: 20px;
  height: 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    gap: 8px;
  }
  .modal-popup {
    padding: 16px;
  }
  .modal-left h2 {
    font-size: 16px;
    line-height: 19px;
  }
  .modal-right h3 {
    font-size: 18px;
  }
  .modal-right {
    border-left: none;
    padding-left: 0;
    min-width: 100%;
  }
  .interested-btn {
    font-size: 20px;
    padding: 14px 24px;
  }
  input,
  textarea {
    font-size: 14px !important;
    padding: 8px 10px !important;
  }
}
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  animation: fadeIn 0.3s ease forwards;
  padding: 16px;
}

.success-box {
  padding: 56px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 50.8px rgba(239, 119, 0, 0.1);
  max-width: 700px;
  border: 1px solid #eee;
  animation: slideUp 0.35s ease forwards;
}
.success-box .success-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.success-box .success-image {
  width: 159px;
  height: 162px;
}
.success-box .thankyou-text {
  font-size: 57px;
  font-weight: 700;
  background: linear-gradient(180deg, #f25822 0%, #ff7341 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
}
.success-box .happy-image {
  width: 42px;
  height: 42px;
  margin-top: 30px;
}
.success-box .success-message {
  margin-top: 16px;
  color: #404040;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .success-box {
    padding: 16px;
  }
  .success-box .success-close {
    top: 2px;
    right: 10px;
    font-size: 16px;
  }
  .success-box .success-image {
    width: 78px;
    height: 80px;
  }
  .success-box .thankyou-text {
    font-size: 20px;
    margin-top: 8px;
  }
  .success-box .happy-image {
    width: 30px;
    height: 30px;
    margin-top: 8px;
  }
  .success-box .success-message {
    font-size: 16px;
    margin-top: 4px;
  }
}/*# sourceMappingURL=style.css.map */