﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  align-items: center;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}


header {
  padding: 25px 0px;
  width: 100%;
  margin: auto;
  background-image: url(../photos/background_for_header.svg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  min-height: 620px;
  height: min(100svh, 860px);
}
nav {
display: flex;
max-width: 1200px;
margin: auto;
align-items: center;
justify-content: center;
gap: 250px;
position: relative;
z-index: 120;
}
.element1 img{
    width: 100px;
}
.element2 ul{
    display: flex;
    list-style: none;
    gap: 30px;
}
.element2 ul li{
    cursor: pointer;
}
.service {
    position: relative;
}
.service-btn{
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.service .arrow{
    display: inline-block;
    transition: 0.2s ease;
}
.service .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  list-style: none;
  background: #5EB083;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  z-index: 240;
}
.element2 ul li:hover{
    color: #5EB083;
}
.service .dropdown li {
  color: #fff;
  white-space: nowrap;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service .dropdown li:hover {
  background: #ffffff;
  color: #5EB083;
}
.service.open .dropdown {
  display: flex;
}
.service.open .arrow {
  transform: rotate(180deg);
}
.element3 button{
    background: #5EB083;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}
.element4{
  display: none;
}
.burger-btn{
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.burger-btn img{
  width: 30px;
  height: 30px;
  display: block;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100svh;
  background: #ffffff;
  z-index: 1200;
  padding: 28px 38px 40px;
  display: none;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  color: #111111;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.mobile-links a,
.mobile-services-btn {
  text-decoration: none;
  color: #1f2433;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.mobile-services {
  width: 100%;
}

.mobile-services-btn {
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #5EB083;
  cursor: pointer;
}

.mobile-chevron {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-right: 2px solid #5EB083;
  border-bottom: 2px solid #5EB083;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.mobile-submenu {
  list-style: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.mobile-submenu a {
  color: #8e95a6;
  font-size: 18px;
  font-weight: 400;
}

.mobile-services.open .mobile-submenu {
  margin-top: 18px;
  max-height: 260px;
  opacity: 1;
}

.mobile-services.open .mobile-chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 36, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.containerINfo{
    padding: 25px 0px;
    max-width: 1200px;
    margin-top: 70px !important;
    margin: auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}
.itm1{
    display: block;
    width: 50% !important;
}
.itm1 h1{
    font-size: 70px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
}
.des{
    font-size: 28px;
    color: #5B6574;
    line-height: 38px;
    margin-bottom: 10px;
}
.itm1 h1 span {
    color: #5EB083;
}
.containerBtn{
    display: flex;
    gap: 10px;
    padding: 30px 0px;
}
.containerBtn p{
    font-size: 15px;
    line-height: 40px;
    color: #5B6574;
}
.containerBtn button{
    background-color: #FFBB8A;
    color: white;
    cursor: pointer;
    border-radius: 30px;
    border: none;
    padding: 25px 40px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.containerBtn button:hover{
    background-color: transparent;
    border: 2px solid #FFBB8A !important;
    color: #FFBB8A;
    cursor: pointer;
    border-radius: 30px;
    padding: 25px 40px;
}
.itm2{
    width: 40%;

}

main{
    width: 100%;
    margin: auto;
}
.logoScroll{
    max-width: 1050px;
    margin: auto;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-gutter: stable both-edges;
    padding: 6px 12px 14px;
    scrollbar-width: none;
}

.logoScroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.logoScroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.logoScroll::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 999px;
  border: 0;
}

.logoScroll img {
  flex: 0 0 auto;
}

.immigration-section {
  width: 100%;
  margin-top: 24px;
  padding: 70px 0 90px;
  /* background-color: #06080d; */
  background-image: url(../photos/secondSectionMain.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.immigration-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.immigration-wrap h2 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 500;
  color: #000000;
  margin-bottom: 18px;
}

.immigration-lead {
  max-width: 760px;
  font-size: 30px;
  line-height: 1.35;
  color: #5b6574;
  margin-bottom: 56px;
}

.immigration-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 520px);
  align-items: center;
  column-gap: 140px;
  margin-bottom: 120px;
}

.immigration-content h3 {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #000000;
  margin-bottom: 22px;
}

.immigration-content p {
  font-size: 41px;
  line-height: 1.42;
  color: #5b6574;
}

.immigration-row.reverse {
  grid-template-columns: minmax(280px, 520px) minmax(220px, 1fr);
}

.immigration-card {
  border-radius: 26px;
  overflow: hidden;
}

.immigration-card img {
  width: 100%;
  height: auto;
  display: block;
}

.immigration-row:last-child {
  margin-bottom: 0;
}

.relocated-section {
  padding: 88px 0 96px;
  background: transparent;
}

.relocated-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.relocated-wrap h2 {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 500;
  color: #252a3e;
}

.relocated-lead {
  margin-top: 34px;
  text-align: center;
  font-size: 32px;
  line-height: 1.34;
  color: #5b6574;
}

.relocated-slider {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 84px 1fr 84px;
  align-items: center;
  column-gap: 24px;
}

.slider-arrow {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: none;
  background: #f3f4f6;
  color: #70788f;
  font-size: 38px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-arrow:hover {
  background: #5EB083;
  color: #ffffff;
  transform: scale(1.05);
}

.slider-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.relocated-viewport {
  overflow: hidden;
}

.relocated-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.relocated-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.relocated-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(37, 42, 62, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.relocated-card p {
  margin-top: 18px;
  text-align: center;
  font-size: 38px;
  line-height: 1.25;
  color: #8e95a6;
  transition: color 0.25s ease;
}

.relocated-card:hover p {
  color: #5EB083;
}

.relocated-card:hover img {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 14px 28px rgba(37, 42, 62, 0.14);
  filter: saturate(1.05);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(1px);
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.start-case-section {
  background: #ffffff;
  padding: 88px 0 96px;
  color: #252a3e;
}

.start-case-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.start-case-wrap h2 {
  max-width: 760px;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 500;
  color: #252a3e;
}

.start-case-lead {
  max-width: 960px;
  margin-top: 28px;
  font-size: 28px;
  line-height: 1.35;
  color: #a8b2c4;
}

.route-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.route-card {
  background: #f2f2f2;
  border-radius: 20px;
  padding: 44px 44px 40px;
  color: #525d70;
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.route-card-outline {
  border: 1px solid #8790a0;
}

.route-card h3 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  color: #0e121c;
}

.route-points {
  margin-top: 24px;
  list-style: none;
  counter-reset: route-steps;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.route-points li {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  align-items: start;
  font-size: 33px;
  line-height: 1.45;
}

.route-points li::before {
  counter-increment: route-steps;
  content: counter(route-steps);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f2b27f;
  color: #ffffff;
  font-size: 21px;
  line-height: 34px;
  text-align: center;
  font-weight: 600;
}

.route-note {
  margin-top: 22px;
  font-size: 28px;
  line-height: 1.45;
  color: #5a6578;
}

.route-btn {
  margin-top: auto;
  min-width: 184px;
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  background: #5EB083;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.route-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.start-case-ring {
  position: absolute;
  width: 238px;
  height: 238px;
  border-radius: 999px;
  border: 26px solid #F5F5F5;
  left: -86px;
  bottom: -84px;
  pointer-events: none;
  z-index: 1;
}

.platform-section {
  background: transparent;
  padding: 92px 0 94px;
}

.platform-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.platform-wrap h2 {
  max-width: 620px;
  color: #252a3e;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 500;
}

.platform-wrap h3 {
  margin-top: 28px;
  color: #252a3e;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
}

.platform-lead {
  margin-top: 10px;
  color: #535d72;
  font-size: 28px;
  line-height: 1.35;
}

.platform-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-tags span {
  background: #dbe2ec;
  color: #5e6879;
  font-size: 30px;
  border-radius: 999px;
  padding: 12px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

@media (hover: hover) {
  .platform-tags span:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #252a3e;
    box-shadow: 0 10px 20px rgba(37, 42, 62, 0.14);
  }
}

.platform-tags span:active {
  transform: translateY(0);
  box-shadow: none;
}

.platform-demo {
  margin-top: 44px;
  background: #f2f2f2;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 296px 1fr;
  min-height: 640px;
  align-items: stretch;
}

.platform-sidebar {
  background: #32333d;
  color: #8a91a4;
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.platform-logo {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.platform-menu {
  margin-top: 34px;
  margin-bottom: 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.platform-menu li {
  width: 100%;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  column-gap: 12px;
  align-items: center;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 26px;
  cursor: pointer;
}

.platform-menu li img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(62%) sepia(10%) saturate(338%) hue-rotate(191deg) brightness(89%) contrast(86%);
}

.platform-menu li.active {
  background: #ffffff;
  color: #111111;
}

.platform-menu li.active img,
.platform-menu li:hover img {
  filter: brightness(0) saturate(100%);
}

.platform-menu li:hover {
  background: #ffffff;
  color: #111111;
}

.platform-menu li strong {
  font-size: 24px;
  font-weight: 500;
}

.platform-sidebar-foot {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.platform-notice,
.platform-user {
  background: #272a38;
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 16px 1fr auto auto;
  column-gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.platform-notice p,
.platform-user p {
  color: #e7ecf7;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-notice small,
.platform-user small {
  color: #8f96ab;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-notice em {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #5EB083;
  color: #ffffff;
  font-style: normal;
  display: inline-grid;
  place-items: center;
  font-size: 16px;
}

.platform-notice span {
  color: #ffffff;
  font-size: 20px;
}

.platform-user {
  grid-template-columns: 16px 1fr 16px;
}

.platform-user img:last-child {
  width: 14px;
  height: 14px;
}

.platform-main {
  padding: 44px 48px 34px;
}

.platform-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.platform-main h4 {
  font-size: 48px;
  line-height: 1.15;
  color: #323541;
  font-weight: 500;
}

.platform-top-notice {
  border: none;
  border-radius: 14px;
  padding: 7px 12px;
  background: #2c2f3b;
  color: #f6f7fb;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.platform-top-notice img {
  width: 14px;
  height: 14px;
}

.platform-top-notice em {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #5EB083;
  color: #ffffff;
  font-style: normal;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
}

.platform-top-notice strong {
  font-size: 16px;
  font-weight: 500;
}

.platform-main > p {
  margin-top: 18px;
  color: #586377;
  font-size: 36px;
  line-height: 1.28;
}

.platform-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
}

.platform-card {
  border-radius: 20px;
  padding: 34px 28px 28px;
  min-height: 318px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-blue {
  background: #c5cfde;
}

.platform-card.card-blue img {
  align-self: center;
}

.platform-card.card-peach img,
.platform-card.card-mint img {
  align-self: center;
}

.card-peach {
  background: #e8d7c6;
}

.card-mint {
  background: #b8d7c8;
}

.platform-card img {
  width: 40px;
  height: 40px;
}

.platform-card h5 {
  margin-top: 20px;
  color: #323541;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  min-height: 72px;
}

.platform-card p {
  margin-top: 10px;
  margin-bottom: 18px;
  color: #586377;
  font-size: 22px;
  line-height: 1.35;
  min-height: 90px;
}

.platform-card.card-blue h5,
.platform-card.card-blue p {
  text-align: left;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.platform-card.card-blue h5 {
  font-size: 30px;
}

.platform-card.card-blue p {
  font-size: 22px;
}

.platform-card button {
  margin-top: auto;
  border: none;
  border-radius: 999px;
  width: 190px;
  height: 52px;
  background: #2f3342;
  color: #ffffff;
  font-size: 23px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.card-blue button {
  background: #5EB083;
}

.platform-card.card-mint button {
  font-size: 19px;
}

.testimonials-section {
  background: transparent;
  padding: 72px 0 96px;
}

.faq-section {
  background: transparent;
  padding: 68px 0 100px;
}

.faq-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-wrap h2 {
  color: #252a3e;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
}

.faq-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #f5f5f5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  color: #323541;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}

.faq-icon {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-right: 2px solid #647089;
  border-bottom: 2px solid #647089;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  opacity: 0;
  padding: 0 28px;
}

.faq-answer p {
  color: #4f5d74;
  font-size: 17px;
  line-height: 1.55;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-item.open {
  border-color: #d8e6dc;
  box-shadow: 0 10px 24px rgba(37, 42, 62, 0.08);
}

.faq-item.open .faq-question span:first-child {
  color: #5EB083;
}

.faq-item.open .faq-icon {
  border-color: #5EB083;
  transform: rotate(-135deg) translateY(-1px);
}

.faq-item.open .faq-answer {
  max-height: 340px;
  opacity: 1;
  padding: 0 28px 24px;
}

.site-footer {
  position: relative;
  margin: 0 auto 24px;
  max-width: 1440px;
  padding: 0 16px;
}

.footer-wrap {
  background: #2f353d;
  border-radius: 22px;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-wrap h4 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  align-self: flex-start;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(240px, 300px);
  align-items: start;
  gap: 18px;
}

.footer-brand img {
  width: 168px;
  height: auto;
}

.footer-brand::after {
  display: none;
}

.footer-brand p {
  color: #8f98ab;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 1px solid rgba(179, 188, 200, 0.35);
  max-width: 300px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-menu,
.footer-address,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}

.footer-menu {
  justify-self: start;
}

.footer-menu a,
.footer-address p {
  color: #8f98ab;
  font-size: 18px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu a {
  width: fit-content;
}

.footer-menu a .footer-chevron {
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-left: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.footer-menu a.active {
  color: #5EB083;
}

.footer-menu a:hover {
  color: #5EB083;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #262b32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social-links a img {
  width: 16px;
  height: 16px;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
  background: #1f242b;
}

.footer-top-btn {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #20252c;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 42, 62, 0.22);
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-top-btn span {
  width: 10px;
  height: 10px;
  border-left: 2px solid #5EB083;
  border-top: 2px solid #5EB083;
  transform: rotate(45deg);
}

.footer-top-btn:hover {
  transform: translateY(calc(-50% - 2px));
  filter: brightness(1.05);
}

.testimonials-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eligibility-cta {
  text-align: center;
}

.eligibility-cta h2 {
  color: #252a3e;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
}

.eligibility-cta p {
  margin-top: 16px;
  color: #556075;
  font-size: 21px;
  line-height: 1.35;
}

.eligibility-cta button {
  margin-top: 28px;
  border: none;
  border-radius: 999px;
  padding: 18px 40px;
  background: #f2b27f;
  color: #ffffff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.eligibility-cta button span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: inline-grid;
  place-items: center;
  font-size: 12px;
}

.testimonials-wrap > h3 {
  margin-top: 86px;
  color: #252a3e;
  font-size: 62px;
  line-height: 1.1;
  font-weight: 500;
}

.testimonial-slider {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  column-gap: 30px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-arrow {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #586377;
  font-size: 38px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.testimonial-arrow.next {
  background: #5EB083;
  color: #ffffff;
}

.testimonial-card {
  flex: 0 0 100%;
  border-radius: 22px;
  background: #efe9e4;
  display: grid;
  grid-template-columns: 312px 1fr;
  gap: 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -60px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  border: 66px solid rgba(225, 214, 203, 0.55);
}

.testimonial-card::after {
  right: -260px;
  top: 120px;
  width: 420px;
  height: 420px;
}

.testimonial-person {
  background: #f6f6f6;
  border-radius: 18px;
  padding: 34px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  height: calc(100% - 24px);
  align-self: center;
}

.testimonial-person img {
  width: 160px;
  height: 160px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-person h4 {
  margin-top: 18px;
  color: #2f3443;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 500;
}

.testimonial-tags {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.testimonial-tags span {
  background: #dde3ec;
  color: #596377;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding: 18px 18px 22px 0;
}

.testimonial-content .testimonial-quote {
  color: #323541;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 600;
}

.testimonial-content p {
  margin-top: 24px;
  color: #586377;
  font-size: 21px;
  line-height: 1.5;
}

.testimonial-content::after {
  content: "”";
  position: absolute;
  right: 4px;
  bottom: -8px;
  color: rgba(207, 193, 178, 0.45);
  font-size: 110px;
  line-height: 1;
}

@media (hover: hover) {
  .element3 button:hover,
  .containerBtn button:hover,
  .route-btn:hover,
  .platform-top-notice:hover,
  .platform-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 42, 62, 0.18);
    filter: brightness(0.98);
  }

  .slider-arrow:hover {
    box-shadow: 0 10px 22px rgba(37, 42, 62, 0.2);
  }

  .eligibility-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(242, 178, 127, 0.35);
    filter: brightness(0.98);
  }

  .testimonial-arrow:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 24px rgba(37, 42, 62, 0.24);
  }

  .testimonial-tags span:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #2f3443;
    box-shadow: 0 8px 18px rgba(37, 42, 62, 0.14);
  }
}

.element3 button:active,
.containerBtn button:active,
.route-btn:active,
.platform-top-notice:active,
.platform-card button:active,
.slider-arrow:active {
  transform: translateY(0);
  box-shadow: none;
}

@media (max-width: 900px) {

    body{
        background-color: #FFBB8A !important;
    }
  header {
    background-color: white !important  ;
    padding: 0px 0px;
    background-image: url(../photos/secondBgforheader.svg);
    width: 100%;
    min-height: 540px;
    height: auto;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin: auto;
    background-position: top left;
  }

  nav {
    max-width: 100%;
    padding: 0 14px;
    gap: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .element2 {
    display: none;
  }

  .element1 img {
    width: 120px;
  }

  .element3 {
    justify-self: center;
  }

  .element3 button {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 28px;
  }

  .element4 {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    display: block;
  }

  .containerINfo{
    max-width: 100%;
    background-color: #FFBB8A;
    display: block;
    margin-top: clamp(370px, 28vh, 280px) !important;
  }

  .itm1{
    width: 100% !important;
  }

  .itm1 h1{
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .des{
    font-size: 24px;
    line-height: 1.45;
    margin-bottom: 8px;
  }

  .containerBtn{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0 0;
  }

  .containerBtn button{
    background-color: #fff;
    color: #E8B792;
    /* padding: 14px 24px; */
    margin: 0 auto;
    border: none;
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  }

  .containerBtn button:hover{
    border: 2px solid #fff !important;
    color: #fff;
    background-color: transparent;
  }

  .containerBtn p{
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    width: 100%;
  }

  .itm2{
    display: none;
  }

  main{
    padding: 0 0 26px;
    margin-top: 0;
  }

  .logoScroll{
    justify-content: flex-start;
    gap: 12px;
    padding: 0 14px 12px;
    scrollbar-width: auto;
    scrollbar-color: #5EB083 #EEF3F0;
  }

  .logoScroll::-webkit-scrollbar {
    height: 8px;
    width: auto;
  }

  .logoScroll::-webkit-scrollbar-track {
    background: #EEF3F0;
  }

  .logoScroll::-webkit-scrollbar-thumb {
    background: #5EB083;
    border: 2px solid #EEF3F0;
  }

  .immigration-section {
    margin-top: 0;
    padding: 40px 0 52px;
    background-color: #FFBB8A;
    background-image: none;
  }

  .immigration-wrap {
    padding: 0 20px;
  }

  .immigration-wrap h2 {
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 14px;
    color: #202538;
  }

  .immigration-lead {
    font-size: 24px;
    line-height: 1.45;
    color: #4f566b;
    margin-bottom: 30px;
  }

  .immigration-row,
  .immigration-row.reverse {
    grid-template-columns: 1fr;
    row-gap: 14px;
    margin-bottom: 24px;
  }

  .immigration-content h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #202538;
  }

  .immigration-content p {
    font-size: 24px;
    line-height: 1.42;
    color: #4f566b;
  }

  .immigration-row.reverse .immigration-card {
    order: 2;
  }

  .immigration-row.reverse .immigration-content {
    order: 1;
  }

  .immigration-card {
    border-radius: 20px;
  }

  .relocated-section {
    background: #FFBB8A;
    padding: 42px 0 52px;
  }

  .relocated-wrap {
    padding: 0 16px;
  }

  .relocated-wrap h2 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.16;
    color: #202538;
  }

  .relocated-lead {
    margin-top: 16px;
    font-size: 22px;
    line-height: 1.4;
    color: #4f566b;
  }

  .relocated-slider {
    margin-top: 26px;
    grid-template-columns: 52px 1fr 52px;
    column-gap: 10px;
  }

  .slider-arrow {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .relocated-track {
    gap: 12px;
  }

  .relocated-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .relocated-card img {
    border-radius: 14px;
  }

  .relocated-card p {
    margin-top: 10px;
    font-size: 18px;
  }

  .start-case-section {
    background: #FFBB8A;
    padding: 56px 0 60px;
  }

  .start-case-wrap {
    padding: 0 16px;
  }

  .start-case-wrap h2 {
    max-width: 100%;
    font-size: 42px;
    line-height: 1.18;
  }

  .start-case-lead {
    margin-top: 18px;
    font-size: 23px;
    line-height: 1.45;
  }

  .route-grid {
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .route-card {
    min-height: auto;
    border-radius: 16px;
    padding: 28px 20px 24px;
  }

  .route-card h3 {
    font-size: 46px;
  }

  .route-points {
    margin-top: 16px;
    gap: 14px;
  }

  .route-points li {
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
    font-size: 21px;
  }

  .route-points li::before {
    width: 30px;
    height: 30px;
    font-size: 17px;
    line-height: 30px;
  }

  .route-note {
    margin-top: 16px;
    font-size: 17px;
  }

  .route-btn {
    margin-top: 22px;
    min-width: 158px;
    padding: 14px 24px;
    font-size: 24px;
  }

  .start-case-ring {
    width: 150px;
    height: 150px;
    border-width: 18px;
    left: -42px;
    bottom: -56px;
  }

  .platform-section {
    padding: 56px 0 62px;
  }

  .platform-wrap {
    padding: 0 16px;
  }

  .platform-wrap h2 {
    max-width: 100%;
    font-size: 36px;
  }

  .platform-wrap h3 {
    margin-top: 16px;
    font-size: 28px;
  }

  .platform-lead {
    margin-top: 8px;
    font-size: 20px;
  }

  .platform-tags {
    gap: 10px;
  }

  .platform-tags span {
    font-size: 16px;
    padding: 8px 16px;
  }

  .platform-demo {
    margin-top: 20px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .platform-sidebar {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .platform-logo {
    width: 94px;
  }

  .platform-menu {
    margin-top: 16px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .platform-menu li {
    font-size: 15px;
    padding: 10px 10px;
    grid-template-columns: 16px 1fr auto;
    min-height: 44px;
  }

  .platform-menu li strong {
    font-size: 14px;
  }

  .platform-notice p,
  .platform-user p {
    font-size: 14px;
  }

  .platform-notice small,
  .platform-user small {
    font-size: 12px;
  }

  .platform-notice em {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .platform-main {
    padding: 18px 16px 20px;
  }

  .platform-main-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .platform-main h4 {
    font-size: 34px;
  }

  .platform-top-notice {
    font-size: 14px;
    padding: 8px 12px;
  }

  .platform-top-notice em {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .platform-main > p {
    margin-top: 10px;
    font-size: 21px;
  }

  .platform-cards {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .platform-card {
    min-height: auto;
    border-radius: 14px;
    padding: 18px 16px;
    gap: 0;
    min-height: 240px;
  }

  .platform-card h5 {
    margin-top: 12px;
    font-size: 22px;
    min-height: auto;
  }

  .platform-card p {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    min-height: auto;
  }

  .platform-card button {
    margin-top: auto;
    width: 160px;
    height: 42px;
    font-size: 14px;
    padding: 0 12px;
  }

  .platform-card.card-mint button {
    font-size: 12px;
  }

  .testimonials-section {
    padding: 54px 0 62px;
  }

  .testimonials-wrap {
    padding: 0 16px;
  }

  .eligibility-cta h2 {
    font-size: 40px;
  }

  .eligibility-cta p {
    margin-top: 12px;
    font-size: 19px;
  }

  .eligibility-cta button {
    margin-top: 18px;
    padding: 14px 24px;
    font-size: 18px;
  }

  .eligibility-cta button span {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .testimonials-wrap > h3 {
    margin-top: 48px;
    font-size: 44px;
  }

  .testimonial-slider {
    margin-top: 16px;
    grid-template-columns: 1fr 1fr;
    row-gap: 14px;
    column-gap: 10px;
  }

  .testimonial-viewport {
    grid-column: 1 / -1;
  }

  .testimonial-track {
    gap: 14px;
  }

  .testimonial-arrow {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .testimonial-arrow.prev {
    order: 2;
    justify-self: start;
  }

  .testimonial-arrow.next {
    order: 3;
    justify-self: end;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
  }

  .testimonial-card::before,
  .testimonial-card::after {
    display: none;
  }

  .testimonial-person {
    padding: 20px 14px 14px;
    height: auto;
  }

  .testimonial-person img {
    width: 118px;
    height: 118px;
  }

  .testimonial-person h4 {
    margin-top: 12px;
    font-size: 32px;
  }

  .testimonial-tags {
    margin-top: 14px;
    gap: 8px;
  }

  .testimonial-tags span {
    font-size: 13px;
    padding: 7px 12px;
  }

  .testimonial-content {
    padding: 4px 2px 14px;
  }

  .testimonial-content .testimonial-quote {
    font-size: 20px;
  }

  .testimonial-content p {
    margin-top: 14px;
    font-size: 17px;
  }

  .testimonial-content::after {
    font-size: 72px;
    right: 0;
    bottom: -10px;
  }

  .faq-section {
    background: #FFBB8A;
    padding: 48px 0 62px;
  }

  .faq-wrap {
    padding: 0 16px;
  }

  .faq-wrap h2 {
    font-size: 44px;
  }

  .faq-list {
    margin-top: 16px;
    gap: 10px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    padding: 16px;
    gap: 12px;
  }

  .faq-question span:first-child {
    font-size: 18px;
  }

  .faq-icon {
    width: 10px;
    height: 10px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-item.open .faq-answer {
    max-height: 460px;
    padding: 0 16px 16px;
  }

  .site-footer {
    padding: 0 12px;
    margin-bottom: 14px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    padding: 24px 16px 20px;
    border-radius: 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .footer-brand::after {
    display: none;
  }

  .footer-brand img {
    width: 140px;
  }

  .footer-brand p {
    font-size: 14px;
    max-width: none;
    padding-left: 12px;
  }

  .footer-wrap h4 {
    font-size: 20px;
  }

  .footer-menu a,
  .footer-address p {
    font-size: 16px;
  }

  .footer-social-links a {
    width: 40px;
    height: 40px;
  }

  .footer-top-btn {
    right: 18px;
    top: auto;
    bottom: 14px;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .footer-top-btn:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    width: 100%;
    padding: 20px 32px 34px;
  }

  .mobile-close {
    width: 34px;
    height: 34px;
    font-size: 30px;
  }

  .mobile-links {
    margin-top: 28px;
    gap: 20px;
  }

  .mobile-links a,
  .mobile-services-btn {
    font-size: 20px;
  }

  .mobile-submenu a {
    font-size: 17px;
  }

  .start-case-wrap h2 {
    font-size: 34px;
  }

  .start-case-lead {
    font-size: 18px;
  }

  .route-card h3 {
    font-size: 36px;
  }

  .route-points li {
    font-size: 17px;
  }

  .route-btn {
    min-width: 146px;
    font-size: 20px;
  }

  .platform-wrap h2 {
    font-size: 30px;
  }

  .platform-wrap h3 {
    font-size: 24px;
  }

  .platform-lead {
    font-size: 16px;
  }

  .platform-main h4 {
    font-size: 30px;
  }

  .platform-main > p {
    font-size: 17px;
  }

  .eligibility-cta h2 {
    font-size: 32px;
  }

  .eligibility-cta p {
    font-size: 16px;
  }

  .eligibility-cta button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .testimonials-wrap > h3 {
    font-size: 34px;
  }

  .testimonial-person h4 {
    font-size: 28px;
  }

  .testimonial-content .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-content p {
    font-size: 15px;
  }

  .faq-wrap h2 {
    font-size: 36px;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px;
  }

  .footer-brand,
  .footer-social {
    grid-column: 1 / -1;
  }

  .footer-wrap h4 {
    font-size: 18px;
  }

  .footer-menu a,
  .footer-address p {
    font-size: 15px;
  }

  .footer-social-links {
    gap: 8px;
  }

  .footer-top-btn {
    width: 44px;
    height: 44px;
    right: 16px;
  }
}

@media (max-width: 600px) {
  .relocated-slider {
    grid-template-columns: 44px 1fr 44px;
    column-gap: 8px;
    align-items: center;
  }

  .relocated-viewport {
    overflow: hidden;
  }

  .slider-arrow {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    font-size: 20px;
    box-shadow: 0 6px 16px rgba(37, 42, 62, 0.16);
  }

  .relocated-card {
    flex: 0 0 100%;
  }
}
