:root {
  --star: #59bbb3;
  --text: #111827;
  --muted: #6b7280;
  --shadow: 0 40px 130px rgba(0, 0, 0, 0.07);
  --radius: 26px;
  --page-bg: #f3f5f7;
  --card-bg: #0f0f10;
  --text: #ffffff;
  --muted: #c7c9ce;
  --teal: #36cfc5;
  --teal-dark: #169e96;
  --footer: #111315;
  --footer-border: #e35747;
  --radius-xl: 28px;
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  max-width: 1920px;
  margin: 0 auto;
}
.pading {
  padding: 150px 0;
}
.none {
  display: none;
}

.hero-section {
  background: url("./images/banner.png") no-repeat center center/cover;
  padding-bottom: 35px;
}

.hero-section2 {
  background: url("./images/banner-2.png") no-repeat center center/cover;
  height: 1098px;
}
.our--services {
  padding: 150px;
}
.our--services h2 {
  font-size: 70px;
  font-weight: 700;
}
.our--services h2 span {
  color: #36cfc5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 90px;
  flex-wrap: wrap;
}

.logo img {
  width: auto;
  max-height: 100px;
}
.logo p {
  margin: 5px;
  font-size: 11px;
  font-weight: 600;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 65px;
  flex-wrap: wrap;
}
.links {
  list-style: none;
}
.nav-menu li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.nav-menu li a:hover {
  opacity: 0.8;
}

.content-wrapper {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 125px;
  padding: 0 50px;
  flex-wrap: wrap;
}
.left--content--hero {
  color: white;
  flex: 1 1 400px;
}

.right--mmiddle--img {
  flex: 1 1 400px;
  text-align: center;
}
.right--mmiddle--img img {
  max-width: 100%;
  height: auto;
}

.tagline {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0.9;
}
.main-headline {
  font-size: 46px;
  font-weight: 700;
  line-height: 86px;
  margin-bottom: 30px;
}
.description {
  font-size: 20px;
  text-align: justify;
  line-height: 32px;
  margin-bottom: 55px;
}
.app-buttons {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.app-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.app-button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.app-button svg {
  width: 24px;
  height: 24px;
}
.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.download-text small {
  font-size: 0.7rem;
  opacity: 0.8;
}
.download-text span {
  font-size: 0.9rem;
  font-weight: 600;
}

.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(3px);
}

.will-reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.right--mmiddle--img img.will-reveal {
  transform: translateY(20px) scale(0.95);
}
.right--mmiddle--img img.will-reveal.in {
  transform: translateY(0) scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

.nav-menu li {
  opacity: 0;
  transform: translateY(-10px);
}
.nav-menu li.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 1200px) {
  .main-headline {
    font-size: 58px;
    line-height: 64px;
  }
  .tagline {
    font-size: 38px;
  }
}
@media (max-width: 770px) {
  .nav-menu li a {
    color: #000;
    font-weight: 600;
  }
}

@media (max-width: 960px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
  .right--mmiddle--img {
    order: -1;
  }
  .description {
    margin: 0 auto 30px;
  }
  .app-buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 14px 16px;
    flex-direction: column;
    gap: 12px;
  }
  .nav-menu {
    gap: 15px;
    justify-content: center;
  }

  .logo {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .main-headline {
    font-size: 36px;
    line-height: 44px;
  }
  .tagline {
    font-size: 24px;
  }
  .description {
    font-size: 16px;
    line-height: 26px;
  }
  .app-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .app-button {
    width: 80%;
    justify-content: center;
  }
}

.leadership--section {
  padding: clamp(70px, 8vw, 120px) 20px;
  color: #1c1c1c;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.leadership--container {
  max-width: 1200px;
  margin: 0 auto;
}

.leadership--title {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  color: #01978a;
  margin-bottom: 10px;
}

.leadership--subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: #444;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

.leadership--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: center;
}

.leader--card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 45px 25px;
  width: 100%;
  max-width: 340px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader--card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.leader--avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #01978a, #03b7a5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(1, 151, 138, 0.4);
}

.leader--info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
}

.leader--role {
  font-size: 15px;
  font-weight: 600;
  color: #01978a;
  margin-bottom: 12px;
}

.leader--phone {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.leader--phone:hover {
  color: #01978a;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .leadership--grid {
    gap: 30px;
  }

  .leader--card {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .leader--card {
    padding: 35px 20px;
  }

  .leader--avatar {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  .leadership--title {
    font-size: 28px;
  }
}

/* whychose */
.why {
  text-align: center;
  padding: 100px 20px;
}

.why--container {
  max-width: 1920px;
  margin: 0 auto;
}

.why--title {
  font-size: 71px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.why--subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 100px;
}

.why--cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why--card {
  background: #fff;
  border: 2px solid #e0e6ed;
  box-shadow: 0px 7px 14px 0px #d3dae2;
  border-radius: 12px;
  width: 505px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why--card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.why--icon {
  margin-bottom: 25px;
}

.why--card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.why--card-text {
  font-size: 24px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .why--cards {
    gap: 25px;
  }
  .why--card {
    width: 320px;
  }
}

@media (max-width: 900px) {
  .why--title {
    font-size: 2.3rem;
  }
  .why--subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .why--cards {
    flex-direction: column;
    align-items: center;
  }
  .why--card {
    width: 90%;
    text-align: center;
  }
  .why--card-text {
    text-align: center;
  }
}

/* ===== Mobile screen showing ===== */

.showing--screen {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e3f4f2 30%,
    #c3e7e3 47%,
    #87cec8 66%,
    #59bbb3 80%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 8vw, 150px);
  padding: clamp(60px, 10vw, 150px) 20px;
  overflow: hidden;
}

.showing--screen h2 {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 800;
  text-align: center;
  color: #1c1c1c;
}

.slider--img--content {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 100px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.slider--img--content.is-active {
  display: flex;
}

.slider--image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  object-fit: contain;
}

.slider--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
}

.slider--text span {
  background: #1c1c1c;
  color: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 700;
  display: inline-block;
  width: fit-content;
}

.slider--text h3 {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
  color: #2c363f;
  margin-top: 10px;
}

.slider--text p {
  color: #333;
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 45ch;
}

.next--btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.next--btn h4 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  margin: 0;
  color: #1c1c1c;
}

.next--btn svg {
  background: #1c1c1c;
  border-radius: 50%;
  padding: 10px;
  transition: transform 0.3s ease;
}

.next--btn:hover svg {
  transform: translateX(6px);
}

.slider--img--content.is-enter {
  animation: slideIn 0.6s ease both;
}
.slider--img--content.is-leave {
  animation: slideOut 0.6s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@media (max-width: 1024px) {
  .slider--img--content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .slider--image img {
    max-width: 420px;
  }

  .slider--text {
    align-items: center;
    max-width: 600px;
  }

  .slider--text span {
    align-self: center;
  }

  .slider--text h3,
  .slider--text p {
    max-width: 100%;
  }

  .next--btn {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .slider--img--content {
    padding: 0 15px;
    gap: 30px;
  }

  .slider--image img {
    width: 100%;
    max-width: 100%;
  }

  .slider--text p {
    font-size: 15px;
  }

  .next--btn svg {
    width: 45px;
    height: 45px;
  }

  .next--btn h4 {
    font-size: 18px;
  }
}

/* ===== Services Section ===== */
.services {
  background: linear-gradient(180deg, #59bbb3 0%, #59bbb3 100%);
  text-align: center;
  padding-block: clamp(60px, 10vw, 120px);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.services h2 {
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(32px, 6vw, 64px);
  margin-bottom: clamp(28px, 6vw, 80px);
}

.details--services--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 60px);
  padding-inline: clamp(16px, 6vw, 100px);
}

.details--services {
  text-align: left;
  background: transparent;
  padding: 0 10px;
}

.details--services img:hover {
  transform: scale(1.05);
}

.details--services h3 {
  text-align: left;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 12px;
  color: #fff;
}

.details--services p,
.details--services ul {
  text-align: left;
  color: #f5f5f5;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  margin-bottom: 10px;
}

.details--services ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}

.note {
  margin-top: 40px;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.9;
}

.services button {
  border: none;
  border-radius: 30px;
  padding: clamp(14px, 2vw, 16px) clamp(28px, 3vw, 40px);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  margin-top: clamp(32px, 6vw, 80px);
  background: #fff;
  color: #147a72;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.services button a {
    text-decoration: none;
    color: black;
}

@media (max-width: 1200px) {
  .details--services--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details--services--cards {
    grid-template-columns: 1fr;
  }
  .details--services {
    text-align: center;
  }
  .details--services h3,
  .details--services p,
  .details--services ul {
    text-align: center;
  }
  .details--services ul {
    list-style: none;
    padding: 0;
  }
}

/* cards css */
.feedback {
  background: url("./images/banner-2.png");
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
}
.feedback h2 {
  font-size: 66px;
  font-weight: 600;
  text-align: center;
  padding-top: 230px;
}
.cards {
  max-width: 1600px;
  margin: 50px auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 70px;
}

.stars {
  display: block;
  margin-bottom: 26px;
}

.review-text {
  font-size: 24px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 28px;
}

.customer {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}
.customer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}
.customer h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}
.customer p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 1024px) {
  .review-text {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .review-card {
    padding: 28px;
  }
  .review-text {
    font-size: 18px;
  }
  .customer {
    grid-template-columns: 42px 1fr;
  }
  .customer img {
    width: 42px;
    height: 42px;
  }
}

/* cards promo css end */

.container {
  width: min(1920px, 92vw);
  margin-inline: auto;
}

.promo-card {
  background: linear-gradient(180deg, #151617 0%, var(--card-bg) 100%);
  color: var(--text);
  border-radius: 36px;
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 75px);
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left----card--details {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 40px 0;
}

.promo-title {
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(32px, 4vw, 66px);
  margin: 0 0 40px;
}

.promo-text {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0 0 40px;
}

.learn--btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  font-size: clamp(16px, 2vw, 26px);
}

.learn--btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.learn--btn:active {
  transform: none;
}

.promo-media {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.frame {
  background: var(--teal);
  padding: clamp(6px, 1vw, 10px);
  border-radius: 16px;
  display: inline-block;
  max-width: 100%;
}

.frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
@media (max-width: 960px) {
  .promo-card {
    flex-direction: column;
    text-align: center;
  }
  .left----card--details {
    padding: 20px 0;
  }
  .promo-text {
    margin-left: auto;
    margin-right: auto;
  }
  .promo-media {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .promo-title {
    font-size: 28px;
  }
  .promo-text {
    font-size: 16px;
  }
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* services footer uper level */
.servicess--cta {
  background: linear-gradient(180deg, #111 0%, #000 100%);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 80px) 20px;
  max-width: 1765px;
  margin: 100px auto;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servicess--title {
  font-size: 66px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.servicess--subtitle {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  color: #ddd;
  margin-bottom: 50px;
}

.servicess--buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.servicess--btn {
  background: #01978a;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 22px);
  text-decoration: none;
  padding: clamp(14px, 2vw, 24px) clamp(28px, 3vw, 40px);
  border-radius: 24px;
  transition: all 0.3s ease;
  display: inline-block;
}

.servicess--btn:hover {
  background: #099b87;
  transform: translateY(-3px);
}

@media (min-width: 1600px) {
  .servicess--cta {
    padding: 100px 60px;
  }

  .servicess--buttons {
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .servicess--title {
    font-size: clamp(30px, 5vw, 52px);
  }

  .servicess--subtitle {
    font-size: 18px;
  }

  .servicess--btn {
    font-size: 18px;
    padding: 18px 28px;
  }
}

@media (max-width: 768px) {
  .servicess--cta {
    margin: 60px 15px;
    border-radius: 20px;
    padding: 60px 25px;
  }

  .servicess--title {
    font-size: 32px;
    line-height: 1.3;
  }

  .servicess--subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .servicess--buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .servicess--btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .servicess--cta {
    padding: 50px 15px;
  }

  .servicess--title {
    font-size: 26px;
  }

  .servicess--subtitle {
    font-size: 15px;
  }

  .servicess--btn {
    font-size: 16px;
    padding: 14px 22px;
    max-width: 260px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--footer);
  color: #d6d9de;
  margin-top: clamp(26px, 5vw, 40px);
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.12);
}
.footer-inner {
  padding: clamp(24px, 4vw, 40px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: clamp(18px, 4vw, 40px);
  align-items: start;
}

.brand h3 {
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}
.brand p {
  margin: 0 0 16px;
  color: #b9bcc2;
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1b1e22;
  color: #e9eef2;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
}
.socials a:hover {
  transform: translateY(-2px);
  background: #262a30;
}

.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  padding-top: 6px;
}
.links a {
  color: #d6d9de;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.links a:hover {
  text-decoration: underline;
}

.newsletter h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 18px;
}
.subscribe {
  display: flex;
  gap: 10px;
  align-items: center;
}
.subscribe input {
  flex: 1;
  min-width: 0;
  background: #0c0e10;
  color: #e7eaee;
  border: 1px solid #2a2f35;
  padding: 12px 14px;
  border-radius: 10px;
  outline: none;
}
.subscribe input::placeholder {
  color: #8a8f96;
}
.subscribe button {
  background: #1f9a90;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.subscribe button:hover {
  background: #137a73;
  transform: translateY(-1px);
}

.copyright {
  border-top: 1px solid #2a2f35;
  margin-top: clamp(18px, 4vw, 28px);
  padding-top: clamp(14px, 2.8vw, 18px);
  font-size: 14px;
  color: #9aa0a6;
  text-align: center;
}

.socials a:hover {
  transform: translateY(-3px);
  color: #00bfae;
}

/* part 2 our servics css */
.main--cards--contents {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.card--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  border: 1.25px solid #2c363f;
  border-radius: 16px;
  overflow: hidden;
  gap: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.card--container.card-visible {
  opacity: 1;
  transform: translateY(0);
}
.card--container:first-child {
  border-top-right-radius: 0;
  border-right: none;
  border-top: none;
}
.card--container img {
  width: 50%;
  max-height: 100%;
  object-fit: cover;
}
.cards--details {
  flex: 1;
  padding: 60px;
}

.cards--details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cards--details p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}
/* List */
.card--list {
  list-style-type: disc;
  margin-left: 20px;
  color: #333;
  margin-top: 15px;
}

.card--list li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
}
@media (max-width: 992px) {
  .card--container {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .card--container img {
    width: 100%;
    height: auto;
  }

  .cards--details {
    padding: 30px 20px;
  }

  .cards--details h2 {
    font-size: 1.8rem;
  }

  .cards--details p {
    font-size: 1rem;
  }
  .card--list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .cards--details {
    padding: 20px 15px;
  }

  .cards--details h2 {
    font-size: 1.5rem;
  }

  .cards--details p {
    font-size: 0.95rem;
  }
  .card--list {
    margin-left: 18px;
  }

  .card--list li {
    line-height: 1.6;
  }
}

/*..................... faq css .......................*/

.faq-container {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.topbar {
  text-align: center;
  gap: 28px;
  padding-bottom: 195px;
}
.title {
  flex: 0 0 auto;
  font-size: 47px;
  font-weight: 600;
  margin: 70px;
  color: #306a71;
}
.search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 80px;
  margin-left: 50px;
}
.search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e4e6ea;
  border-radius: 999px;
  padding: 20px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.search svg {
  flex: 0 0 18px;
}
.search input {
  border: 0;
  outline: 0;
  width: 100%;
  font-size: 14px;
  color: #394047;
  background: transparent;
}
.find-btn {
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 16px 40px;
  border-radius: 10px;
  cursor: pointer;
}
.grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  margin-top: 8px;
  position: relative;
}
.grid::before {
  content: "";
  position: absolute;
  left: 280px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #dadddf;
}
.sidebar .head {
  font-size: 28px;
  font-weight: 600;
  color: #5c6168;
  margin-bottom: 16px;
}
.topic-desc {
  font-size: 22px;
  color: #9aa0a6;
  margin: 0 0 8px;
}
.topics {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.topics li {
  font-size: 22px;
  color: #0f7a7a;
  padding: 10px 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.15s ease;
}
.topics li:hover {
  opacity: 0.85;
}
.main h2 {
  margin: 0 0 18px;
  font-size: 35px;
  font-weight: 600;
  color: #4b5157;
}
.faq--cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e4e6ea;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  cursor: pointer;
  gap: 16px;
  border: none;
}
.card-title {
  font-size: 20px;
  color: #4c5259;
}
.chev {
  width: 20px;
  height: 20px;
  border: 1px solid #d6d8dc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  transition: transform 0.25s ease;
}
.chev svg {
  width: 12px;
  height: 12px;
  stroke: #6b737c;
}
.card-content {
  padding: 0 18px 0;
  margin-top: -2px;
  color: #6f7680;
  font-size: 16px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
}
.card.open .card-content {
  padding: 0 18px 16px;
  max-height: 220px;
  opacity: 1;
}
.card.open .chev {
  transform: rotate(180deg);
}
.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 26px 4px 60px 0;
  color: #8b9198;
  font-size: 12px;
}
.pagination a {
  text-decoration: none;
  color: #6f757c;
  padding: 2px 6px;
  border-radius: 6px;
}
.pagination a.active {
  font-weight: 500;
}
.pagination span.ellipsis {
  padding: 0 4px;
}
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .grid::before {
    display: none;
  }
}

/* contact us css.................. */

.contact--container {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
  padding: 180px 40px;
}

.touch--grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.left-col {
  flex: 1;
}

.map-card {
  position: relative;
  min-height: 500px;
  flex: 0.9;
  border: 1px solid #e6e8ec;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background: #f3f5f6;
  margin-top: 38px;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
}
.map-card.visible {
  opacity: 1;
  transform: translateY(0);
}

#map {
  position: absolute;
  inset: 0;
}

.contact--title {
  font-size: 64px;
  color: #111;
  font-weight: 700;
  margin: 12px 0 8px;
  line-height: 1.2;
}
.contact--title .teal {
  color: #16a79b;
}
.lead {
  max-width: 560px;
  font-size: 18px;
  color: #2f3340;
  margin: 8px 0 26px;
  line-height: 1.6;
}

.form {
  width: 100%;
}
.field {
  position: relative;
  margin-bottom: 16px;
}
.input,
.select {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  font-size: 15px;
  border: 1.8px solid #16a79b;
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input:focus,
.select:focus {
  border-color: #0e7e74;
  box-shadow: 0 0 6px rgba(22, 167, 155, 0.3);
}
.input::placeholder {
  color: #9aa3ad;
}
.select {
  appearance: none;
}
.field.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.btn {
  width: 100%;
  height: 52px;
  border: none;
  background: #16a79b;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background: #0e7e74;
  transform: translateY(-2px);
}

.teal-pin {
  width: 34px;
  height: 34px;
  background: #16a79b;
  border-radius: 50%;
  box-shadow: 0 8px 14px rgba(22, 167, 155, 0.35);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}
.teal-pin .dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  display: block;
}

@media (max-width: 1100px) {
  .contact--title {
    font-size: 48px;
  }
  .contact--title {
    font-size: 40px;
  }
  .touch--grid {
    flex-direction: column;
    gap: 50px;
  }
  .map-card {
    min-height: 360px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .contact--container {
    padding: 60px 20px;
  }
  .contact--title {
    font-size: 38px;
  }
  .lead {
    font-size: 16px;
  }
  .map-card {
    min-height: 280px;
  }
}

/* ===== Animations on load ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.stagger > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.stagger.in > * {
  opacity: 1;
  transform: none;
}
.stagger.in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger.in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger.in > *:nth-child(3) {
  transition-delay: 0.18s;
}

/* Responsive Design and csss animation */
@media (max-width: 980px) {
  .promo-card {
    display: grid;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .promo-media {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .subscribe {
    flex-direction: column;
    align-items: stretch;
  }
  .subscribe button {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header {
    padding: 20px 30px;
  }
  .main-content {
    padding: 0 30px;
  }
  .main-headline {
    font-size: 3rem;
  }
  .luxury-text {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 20px;
  }
  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .main-content {
    padding: 20px;
    text-align: center;
  }
  .main-headline {
    font-size: 2.5rem;
  }
  .luxury-text {
    font-size: 2.5rem;
  }
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .main-headline {
    font-size: 2rem;
  }
  .luxury-text {
    font-size: 2rem;
  }
  .description {
    font-size: 1rem;
  }
  .our--services {
    padding: 55px;
  }
}

@media (hover: hover) and (pointer: fine) {
  /* body {
    cursor: none;
  } */
  input,
  textarea {
    cursor: text;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: black;
  }
  .cursor-ring {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(150, 154, 154, 0.9);
    backdrop-filter: blur(0.5px);
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  }
  .cursor-ring.active {
    transform: translate(-50%, -50%) scale(0.75);
  }
  .cursor-ring.hover {
    transform: translate(-50%, -50%) scale(1.35);
    border-color: #2aa399;
    background: rgba(89, 187, 179, 0.08);
  }
  .cursor-dot.hide,
  .cursor-ring.hide {
    opacity: 0;
  }
}
.will-reveal,
.is-active,
.is-enter,
.is-leave,
.review-card,
.slider--img--content {
  opacity: 1 !important;
  visibility: visible !important;
}
