/* Reset & Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lora:wght@500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #353334;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #000;
  text-decoration: none;
}
:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
}

.header-container {
  max-width: 100%;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.5rem 2.5rem;
  background-color: rgb(248 247 243);
  backdrop-filter: blur(10px);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.08);
}

.logo {
  flex-shrink: 0;
  width: clamp(120px, 12vw, 160px);
}

.logo img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-link {
  font-size: clamp(1rem, 1vw, 1rem);
  font-weight: 400;
  color: #000;
  transition: opacity 0.3s;
  white-space: nowrap;
  position: relative;
  padding: 0px;
  margin: 0px 15px;
}
.nav-link:after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background-color: #000;
  bottom: -2px;
  left: 0;
  display: none;
}
.nav-link:hover {
  color: #000000;
}
.nav-link:hover:after {
  display: block;
}
.btn-signin {
  background-color: #222;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-size: clamp(1rem, 1vw, 1rem);
  font-weight: 500;
  transition: background-color 0.3s;
  white-space: nowrap;
  display: block;
}

.btn-signin:hover {
  background-color: #000;
}
.line {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.mypageloader {
  background: rgb(255, 255, 255);
  z-index: 99999999;
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
}

.pageloader {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  translate: -50% -50%;
}
.pageloader img {
  max-width: 50px;
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 2rem;
  margin-top: 0rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.sound-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.sound-toggle:hover {
  opacity: 0.8;
}

.sound-text {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.125rem;
}
.jPDJZl {
  width: 50%;
}
.gNhHge {
  width: 50%;
}
.sound-icon {
  width: clamp(24px, 2.5vw, 32px);
  height: clamp(24px, 2.5vw, 32px);
}

/* Footer Content Section */
.formobile-content {
  width: 100%;
  background-color: #f8f7f3;
  padding: 20px 0px 0px 0px;
  display: none;
}

.formobile-container {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formobile-container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
  width: 100%;
}
.formobile-container ul li {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  display: block;
}
.formobile-container ul li:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/arrow.svg);
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  right: 0px;
  top: 5px;
}
.formobile-container ul li:nth-last-child(1) {
  margin-bottom: 0px;
}
.footer-content {
  width: 100%;
  background-color: #f8f7f3;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.footer-container {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social Section */
.social-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.section-title {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.8;
  color: #353334;
  margin-bottom: 0px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* App Section */
.app-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}

.app-info {
  flex: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.app-button {
  display: block;
  border-radius: 0.5rem;
  padding: 0px;
  transition: transform 0.3s;
  width: clamp(140px, 4vw, 140px);
}

.app-button:hover {
  transform: translateY(-2px);
}

.app-button img {
  width: 100%;
  height: auto;
}

/* App Preview */
.app-preview {
  position: relative;
  width: clamp(180px, 18vw, 220px);
  height: clamp(180px, 18vw, 225px);
  flex-shrink: 0;
  overflow: hidden;
}

.phone-mockup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
}

.phone-body {
  position: absolute;
  top: 0;
  left: 1%;
  width: 100%;
  height: auto;
}

.phone-buttons {
  position: absolute;
  width: 100%;
  height: auto;
  top: 16%;
  left: 0;
}

.phone-screen {
  position: absolute;
  top: 2.5%;
  left: 6%;
  width: 90%;
  height: auto;
  border-radius: 1.5rem;
}

.phone-camera {
  position: absolute;
  width: 22%;
  height: auto;
  top: 4%;
  left: 39%;
}

.phone-bezel {
  position: absolute;
  width: 53%;
  height: auto;
  top: 5%;
  left: 26%;
}

.phone-bezel img {
  width: 100%;
  height: auto;
}

/* Footer */
.footer {
  width: 100%;
  background-color: #f8f7f3;
  border-top: 1px solid #f5f5f5;
  padding: 1rem 0;
}

.footer .footer-container {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright,
.footer-link,
.powered-by {
  font-size: clamp(1rem, 1vw, 1rem);
  color: #000;
}

.copyright {
  flex: 1;
  margin-bottom: 0px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.footer-link {
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.7;
}

.separator {
  color: #000;
}

.powered-by {
  flex: 1;
  text-align: right;
  margin-bottom: 0px;
}
.content-section {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 30px 0px;
}
.content-section .content-part h1 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #0d181c;
  margin: 10px 0px;
}
.content-section .content-part h2 {
  font-size: 24px;
  color: #0d181c;
  margin: 10px 0px;
}
.content-section .content-part p {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.8;
  color: #353334;
  margin-bottom: 10px;
}
.cta-section {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 243, 1) 31%,
    rgba(255, 255, 255, 1) 50%
  );
  padding: 3rem 0;
  text-align: center;
}
.about-banner {
  position: relative;
  max-width: 100%;
  width: 100%;
}
.about-banner .banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-banner .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  padding: 0px 40px;
}
.about-banner .overlay .content-part h1 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
  font-family: "Lora", Georgia, serif;
}
.about-banner .overlay .content-part p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.about-banner .partners-section {
  width: 100%;
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}
.team-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7f3;
}
.team-fluid .image-section {
  width: 60%;
}
.team-fluid .image-section img {
  width: 100%;
}
.team-fluid .content-part {
  width: 40%;
  padding: 0px 40px;
}
.team-fluid .content-part h2 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
  font-family: "Lora", Georgia, serif;
  text-transform: capitalize;
}
.team-fluid .content-part p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
.partners-section {
  width: 100%;
  background-color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.partners-title {
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: #000000;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-logos ul {
  list-style: none;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
.cta-title {
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #000000;
}

.cta-description {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  color: #000000;
}

.cta-button {
  display: inline-block;
  background-color: #222222;
  color: #ffffff;
  padding: 0.625rem 2.5rem;
  border-radius: 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #333333;
  opacity: 1;
  color: #ffffff;
}
.toturial-fluid {
  padding: 40px 0px;
  background: #ffffff;
}
.toturial-fluid.bgcolor {
  background: #f8f7f3;
}
.toturial-fluid .main-section {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toturial-fluid .main-section .video-part {
  width: 50%;
}
.toturial-fluid .main-section .video-part video {
  width: 100%;
  height: auto;
}
.toturial-fluid .main-section .content-part {
  width: 50%;
  padding: 0px 40px;
}
.toturial-fluid .main-section .content-part h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  line-height: 32px;
}
.toturial-fluid .main-section .content-part p {
  font-size: 16px;
  line-height: 24px;
  color: #353334;
}
.aboutstory-fluid {
  padding: 40px 0px;
  background: #ffffff;
  position: relative;
}
.aboutstory-fluid.bgcolor {
  background: #f8f7f3;
}
.aboutstory-fluid .main-section {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aboutstory-fluid .main-section .video-part {
  width: 50%;
}
.aboutstory-fluid .main-section .video-part img {
  width: 100%;
  height: auto;
  z-index: 9999;
  position: relative;
}
.aboutstory-fluid .main-section .content-part {
  width: 50%;
  padding: 0px 40px;
}
.aboutstory-fluid .main-section .content-part h2 {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  line-height: 32px;
}
.aboutstory-fluid .main-section .content-part p {
  font-size: 16px;
  line-height: 24px;
  color: #353334;
}
.contact-fluid {
  position: relative;
}
.contact-fluid .image-part img {
  width: 100%;
  height: auto;
}
.contact-fluid .form-section {
  width: 35%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 40px;
  padding: 20px 20px;
  background: linear-gradient(
    90deg,
    rgba(248, 247, 243, 0.8) 7.21%,
    rgba(255, 255, 255, 0.8) 81.25%
  );
  max-width: 500px;
}
.contact-fluid .form-section .heading-part {
  margin-bottom: 20px;
}
.contact-fluid .form-section .heading-part h1 {
  font-family: "Lora", serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}
.contact-fluid .contact-detail ul {
  list-style-type: none;
  margin-top: 20px;
}
.contact-fluid .contact-detail ul li {
  padding-left: 25px;
  position: relative;
}
.contact-fluid .contact-detail ul li a {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.8;
  color: #353334;
  margin-bottom: 0px;
}
.contact-fluid .contact-detail ul li .whatsapp:after {
  content: "";
  position: absolute;
  background-image: url(../img/icon/whatsapp.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: 0;
  top: 6px;
}
.contact-fluid .contact-detail ul li .phone:after {
  content: "";
  position: absolute;
  background-image: url(../img/icon/phone.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: 0;
  top: 6px;
}
.contact-fluid .contact-detail ul li .mail:after {
  content: "";
  position: absolute;
  background-image: url(../img/icon/mail.svg);
  width: 18px;
  height: 18px;
  background-position: center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  left: 0;
  top: 6px;
}
.login-mobile {
  display: none;
  position: absolute;
  bottom: 80px;
  background: #ffffffb2;
  padding: 16px 24px;
  width: 90%;
  text-align: center;
}
.login-mobile .login-mob {
  background-color: #222;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  text-transform: uppercase;
  font-size: 16px;
  font-size: clamp(1rem, 1vw, 1rem);
  font-weight: 500;
  transition: background-color 0.3s;
  white-space: nowrap;
  max-width: 400px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}
.logout-part {
  position: relative;
}
.login-mobile p {
  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.8;
  color: #353334;
  margin-bottom: 0px;
  margin-top: 10px;
}
.login-mobile p a {
  font-weight: 700;
}
.logout {
  position: absolute;
  width: 120px;
  text-align: center;
  background: #222222;
  padding: 10px 20px;
  left: 50%;
  margin-left: -60px;
  bottom: -50px;
  color: #ffffff;
  display: none;
  border-radius: 50px;
  z-index: 999;
}
.logout-part:hover .logout {
  display: block;
}
.logout p {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  font-family: "Gilroy-Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.breadcum-fluid {
  padding: 20px 0px;
  background: #ffffff;
}
.breadcum-fluid .main-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcum-fluid .main-section .left-part ul {
  display: flex;
  align-items: center;
  justify-content: start;
  list-style-type: none;
  margin-bottom: 0px;
}
.breadcum-fluid .main-section .left-part ul li {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #2e4c4d;
}
.breadcum-fluid .main-section .left-part ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: #2e4c4d;
}
.breadcum-fluid .main-section .right-part h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: #020202;
  display: inline-block;
  position: relative;
}

/* Tablet Styles */
/* @media (max-width: 1199px) {
  .header-container {
    width: 92%;
    padding: 0.5rem 1.5rem;
  }

  .nav {
    gap: 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .app-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-preview {
    align-self: center;
  }
}

/* Mobile Styles */
/* @media (max-width: 767px) {
  .header-container {
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
  }

  .logo {
    width: 100px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .nav-link {
    font-size: 0.875rem;
  }
  .btn-signin {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
  }

  .hero {
    min-height: 70vh;
    margin-top: 7rem;
    padding: 1rem;
  }

  .sound-toggle {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    width: 92%;
  }

  .social-section {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .app-section {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-info {
    max-width: 100%;
    align-items: center;
  }

  .app-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .app-preview {
    margin-top: 1rem;
  }

  .footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .copyright,
  .powered-by {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
} */

/* Small Mobile */
/* @media (max-width: 480px) {
  .header-container {
    padding: 0.5rem;
  }

  .nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .app-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .app-button {
    width: 100%;
    max-width: 200px;
  }
} */
