:root {
--primary: #00416b;
  --primary-dark: #021d35;
  --primary-soft: #eaf8ff;

  --green: #00b86b;
  --green-dark: #008b52;
  --green-soft: #e9fff5;

  --cyan: #1cc8ff;
  --white: #ffffff;

  --page-white: #ffffff;
  --page-blue-soft: #f6fbff;
  --page-green-soft: #f4fff8;

  --text: #202342;
  --muted: #6c7285;
  --border: rgba(0, 65, 107, 0.12);

  --shadow: 0 28px 80px rgba(0, 65, 107, 0.14);
  --shadow-soft: 0 18px 48px rgba(0, 184, 107, 0.18);

  --transition: all 0.35s ease;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}
img {
max-width: 100%;
  display: block;
}
a {
text-decoration: none;
}
button,
input,
textarea {
font-family: inherit;
}
.section-padding {
padding: 90px 0;
}
#preloader {
position: fixed;
  inset: 0;
  background: var(--white);
  display: grid;
  place-items: center;
  z-index: 99999;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#preloader.hide {
opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader {
position: relative;
  width: 300px;
  height: 300px;
  display: grid;
  place-items: center;
}
.loader img {
width: 200px;
  position: relative;
  z-index: 2;
  animation: logoPulse 1.4s ease-in-out infinite;
}
.loader span {
position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--green);
  border-right-color: var(--primary);
  animation: spin 1s linear infinite;
}
@keyframes logoPulse {
0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}
@keyframes spin {
to {
    transform: rotate(360deg);
  }
}

.navbar.glass-navbar {
  position: fixed;
  overflow: visible;
  padding: 0;
  min-height: 74px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 65, 107, 0.06);
  transition: var(--transition);
  z-index: 9999;
}

.navbar.glass-navbar::before,
.navbar.glass-navbar::after {
display: none;
}

.navbar.glass-navbar::before {
  width: 95px;
  height: 95px;
  left: -38px;
  top: -42px;
  background: linear-gradient(135deg, rgba(0, 184, 107, 0.13), rgba(28, 200, 255, 0.04));
  transform: rotate(25deg);
}

.navbar.glass-navbar::after {
  width: 82px;
  height: 82px;
  right: 18%;
  bottom: -50px;
  background: linear-gradient(135deg, rgba(0, 65, 107, 0.055), rgba(0, 184, 107, 0.08));
  transform: rotate(205deg);
}

.navbar.glass-navbar.scrolled {
  box-shadow: 0 12px 34px rgba(0, 65, 107, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar.glass-navbar .container,
.navbar.glass-navbar .logo,
.navbar.glass-navbar .nav-menu,
.navbar.glass-navbar .menu-toggle {
  position: relative;
  z-index: 4;
}

.navbar.glass-navbar .logo img {
  width: 128px;
  height: auto;
}

.navbar.glass-navbar .nav-menu {
  align-items: center;
}

.navbar.glass-navbar .nav-menu .navbar-nav {
  gap: 30px;
  align-items: center;
}

.navbar.glass-navbar .nav-menu .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-left: 0;
  padding-right: 0;
  transition: var(--transition);
}

.navbar.glass-navbar .nav-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: var(--green);
  transform: translateX(-50%);
  transition: var(--transition);
}

.navbar.glass-navbar .nav-menu .nav-link:hover,
.navbar.glass-navbar .nav-menu .nav-link.active {
  color: var(--primary);
}

.navbar.glass-navbar .nav-menu .nav-link:hover::after,
.navbar.glass-navbar .nav-menu .nav-link.active::after {
  width: 100%;
}

.navbar.glass-navbar .nav-menu .login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: #1bad3d88;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: var(--transition);
}

.navbar.glass-navbar .nav-menu .login-btn:hover {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--white);
}

.navbar.glass-navbar .menu-toggle {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--primary-soft);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: none;
}

.navbar.glass-navbar .menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 20px;
  transition: var(--transition);
}

.navbar.glass-navbar .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar.glass-navbar .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar.glass-navbar .menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
  .navbar.glass-navbar {
    min-height: 76px;
    overflow: visible;
  }

  .navbar.glass-navbar .container {
    min-height: 76px;
    display: flex;
    align-items: center;
  }

  .navbar.glass-navbar::before,
  .navbar.glass-navbar::after {
    display: none;
  }

  .navbar.glass-navbar .menu-toggle {
    display: flex;
    position: relative;
    z-index: 10002;
  }

  .navbar.glass-navbar .nav-menu {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    width: auto;
    height: auto;
    max-height: calc(100vh - 110px);
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 10000;
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
  }

  .navbar.glass-navbar .nav-menu.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar.glass-navbar .nav-menu .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    margin: 0;
    padding: 24px 26px 38px;
    background: #ffffff;
    border: 1px solid rgba(0, 65, 107, 0.12);
    border-radius: 26px;
    box-shadow: none;
    overflow: visible;
    box-sizing: border-box;
  }

  .navbar.glass-navbar .nav-menu .nav-item {
    width: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .navbar.glass-navbar .nav-menu .nav-link {
    display: inline-flex;
    width: fit-content;
    max-width: max-content;
    font-size: 14px;
    font-weight: 500;
    padding: 0 0 6px 0;
    margin: 0;
  }

  .navbar.glass-navbar .nav-menu .login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 20px;
    min-height: 42px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    background: #1bad3d88;
    color: var(--primary);
  }
}

@media (max-width: 575px) {
  .navbar.glass-navbar .logo img {
    width: 112px;
  }

  .navbar.glass-navbar .nav-menu {
    top: 82px;
    left: 12px;
    right: 12px;
  }

  .navbar.glass-navbar .nav-menu .navbar-nav {
    gap: 22px;
    padding: 24px 24px 40px;
    border-radius: 24px;
  }
}

.hero-section {
position: relative;
  min-height: calc(100vh - 74px);
  margin-top: 74px;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-row {
min-height: calc(100vh - 74px);
  padding: 70px 0;
}
.hero-bg {
position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(1, 18, 35, 0.82) 0%,
    rgba(1, 18, 35, 0.62) 34%,
    rgba(1, 18, 35, 0.25) 68%,
    rgba(1, 18, 35, 0.1) 100%
  );
}
.primary-btn {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 24px;
  background: #00b37a;
  color: #fff;

  font-size: 16px;
  font-weight: 600;
  text-decoration: none;

  border-radius: 10px;
  border: none;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 6px 18px rgba(0, 179, 122, 0.25);
  position: relative;
  overflow: hidden;
}
.primary-btn:hover {
background: #009966;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 179, 122, 0.35);
}
.hero-text {
max-width: 430px;
  color: var(--white);
  position: relative;
  z-index: 4;
}
.hero-logo {
width: 255px;
  margin-bottom: 25px;
  margin-left:-35px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}
.hero-text p {
font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.94);
}
.hero-product-wrap {
text-align: right;
}
.hero-product-img {
width: 120px;
  height: auto;
  display: block;
  margin-left: auto;

  position: relative;
  top: -60px;

  animation: float 3s ease-in-out infinite;
}
@keyframes float {
0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hero-particles span {
position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px var(--cyan);
  animation: floatDot 5s ease-in-out infinite;
}
.hero-particles span:nth-child(1) {
left: 18%;
  top: 28%;
}
.hero-particles span:nth-child(2) {
right: 20%;
  top: 34%;
  animation-delay: 1s;
}
.hero-particles span:nth-child(3) {
right: 34%;
  bottom: 22%;
  animation-delay: 2s;
}
.hero-particles span:nth-child(4) {
left: 42%;
  bottom: 30%;
  animation-delay: 3s;
}
@keyframes floatDot {
0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }

  50% {
    transform: translateY(-24px) scale(1.35);
    opacity: 1;
  }
}
.section-header {
position: relative;
  z-index: 2;
}
.section-header.center {
text-align: center;
}
.section-header.left {
text-align: left;
}
.section-header h2 {
font-size: clamp(48px, 5.5vw, 72px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  letter-spacing: -1.6px;
  margin-bottom: 24px;
}
.section-header p {
max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.about-section {
position: relative;
  overflow: hidden;
  background: var(--page-white);
}
.about-section::before,
.about-section::after {
content: "";
  position: absolute;
  border-radius: 80% 0 80% 0;
  pointer-events: none;
}
.about-section::before {
width: 240px;
  height: 240px;
  right: -110px;
  top: 95px;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 107, 0.08),
    rgba(28, 200, 255, 0.035)
  );
  transform: rotate(25deg);
}
.about-section::after {
width: 210px;
  height: 210px;
  left: -92px;
  bottom: 78px;
  background: linear-gradient(
    135deg,
    rgba(0, 65, 107, 0.04),
    rgba(0, 184, 107, 0.055)
  );
  transform: rotate(210deg);
}
.about-section .section-header h2 {
display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.about-section .section-header h2 img,
.about-section .section-header h2 img.about-title-logo {
width: 210px !important;
  max-width: 210px !important;
  height: auto !important;
  display: inline-block !important;
  vertical-align: middle;
  margin: 0 !important;
}
.about-section .section-header p {
max-width: 980px;
  font-size: 17px;
  line-height: 1.75;
  color: #2f344d;
}
.about-image-wrap {
width: min(900px, 100%);
  margin: 58px auto 0;
  position: relative;
}
.about-flow-img {
width: 100%;
  max-width: 900px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: softFloat 5s ease-in-out infinite;
}
.glow-circle {
position: absolute;
  inset: 8%;
  border-radius: 80% 0 80% 0;
  background: rgba(0, 184, 107, 0.06);
  filter: blur(34px);
  z-index: 1;
  transform: rotate(25deg);
}
.leaf {
display: block;
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 107, 0.1),
    rgba(28, 200, 255, 0.05)
  );
  transform: rotate(25deg);
  pointer-events: none;
}
.leaf-1 {
left: -55px;
  top: 100px;
}
.leaf-2 {
right: -70px;
  bottom: 80px;
  transform: rotate(210deg);
}
@keyframes softFloat {
0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}
.info-section {
position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f3faf6 0%, #e8f5ee 50%, #f7fbf8 100%);
  color: #1f2937;
}
.info-section::before {
content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  left: -220px;
  top: -260px;
  background: radial-gradient(
    circle,
    rgba(46, 139, 87, 0.14),
    rgba(34, 139, 94, 0.06),
    transparent 70%
  );
  pointer-events: none;
}
.info-section::after {
content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  right: -260px;
  bottom: -300px;
  background: radial-gradient(
    circle,
    rgba(76, 175, 80, 0.10),
    rgba(0, 150, 136, 0.06),
    transparent 70%
  );
  pointer-events: none;
}
.info-section::after {
content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.info-visual {
position: relative;
  min-height: 420px;
  z-index: 2;
}
.circle-icon {
border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 65, 107, 0.08);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 65, 107, 0.08);
  position: absolute;
  animation: softFloat 5s ease-in-out infinite;
}
.circle-main {
width: 250px;
  height: 250px;
  left: 190px;
  top: 100px;
  transform: none;
}
.circle-main img {
width: 145px;
  transform: none;
}
.circle-small {
width: 170px;
  height: 170px;
}
.circle-small img {
width: 92px;
  transform: none;
}
.circle-small.top {
left: 70px;
  top: 20px;
  animation-delay: 0.7s;
  transform: none;
}
.circle-small.bottom {
left: 40px;
  bottom: 20px;
  animation-delay: 1.4s;
  transform: none;
}
.info-content {
position: relative;
  z-index: 2;
}
.section-label {
display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 184, 107, 0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.section-label::before {
content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.info-title {
font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}
.info-content p {
max-width: 520px;
  color: #41485b;
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
  margin-top: 8px;
}
.number-list {
margin-top: 34px;
  display: grid;
  gap: 18px;
}
.number-item {
display: grid;
  grid-template-columns: 56px 1fr;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 65, 107, 0.08);
  transition: var(--transition);
}
.number-item span {
width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #00416b;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #00416b;
  background: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}
.number-item p {
margin: 0;
  color: #4e5365;
  font-size: 15.5px;
  line-height: 1.65;
  text-align: left;
}
.number-item:hover {
transform: translateX(8px);
  background: var(--white);
  border-color: rgba(0, 184, 107, 0.22);
}
.number-item:hover span {
background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.08);
}
.video-section {
position: relative;
  overflow: hidden;
  background: #ffffff;
}
.video-section::before,
.video-section::after {
content: "";
  position: absolute;
  border-radius: 80% 0 80% 0;
  pointer-events: none;
  z-index: 0;
}
.video-section::before {
width: 190px;
  height: 190px;
  left: -92px;
  top: 35%;
  background: linear-gradient(
    135deg,
    rgba(0, 65, 107, 0.035),
    rgba(0, 184, 107, 0.045)
  );
  transform: rotate(30deg);
}
.video-section::after {
width: 300px;
  height: 300px;
  right: -140px;
  bottom: -120px;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 107, 0.09),
    rgba(28, 200, 255, 0.035)
  );
  transform: rotate(218deg);
}
.video-section .container-xl {
position: relative;
  z-index: 2;
  max-width: 1320px;
}
.video-section .section-header {
text-align: center;
  margin-bottom: 70px;
}
.video-section .section-header h2 {
font-size: clamp(52px, 5.8vw, 76px) !important;
  font-weight: 800 !important;
  margin-bottom: 0;
}
.video-row {
width: 100%;
  margin: 0 0 95px;
}
.video-row:last-child {
margin-bottom: 0;
}
.video-box {
position: relative;
  width: 100%;
  border: none;
  background: #000;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 65, 107, 0.12);
  transition: var(--transition);
}
.video-box:hover {
transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 65, 107, 0.16);
}
.video-box video {
width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
  background: #000;
}
.video-text {
max-width: 560px;
}
.video-text-right {
padding-left: 45px;
}
.video-text-left {
padding-right: 45px;
  margin-left: auto;
}
.video-text h3 {
font-size: clamp(28px, 2.8vw, 38px) !important;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.video-text p {
color: #4e5365;
  line-height: 1.75;
  font-size: 18px;
  margin-bottom: 0;
}
.app-section {
position: relative;
  overflow: hidden;
  background: #f4fff8;
}
.app-section::before,
.app-section::after {
content: "";
  position: absolute;
  border-radius: 80% 0 80% 0;
  pointer-events: none;
}
.app-section::before {
width: 310px;
  height: 310px;
  right: -145px;
  bottom: -115px;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 107, 0.12),
    rgba(28, 200, 255, 0.035)
  );
  transform: rotate(215deg);
}
.app-section::after {
width: 170px;
  height: 170px;
  left: -70px;
  top: 120px;
  background: linear-gradient(
    135deg,
    rgba(0, 65, 107, 0.04),
    rgba(0, 184, 107, 0.05)
  );
  transform: rotate(25deg);
}
.app-section .section-header h2 {
font-size: clamp(48px, 5.5vw, 72px) !important;
  font-weight: 800 !important;
  margin-bottom: 0;
}
.app-content h3 {
font-size: clamp(30px, 3vw, 40px) !important;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 14px;
}
.app-content p {
max-width: 630px;
  color: #444b5e;
  font-size: 15px;
  line-height: 1.75;
}
.check-list {
margin-top: 32px;
  display: grid;
  gap: 22px;
}
.check-item {
display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #4c5364;
  font-size: 15px;
}
.check-item i {
color: var(--green);
  font-size: 26px;
  transform: translateY(-2px);
}
.store-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.store-title {
  margin: 0 10px 0 0;
  font-size: 25px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.store-buttons img {
  height: 45px;
  width: auto;
  max-width: 100%;
  transition: var(--transition);
}

.store-buttons a:hover img {
  transform: translateY(-5px);
}
.phone-wrap {
position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  min-height: 660px;
}
.phone-img {
width: 800px;
  max-width: none;
  height: auto;
  position: relative;
  z-index: 2;
  filter: none !important;
  box-shadow: none !important;
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-glow {
display: none;
}
@keyframes phoneFloat {
0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}
.contact-section {
position: relative;
  overflow: hidden;
  background: #ffffff;
}
.contact-section::before,
.contact-section::after {
content: "";
  position: absolute;
  border-radius: 80% 0 80% 0;
  pointer-events: none;
  z-index: 0;
}
.contact-section::before {
width: 310px;
  height: 310px;
  right: -150px;
  top: 100px;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 107, 0.08),
    rgba(28, 200, 255, 0.035)
  );
  transform: rotate(215deg);
}
.contact-section::after {
width: 250px;
  height: 250px;
  left: -130px;
  bottom: -100px;
  background: linear-gradient(
    135deg,
    rgba(0, 65, 107, 0.04),
    rgba(0, 184, 107, 0.05)
  );
  transform: rotate(25deg);
}
.contact-bg-grid {
position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(0, 65, 107, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 65, 107, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 58%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 58%);
}
.contact-section .container,
.contact-info {
position: relative;
  z-index: 2;
}
.contact-info h2 {
font-size: clamp(44px, 5vw, 62px) !important;
  line-height: 1.18;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 22px;
}
.contact-info > p {
max-width: 330px;
  color: #555c6c;
  font-size: 14px;
  line-height: 1.5;
}
.contact-list {
margin-top: 20px;
  display: grid;
  gap: 18px;
}
.contact-item {
display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 24px;
}
.contact-item span {
width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background: var(--text);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 14px 35px rgba(32, 35, 66, 0.18);
  transition: var(--transition);
}
.contact-item:hover span {
background: var(--green);
  transform: translateY(-4px) rotate(8deg);
}
.contact-item p {
margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #545b68;
}
.contact-item a {
color: #545b68;
  transition: var(--transition);
}
.contact-item a:hover {
color: var(--green);
}
.contact-form {
width: 100%;
  position: relative;
  padding: 38px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 65, 107, 0.07);
  box-shadow: 0 24px 70px rgba(0, 65, 107, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  font-size: 15px;
}

.form-control,
.form-control:focus,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;

  border: 1px solid #008b52;
  border-radius: 8px;

  background: transparent;
  color: var(--text);
  font-size: 15px;

  outline: none;
  box-shadow: none;

  transition: 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 2px solid #008b52;
  box-shadow: none;
  background: transparent;
}
.send-btn {
border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
}
.send-btn svg {
color: #fff;
  transition: var(--transition);
}
.send-btn:hover {
transform: translateY(-5px);
  background: var(--primary);
  color: var(--white);
}
.send-btn:hover svg {
color: var(--white);
  transform: rotate(18deg) translateX(4px);
}
.send-leaf-icon {
width: 23px;
  height: 23px;
  color: #ffffff;
  flex-shrink: 0;
  transition: 0.35s ease;
}
.send-btn:hover .send-leaf-icon {
transform: translateX(4px) rotate(16deg);
}
.form-alert {
width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
}
.form-alert.success {
background: rgba(0, 184, 107, 0.12);
  color: #008c52;
  border: 1px solid rgba(0, 184, 107, 0.22);
}
.form-alert.error {
background: rgba(230, 57, 70, 0.12);
  color: #c62835;
  border: 1px solid rgba(230, 57, 70, 0.22);
}
.footer-section {
background: #00416b;
  color: #ffffff;
  padding: 70px 0 26px;
  position: relative;
  overflow: hidden;
}
.footer-brand {
display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo {
width: 150px;
  height: auto;
}
.footer-section p {
max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.footer-section h6 {
color: #ffffff;
  font-size: 17px !important;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.footer-section a {
display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}
.footer-section a:hover {
color: #7cff9b;
  transform: translateX(5px);
}
.footer-contact a {
word-break: break-word;
}
.footer-bottom {
margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}
.footer-bottom span {
color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.back-top {
position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: var(--transition);
  z-index: 999;
}
.back-top:hover {
background: var(--primary);
}
.back-top.show {
opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1200px) {
.phone-wrap {
min-height: 600px;
}
.phone-img {
width: 640px;
}
}
@media (max-width: 991px) {
.section-padding {
padding: 75px 0;
}
.hero-section {
min-height: 620px;
}
.hero-row {
min-height: 620px;
    padding: 60px 0;
}
.hero-logo {
width: 220px;
}
.hero-text p {
font-size: 16px;
}
.hero-product-wrap {
min-height: 430px;
}
.hero-product-img {
width: 560px;
}
.section-header h2,
  .video-section .section-header h2,
  .app-section .section-header h2,
  .info-content h2 {
font-size: clamp(42px, 7vw, 58px) !important;
}
.contact-info h2 {
font-size: clamp(38px, 7vw, 52px) !important;
}
.about-section .section-header h2 img,
  .about-section .section-header h2 img.about-title-logo {
width: 170px !important;
    max-width: 170px !important;
}
.info-visual {
min-height: 360px;
}
.circle-main {
left: 50%;
  transform: translateX(-40%);
}
.circle-small.top {
left: 8%;
}
.circle-small.bottom {
left: 2%;
}
.app-content,
  .section-header.left {
text-align: center;
}
.app-content p {
margin-left: auto;
    margin-right: auto;
}
.check-item {
text-align: left;
}
.store-buttons {
justify-content: center;
}
.phone-wrap {
min-height: 560px;
}
.phone-img {
width: 600px;
}
.video-section .container-xl {
max-width: 720px;
}
.video-row {
margin-bottom: 60px;
}
.video-box video {
height: 260px;
}
.video-text,
  .video-text-right,
  .video-text-left {
max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
}
}
@media (max-width: 768px) {
.hero-section {
min-height: 560px;
}
.hero-row {
min-height: 560px;
    padding: 50px 0;
}
.hero-overlay {
background: linear-gradient(
      90deg,
      rgba(1, 18, 35, 0.84),
      rgba(1, 18, 35, 0.45)
    );
}
.hero-text {
max-width: 360px;
}
.hero-logo {
width: 210px;
}
.hero-text p {
font-size: 15px;
}
.section-header h2,
  .video-section .section-header h2,
  .app-section .section-header h2,
  .info-content h2 {
font-size: 42px !important;
    letter-spacing: -1px;
}
.contact-info h2 {
font-size: 38px !important;
}
.about-section .section-header h2 {
gap: 12px;
}
.about-section .section-header h2 img,
  .about-section .section-header h2 img.about-title-logo {
width: 145px !important;
    max-width: 145px !important;
}
.section-header p,
  .about-section .section-header p {
font-size: 15px;
    line-height: 1.7;
}
.video-text h3 {
font-size: 28px !important;
}
.app-content h3 {
font-size: 30px !important;
}
.info-content p {
text-align: left;
    font-size: 16px;
}
.contact-item p {
font-size: 16px;
}
}
@media (max-width: 575px) {
.hero-section {
min-height: 520px;
}
.hero-row {
min-height: 520px;
}
.hero-bg img {
object-position: center;
}
.primary-btn {
padding: 13px 24px;
}
.section-header h2,
  .video-section .section-header h2,
  .app-section .section-header h2,
  .info-content h2 {
font-size: 36px !important;
}
.contact-info h2 {
font-size: 34px !important;
}
.about-section .section-header h2 {
display: flex;
    flex-direction: column;
    gap: 10px;
}
.about-section .section-header h2 img,
  .about-section .section-header h2 img.about-title-logo {
width: 135px !important;
    max-width: 135px !important;
}
.section-header p,
  .about-section .section-header p {
font-size: 14px;
}
.circle-main {
width: 210px;
    height: 210px;
    left: 42%;
    top: 100px;
}
.circle-main img {
width: 120px;
}
.circle-small {
width: 135px;
    height: 135px;
}
.circle-small img {
width: 72px;
}
.number-item {
grid-template-columns: 48px 1fr;
}
.number-item span {
width: 44px;
    height: 44px;
}
.video-box video {
height: 210px;
}
.video-text h3 {
font-size: 24px !important;
}
.video-text p {
font-size: 15px;
}
.phone-wrap {
min-height: 430px;
}
.phone-img {
width: 460px;
}
.store-buttons img {
height: 40px;
}
.contact-form {
padding: 26px 20px;
    border-radius: 22px;
}
.footer-section {
padding: 55px 0 24px;
}
.footer-logo {
width: 135px;
}
}
.hero-section {
position: relative;
  min-height: calc(100vh - 82px);
  margin-top: 82px;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-row {
min-height: calc(100vh - 82px);
  padding: 55px 0;
  position: relative;
  z-index: 4;
}
.hero-bg {
position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-bg img {
width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-overlay {
position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(1, 18, 35, 0.82) 0%,
    rgba(1, 18, 35, 0.62) 34%,
    rgba(1, 18, 35, 0.25) 68%,
    rgba(1, 18, 35, 0.1) 100%
  );
}
.hero-particles {
position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-text {
max-width: 430px;
  color: var(--white);
  position: relative;
  z-index: 6;
}
.hero-logo {
width: 245px;
  max-width: 100%;
  margin-bottom: 22px;
  margin-left: -30px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}
.hero-text p {
max-width: 390px;
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.94);
}
.hero-product-wrap {
width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  position: relative;
  z-index: 5;
  text-align: right;
}
.hero-product-img {
width: clamp(240px, 30vw, 380px);
  max-width: none;
  height: auto;
  display: block;
  margin-left: auto;
  object-fit: contain;

  position: relative;
 

  z-index: 6;
  animation: float 3s ease-in-out infinite;
}
@media (max-width: 991px) {
.hero-section {
min-height: 620px;
    margin-top: 78px;
}
.hero-row {
min-height: 620px;
    padding: 48px 0;
}
.hero-text {
max-width: 350px;
}
.hero-logo {
width: 215px;
    margin-left: -22px;
    margin-bottom: 18px;
}
.hero-text p {
max-width: 320px;
    font-size: 15.5px;
    line-height: 1.55;
    margin-bottom: 24px;
}
.hero-product-wrap {
min-height: clamp(320px, 42vh, 440px);
}
.hero-product-img {
width: clamp(190px, 28vw, 320px);
    right: clamp(0px, 2vw, 22px);
    bottom: clamp(0px, 2vh, 22px);
}
}
@media (min-width: 576px) and (max-width: 767px) {
.hero-section .col-lg-7.col-md-5.d-none.d-md-flex {
right: clamp(28px, 8vw, 72px);
    bottom: clamp(26px, 7vw, 68px);
    width: clamp(112px, 20vw, 160px);
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.hero-product-wrap {
min-height: clamp(330px, 44vh, 500px);
}
.hero-product-img {
width: clamp(190px, 24vw, 340px);
    right: clamp(0px, 2vw, 28px);
    bottom: clamp(0px, 2vh, 26px);
}
}
@media (min-width: 1200px) and (max-width: 1599px) {
.hero-product-img {
width: clamp(260px, 22vw, 400px);
    right: clamp(0px, 2vw, 36px);
    bottom: clamp(0px, 2vh, 30px);
}
}
@media (min-width: 1600px) {
.hero-product-img {
width: clamp(100px, 90vw, 460px);
    right: -150px;
    animation: float 3s ease-in-out infinite;
}
}
@media (max-width: 767px) {
.hero-section {
margin-top: 76px;
    min-height: 0;
    height: auto;
    display: block;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-bg {
position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    z-index: 1;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-bg img {
width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
}
.hero-overlay {
position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      90deg,
      rgba(1, 18, 35, 0.88) 0%,
      rgba(1, 18, 35, 0.55) 46%,
      rgba(1, 18, 35, 0.16) 100%
    );
}
.hero-section > .container,
  .hero-section > .container.position-relative {
position: absolute !important;
    inset: 0;
    height: 100%;
    z-index: 4;
}
.hero-row {
min-height: 0;
    height: 100%;
    padding: 0;
    position: relative;
    align-items: center;
}
.hero-text {
max-width: 46vw;
    padding-left: 2px;
    transform: translateY(-1vw);
}
.hero-logo {
width: clamp(90px, 26vw, 175px);
    margin-left: -8px;
    margin-bottom: clamp(5px, 1.5vw, 12px);
}
.hero-text p {
max-width: 100%;
    font-size: clamp(8.5px, 2vw, 13.5px);
    line-height: 1.38;
    margin-bottom: clamp(7px, 2vw, 16px);
}
.primary-btn {
padding: clamp(7px, 1.8vw, 10px) clamp(11px, 3vw, 18px);
    font-size: clamp(9px, 2vw, 13.5px);
    border-radius: 8px;
    gap: 7px;
}
.hero-section .col-lg-7.col-md-5.d-none.d-md-flex {
display: flex !important;
    position: absolute;
    right: 5vw;
    bottom: 50px;
    width: 100px;
 
    height: auto;
    padding: 0;
    z-index: 5;
}
.hero-product-wrap {
width: 100%;
    min-height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hero-product-img {
width: 90px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;

  position: relative;
  right: -5px;
}
.hero-particles span {
width: 6px;
    height: 6px;
}
}
@media (max-width: 575px) {
.hero-text {
max-width: 47vw;
}
.hero-logo {
margin-left: -6px;
}
.hero-section .col-lg-7.col-md-5.d-none.d-md-flex {
right: clamp(22px, 10vw, 55px);
  bottom: clamp(14px, 6vw, 34px);
  width: clamp(76px, 22vw, 118px);
}
}
@media (max-width: 390px) {
.hero-section .col-lg-7.col-md-5.d-none.d-md-flex {
right: clamp(2px, 3vw, 20px);
  bottom: clamp(10px, 5vw, 22px);
  width: clamp(70px, 24vw, 102px);
}
.hero-text {
max-width: 48vw;
}
.hero-text p {
font-size: clamp(8px, 2.05vw, 12px);
}
.primary-btn {
padding: 6px 10px;
}
.hero-product-img {
width: 100%;
    left: auto;
    right: 0;
}
}

@media (max-width: 767px) {
  .store-buttons {
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    text-align: center;
  }

  .store-title {
    width: 100%;
    margin: 0;
    font-size: 22px;
    text-align: center;
  }

  .store-buttons a {
    justify-content: center;
  }

  .store-buttons img {
    height: 42px;
  }
}

@media (max-width: 420px) {
  .store-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .store-title {
    font-size: 21px;
  }

  .store-buttons img {
    height: 40px;
  }
}
