@font-face {
  font-family: "Gilroys";
  src: url("font/gilroy-bold-4.otf") format("woff2");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: Gilroy, Gilroy;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 200px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 30px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotateAfterSlide {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A6375 0%, #111727 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}
.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-content {
  text-align: center;
  color: #fff;
}
.loader-logo {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}
@media (min-width: 768px) {
  .loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
  }
}
.loader-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@media (min-width: 768px) {
  .loader-spinner {
    width: 40px;
    height: 40px;
    border-width: 4px;
  }
}
.loader-text {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 15px;
  animation: fadeIn 1s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  .loader-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .loader-text {
    margin-top: 20px;
  }
}
.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (min-width: 768px) {
  .header {
    padding: 15px 0;
  }
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .header-content {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .header-content {
    padding: 0 30px;
  }
}
.logo {
  height: 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  margin-right: auto;
}
@media (min-width: 768px) {
  .logo {
    height: 45px;
  }
}
.logo:hover {
  transform: scale(1.1) rotate(2deg);
}
.nav {
  display: none;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
  }
  .nav a {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 16px;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }
  .nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #0A6375 0%, #111727 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 2px;
  }
  .nav a:hover {
    background: rgba(10, 99, 117, 0.1);
    transform: translateY(-2px);
    color: #0A6375;
  }
  .nav a:hover::after {
    width: 100%;
  }
}
.google-play-btn {
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 10px;
  display: none;
  align-items: center;
  gap: 5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .google-play-btn {
    display: flex;
    font-size: 12px;
  }
}
.google-play-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.google-play-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.google-play-btn:hover::before {
  left: 100%;
}
.google-play-btn img {
  height: 16px;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .google-play-btn img {
    height: 35px;
  }
}
.google-play-btn img:hover {
  transform: scale(1.2) rotate(5deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu .mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  z-index: 1001;
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  font-size: 30px;
  color: #111727;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-menu .mobile-menu-close:hover {
  color: #0A6375;
  background: rgba(10, 99, 117, 0.1);
  transform: scale(1.2);
}
.mobile-menu .mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 60px 0;
}
.mobile-menu a {
  display: block;
  padding: 20px 30px;
  color: #111727;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 5px 0;
  position: relative;
  overflow: hidden;
}
.mobile-menu a.google-play-btn {
  display: flex;
  color: #fff;
  padding: 0px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}
.mobile-menu a.google-play-btn:hover {
  transform: translateY(0px);
  box-shadow: none;
}
.mobile-menu a.google-play-btn img {
  height: 58px;
  margin-right: 8px;
}
.mobile-menu a.google-play-btn img:hover {
  transform: scale(1) rotate(0);
}
.menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #111727;
  padding: 5px;
  border-radius: 5px;
  z-index: 1001;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle:hover {
  background: rgba(10, 99, 117, 0.1);
  transform: scale(1.1);
}
.menu-toggle:active {
  transform: scale(0.95);
}
.hero {
  background: rgba(10, 99, 117, 0.05);
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .hero {
    margin-top: 70px;
    padding: 70px 0;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  animation: float 20s ease-in-out infinite;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  grid-template-areas: "hero-image" "hero-text";
}
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
    grid-template-areas: "hero-text hero-image";
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 0 60px;
  }
}
.hero-text {
  grid-area: hero-text;
}
.hero-text > img {
  height: 57px;
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: 0.1rem;
  font-family: Gilroys;
  color: #000000;
  font-weight: 900;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }
}
.hero-text .subtitle {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-text .subtitle {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .hero-text .subtitle {
    margin-bottom: 15px;
    margin-top: 40px;
  }
}
.hero-text .subtitle2 {
  color: #666;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-text .subtitle2 {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .hero-text .subtitle2 {
    margin-bottom: 15px;
    margin-bottom: 40px;
  }
}
.slide-in-left {
  animation: slideInLeft 2s ease-out forwards;
  opacity: 0;
}
.slide-in-left img {
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}
.slide-in-left h1 {
  animation: fadeInUp 1s ease-out 0.8s forwards;
  opacity: 0;
}
.slide-in-left h1:nth-child(2) {
  animation-delay: 1s;
}
.slide-in-left .subtitle {
  animation: fadeInUp 1s ease-out 1.2s forwards;
  opacity: 0;
}
.slide-in-left .subtitle2 {
  animation: fadeInUp 1s ease-out 1.4s forwards;
  opacity: 0;
}
.slide-in-left .cta-btn {
  animation: fadeInUp 1s ease-out 1.6s forwards;
  opacity: 0;
}
.cta-btn {
  background: #000000;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  width: 100%;
}
@media (min-width: 768px) {
  .cta-btn {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .cta-btn {
    width: 490px;
    padding: 18px 40px;
    border-radius: 30px;
  }
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.5);
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
}
.cta-btn:hover::before {
  left: 100%;
}
.cta-btn:active {
  transform: translateY(-2px) scale(1.02);
}
.hero-image {
  text-align: center;
  position: relative;
  background: url(img/Group.png) no-repeat center center / 100% 100%;
  width: 323px;
  height: 218px;
  opacity: 0;
  transform: translateX(100%);
  animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  grid-area: hero-image;
  margin-bottom: 50px;
}
.hero-image img {
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .hero-image img {
    margin-bottom: 0;
    width: 220px;
    height: 220px;
    bottom: 10px;
    left: -110px;
  }
}
@media (min-width: 768px) {
  .hero-image {
    margin-top: 0;
    width: 613px;
    height: 495px;
    margin-bottom: 0;
  }
}
.hero-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(10, 99, 117, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}
.hero-image img.rotate-after-slide {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards, rotateAfterSlide 10s linear infinite 2.6s;
  animation-play-state: paused, paused;
}
.hero-image.animation-complete img.rotate-after-slide {
  animation-play-state: running, running;
}
.feature-bar {
  background: #0A6375;
  padding: 10px 15px 10px;
  box-sizing: border-box;
  font-family: Gilroy, Gilroy;
  font-weight: 900;
  font-size: 24px;
  color: #FFFFFF;
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature-bar {
    padding: 10px 20px 10px;
  }
}
.feature-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
.feature-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.features-scroll {
  display: flex;
  animation: scroll-left1 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.features-scroll:hover {
  animation-play-state: paused;
}
@keyframes scroll-left1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  min-width: 150px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .feature {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .feature {
    gap: 60px;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 180px;
  }
}
.feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.feature img {
  width: 18px;
  height: 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .feature img {
    width: 24px;
    height: 24px;
  }
}
.feature img:hover {
  transform: scale(1.3) rotate(10deg);
}
.product {
  padding: 60px 15px 0px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .product {
    padding: 60px 20px 0px;
  }
}
@media (min-width: 768px) {
  .product {
    padding: 80px 0;
  }
}
.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(10, 99, 117, 0.03) 50%, transparent 51%);
  background-size: 20px 20px;
}
.product h2 {
  font-family: Gilroys;
}
.product-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .product-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
  }
}
.product-image {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
.product-image video {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  border: none;
}
@media (min-width: 768px) {
  .product-image video {
    border-radius: 25px;
  }
}
.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .product-image img {
    border-radius: 25px;
  }
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .stats {
    gap: 20px;
  }
}
.stat {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  max-width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
@media (min-width: 768px) {
  .stat {
    padding: 0 10px;
    min-height: 70px;
    background: transparent;
    border-radius: 0;
  }
}
@media (min-width: 1024px) {
  .stat {
    padding: 0 15px;
  }
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #0A6375;
  display: none;
}
@media (min-width: 768px) {
  .stat:not(:last-child)::after {
    display: block;
  }
}
.stat img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.stat-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A6375;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 1rem;
    margin-bottom: 5px;
    gap: 4px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .stat-number {
    font-size: 1.3rem;
  }
}
.stat-number img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .stat-number img {
    width: 16px;
    height: 16px;
  }
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 0.8rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}
.stat:first-child img {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .stat:first-child img {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }
}
.stat:last-child .stat-number img {
  width: 16px;
  height: 16px;
}
@media (min-width: 768px) {
  .stat:last-child .stat-number img {
    width: 18px;
    height: 18px;
  }
}
.calculator {
  background: #F0FF1D;
  border-radius: 15px;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .calculator {
    padding: 20px;
    border-radius: 20px;
  }
}
.calculator h3 {
  color: #333333;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .calculator h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .calculator h3 {
    margin-bottom: 25px;
  }
}
.slider-container {
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.slider {
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background: #1F1F1F;
  outline: none;
  -webkit-appearance: none;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .slider {
    height: 4px;
    border-radius: 10px;
  }
}
.slider::-webkit-slider-thumb {
  background: url(img/slider.png) no-repeat center center / 100% 100%;
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .slider::-webkit-slider-thumb {
    width: 60px;
    height: 60px;
  }
}
.loan-amount-range {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.loan-amount {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 1000;
  color: #333;
  background: #FFFFFF;
  border-radius: 56px;
  padding: 10px;
}
@media (min-width: 768px) {
  .loan-amount {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .loan-amount {
    margin: 15px 0;
  }
}
.calculator-details {
  background: #fff;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.detail-title {
  padding: 14px;
  border-radius: 15px 15px 0 0;
  background: #0A6375;
  box-sizing: border-box;
  font-family: PingFang SC, PingFang SC;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .detail-row {
    font-size: 16px;
  }
}
.detail-row:last-child {
  border-bottom: none;
}
.steps {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  position: relative;
  background: rgba(10, 99, 117, 0.05);
}
@media (min-width: 768px) {
  .steps {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .steps {
    padding: 80px 0;
  }
}
.steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.steps h2 {
  text-align: left;
  font-size: 1.8rem;
  color: #111727;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-family: Gilroys;
}
@media (min-width: 768px) {
  .steps h2 {
    font-size: 2.5rem;
  }
}
.steps h2 span {
  color: #0A6375;
}
@media (min-width: 768px) {
  .steps h2 {
    margin-bottom: 50px;
  }
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (min-width: 768px) {
  .steps-grid {
    gap: 40px;
  }
}
.step {
  text-align: center;
  padding: 25px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .step {
    padding: 40px 30px;
    border-radius: 25px;
  }
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 99, 117, 0.1), transparent);
  transition: left 0.6s ease;
}
.step:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.step:hover::before {
  left: 100%;
}
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
  }
}
.step-icon img {
  width: 120px;
  height: 140px;
}
@media (min-width: 768px) {
  .step-icon img {
    width: 75px;
    height: 88px;
  }
}
.step h3 {
  color: #111727;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .step h3 {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .step h3 {
    margin-bottom: 20px;
  }
}
.step h3:hover {
  color: #1a9b94;
}
.step p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .step p {
    font-size: 16px;
  }
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}
::-webkit-scrollbar {
  width: 6px;
}
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 8px;
  }
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #0A6375;
  border-radius: 3px;
}
@media (min-width: 768px) {
  ::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}
::-webkit-scrollbar-thumb:hover {
  background: #1a9b94;
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  .hero {
    padding: 40px 0;
    margin-top: 50px;
  }
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature {
    padding: 8px;
    font-size: 11px;
    gap: 6px;
  }
  .feature img {
    width: 16px;
    height: 16px;
  }
  .stat {
    padding: 15px 10px;
  }
  .calculator {
    padding: 20px 15px;
  }
  .step {
    padding: 20px 15px;
  }
  .step-icon img {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(6, 1fr);
  }
}
.partners {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .partners {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .partners {
    padding: 80px 0;
  }
}
.partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(10, 99, 117, 0.03) 50%, transparent 51%);
  background-size: 20px 20px;
}
.partners .container {
  position: relative;
  z-index: 1;
}
.partners h2 {
  font-size: 1.8rem;
  color: #111727;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  font-family: Gilroys;
}
@media (min-width: 768px) {
  .partners h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .partners h2 {
    margin-bottom: 30px;
  }
}
.partners h3 {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.7);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .partners h3 {
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  .partners h3 {
    margin-bottom: 50px;
  }
}
.partners .partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .partners .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .partners .partners-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 40px;
  }
}
.partners .partners-grid .partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease;
  min-height: 80px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .partners .partners-grid .partner-item {
    padding: 25px;
    min-height: 100px;
    border-radius: 20px;
  }
}
.partners .partners-grid .partner-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}
@media (min-width: 768px) {
  .partners .partners-grid .partner-item img {
    max-height: 80px;
  }
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 15px;
  min-height: 120px;
}
@media (min-width: 768px) {
  .partner-item {
    padding: 25px;
    min-height: 140px;
  }
}
.partner-item img {
  object-fit: contain;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .partner-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}
.culture {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #0A6375;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .culture {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .culture {
    padding: 80px 0;
  }
}
.culture h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .culture h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .culture h2 {
    margin-bottom: 30px;
  }
}
.culture .container > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px !important;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .culture .container > p {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .culture .container > p {
    margin-bottom: 70px !important;
  }
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .culture-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .culture-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
}
.culture-item {
  background: #fff;
  color: #333;
  padding: 10px 25px;
  border-radius: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .culture-item {
    padding: 15px 30px;
  }
}
.culture-item:nth-child(1),
.culture-item:nth-child(3) {
  background: #111727;
  color: #fff;
}
.culture-item:nth-child(1) h3,
.culture-item:nth-child(3) h3 {
  color: #fff;
}
.culture-item:nth-child(1) p,
.culture-item:nth-child(3) p {
  color: rgba(255, 255, 255, 0.8);
}
.culture-item:nth-child(2) {
  background: #F0FF1D;
  color: #333;
}
.culture-item:nth-child(2) h3 {
  color: #333;
}
.culture-item:nth-child(2) p {
  color: #666;
}
.culture-item h3 {
  font-size: 1.3rem;
  color: #111727;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .culture-item h3 {
    font-size: 1rem;
  }
}
.culture-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .culture-item p {
    font-size: 1rem;
  }
}
.culture-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .culture-item img {
    height: 270px;
  }
}
.culture-item.culture-item:last-child .values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}
.culture-item.culture-item:last-child .values > img {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-radius: 20px;
  height: 132px;
}
@media (min-width: 768px) {
  .culture-item.culture-item:last-child .values {
    flex-direction: column;
    gap: 20px;
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-bar-2 {
  background: #111727;
  padding: 10px 15px 10px;
  box-sizing: border-box;
  font-family: Gilroy, Gilroy;
  font-weight: 900;
  font-size: 24px;
  color: #FFFFFF;
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature-bar-2 {
    padding: 10px 20px 10px;
  }
}
.feature-bar-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
.feature-2-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.features-2-scroll {
  display: flex;
  animation: scroll-left1 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.features-2-scroll:hover {
  animation-play-state: paused;
}
.feature2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  min-width: 150px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .feature2 {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .feature2 {
    gap: 90px;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 180px;
  }
}
.feature2:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.feature2 img {
  width: 18px;
  height: 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) {
  .feature2 img {
    width: 24px;
    height: 24px;
  }
}
.feature2 img:hover {
  transform: scale(1.3) rotate(10deg);
}
.compliance {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .compliance {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .compliance {
    padding: 80px 0;
  }
}
.compliance::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(10, 99, 117, 0.03) 50%, transparent 51%);
  background-size: 20px 20px;
}
.compliance-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .compliance-header {
    margin-bottom: 50px;
    gap: 30px;
  }
}
.compliance-header img {
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .compliance-header img {
    height: 150px;
  }
}
.compliance-header .compliance-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .compliance-header .compliance-title-group {
    gap: 15px;
  }
}
.compliance-header h2 {
  font-size: 1.8rem;
  color: #111727;
  margin-bottom: 0;
  font-weight: 700;
}
@media (min-width: 768px) {
  .compliance-header h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .compliance-header h2 {
    margin-bottom: 0;
  }
}
.compliance-header .compliance-subtitle {
  font-size: 1rem;
  color: #0A6375;
  font-weight: 600;
  line-height: 1rem;
}
@media (min-width: 768px) {
  .compliance-header .compliance-subtitle {
    font-size: 1.2rem;
  }
}
.compliance-text {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .compliance-text {
    margin-bottom: 50px;
  }
}
.compliance-text p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .compliance-text p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .compliance-text p {
    margin-bottom: 25px;
  }
}
.compliance-text p:last-child {
  margin-bottom: 0;
}
.contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-box {
    padding: 40px 30px;
    border-radius: 25px;
  }
}
.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 99, 117, 0.1), transparent);
  transition: left 0.6s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-box:hover::before {
  left: 100%;
}
.contact-box h3 {
  font-size: 1.2rem;
  color: #111727;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact-box h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .contact-box h3 {
    margin-bottom: 25px;
  }
}
.contact-box .phone-numbers {
  margin-bottom: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.contact-box .phone-numbers p {
  font-size: 14px;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.6;
  margin: 0;
  text-align: left;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 768px) {
  .contact-box .phone-numbers p {
    font-size: 13px;
    line-height: 1.5;
  }
}
.contact-box .phone-numbers.expanded p {
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.contact-box .phone-numbers:not(.expanded) p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.contact-box .view-all {
  color: #0A6375;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}
.contact-box .view-all:hover {
  color: #063b46;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-box .view-all {
    font-size: 13px;
  }
}
.contact-box .view-all {
  display: inline-block;
  color: #0A6375;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contact-box .view-all {
    font-size: 1rem;
  }
}
.contact-box .view-all::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #0A6375;
  transition: width 0.3s ease;
}
.contact-box .view-all:hover {
  color: #1a9b94;
  transform: translateY(-2px);
}
.contact-box .view-all:hover::after {
  width: 100%;
}
.faq {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .faq {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .faq {
    padding: 80px 0;
  }
}
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(10, 99, 117, 0.03) 50%, transparent 51%);
  background-size: 20px 20px;
}
.faq h2 {
  font-size: 1.8rem;
  color: #111727;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: Gilroys;
}
@media (min-width: 768px) {
  .faq h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .faq h2 {
    margin-bottom: 50px;
  }
}
.faq .faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
  align-items: start;
}
@media (min-width: 768px) {
  .faq .faq-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  align-self: start;
}
@media (min-width: 768px) {
  .faq-item {
    border-radius: 20px;
  }
}
.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.faq-item.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 25px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  flex: 1;
}
@media (min-width: 768px) {
  .faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
  }
}
.faq-question:hover {
  background: rgba(10, 99, 117, 0.05);
}
.faq-question:focus {
  outline: none;
  background: rgba(10, 99, 117, 0.1);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0A6375;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
@media (min-width: 768px) {
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
    margin-left: 20px;
  }
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(10, 99, 117, 0.03);
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .faq-answer p {
    padding: 0 30px 25px;
    font-size: 1rem;
  }
}
.faq-item.active .faq-question {
  background: rgba(10, 99, 117, 0.08);
  color: #0A6375;
}
.faq-item.active .faq-icon {
  background: #1a9b94;
  transform: rotate(45deg);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
@media (max-width: 480px) {
  .faq-question {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  .faq-icon {
    width: 20px;
    height: 20px;
    font-size: 14px;
    margin-left: 10px;
  }
  .faq-answer p {
    padding: 0 20px 15px;
    font-size: 0.85rem;
  }
}
.contact {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #F3F7F8;
  position: relative;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0;
  }
}
.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 99, 117, 0.05) 0%, transparent 50%, rgba(17, 23, 39, 0.05) 100%);
}
.contact .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 157px;
    align-items: center;
  }
}
.contact .contact-content h2 {
  font-family: Gilroys;
  font-weight: 900;
  color: #21273A;
  text-align: left;
  font-size: 40px;
}
@media (min-width: 768px) {
  .contact .contact-content h2 {
    text-align: left;
    order: 1;
  }
}
.contact .contact-content h3 {
  font-family: Gilroys;
  font-weight: 900;
  font-size: 40px;
  color: #21273A;
  text-align: left;
}
@media (min-width: 768px) {
  .contact .contact-content h3 {
    text-align: left;
    margin-bottom: 20px;
    order: 1;
  }
}
.contact .contact-text {
  text-align: center;
  order: 2;
}
@media (min-width: 768px) {
  .contact .contact-text {
    text-align: left;
    order: 2;
  }
}
.contact .contact-text img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  padding: 0 33px transition: all 0.3s ease;;
}
@media (min-width: 768px) {
  .contact .contact-text img {
    border-radius: 20px;
  }
}
.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  order: 3;
  height: 100%;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .contact .contact-info {
    order: 3;
  }
}
.contact .contact-item {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  border-bottom: 2px solid #0A6375;
}
@media (min-width: 768px) {
  .contact .contact-item {
    padding: 30px 0;
    gap: 20px;
  }
}
.contact .contact-item:last-child {
  border-bottom: none;
}
.contact .contact-item > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact .contact-item > div:first-child {
    gap: 15px;
  }
}
.contact .contact-item > div:first-child img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact .contact-item > div:first-child span,
.contact .contact-item > div:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contact .contact-item > div:first-child span,
  .contact .contact-item > div:first-child {
    font-size: 1rem;
  }
}
.contact .contact-item > div:last-child {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  word-break: break-word;
}
@media (min-width: 768px) {
  .contact .contact-item > div:last-child {
    font-size: 1rem;
    margin-left: 0px;
  }
}
@media (max-width: 480px) {
  .contact .contact-title {
    margin-bottom: 30px;
  }
  .contact .contact-title h2 {
    font-size: 1.8rem;
  }
  .contact .contact-content {
    gap: 30px;
  }
  .contact .contact-content h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .contact .contact-info {
    gap: 0;
  }
  .contact .contact-item {
    padding: 20px 0;
    gap: 12px;
  }
  .contact .contact-item > div:first-child {
    gap: 10px;
  }
  .contact .contact-item > div:first-child img {
    width: 20px;
    height: 20px;
  }
  .contact .contact-item > div:first-child span,
  .contact .contact-item > div:first-child {
    font-size: 0.9rem;
  }
  .contact .contact-item > div:last-child {
    font-size: 0.85rem;
    margin-left: 30px;
  }
}
.account-deletion {
  padding: 60px 15px 60px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .account-deletion {
    padding: 60px 20px 60px;
  }
}
@media (min-width: 768px) {
  .account-deletion {
    padding: 80px 0;
  }
}
.account-deletion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 99, 117, 0.03) 0%, transparent 50%, rgba(17, 23, 39, 0.03) 100%);
}
.account-deletion .container {
  text-align: center;
  position: relative;
  z-index: 1;
}
.account-deletion h3 {
  font-size: 1.5rem;
  color: #111727;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  font-family: Gilroys;
}
@media (min-width: 768px) {
  .account-deletion h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .account-deletion h3 {
    margin-bottom: 25px;
  }
}
.account-deletion p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .account-deletion p {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .account-deletion p {
    margin-bottom: 50px;
  }
}
.account-deletion .delete-btn {
  background: #fff;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: Roboto, Roboto;
  font-weight: 500;
  font-size: 16px;
  color: #111727;
  transition: all 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 40px 40px;
  border: 1px solid #0A6375;
}
@media (min-width: 768px) {
  .account-deletion .delete-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    width: 752px;
  }
}
.account-deletion .delete-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.account-deletion .delete-btn:hover::before {
  left: 100%;
}
.account-deletion .delete-btn:active {
  transform: translateY(0);
}
.account-deletion .delete-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .account-deletion .delete-btn img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .account-deletion .container {
    padding: 0 20px;
  }
  .account-deletion h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  .account-deletion p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .account-deletion .delete-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .account-deletion .delete-btn img {
    width: 18px;
    height: 18px;
  }
}
.feature-bar-3 {
  background: #0A6375;
  padding: 10px 15px 10px;
  box-sizing: border-box;
  font-family: Gilroy, Gilroy;
  font-weight: 900;
  font-size: 24px;
  color: #FFFFFF;
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .feature-bar-3 {
    padding: 10px 20px 10px;
  }
}
.feature-bar-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
.feature-3-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.features-3-scroll {
  display: flex;
  animation: scroll-left3 20s linear infinite;
  white-space: nowrap;
}
.feature-3-item {
  display: inline-flex;
  align-items: center;
  margin-right: 40px;
  font-size: 24px;
  font-weight: 900;
  color: #FFFFFF;
  white-space: nowrap;
}
.feature-3-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@keyframes scroll-left3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.footer {
  background: #111727;
  padding: 40px 15px 40px;
  box-sizing: border-box;
  position: relative;
  color: #fff;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 20px 40px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0;
  }
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 99, 117, 0.05) 0%, transparent 50%, rgba(17, 23, 39, 0.05) 100%);
}
.footer .footer-scroll {
  background: #111727;
  padding: 10px 15px 10px;
  box-sizing: border-box;
  font-family: Gilroy, Gilroy;
  font-weight: 900;
  font-size: 24px;
  color: #FFFFFF;
  text-align: left;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .footer .footer-scroll {
    padding: 10px 20px 10px;
  }
}
.footer .footer-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}
.footer .footer-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.footer .footer-scroll-text {
  display: flex;
  animation: scroll-left 20s linear infinite;
  white-space: nowrap;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.footer .footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .footer-left {
    gap: 30px;
  }
}
.footer .footer-left .footer-logo {
  width: auto;
  height: 40px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .footer .footer-left .footer-logo {
    height: 50px;
  }
}
.footer .footer-left div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid #fff;
  padding-left: 20px;
}
.footer .footer-left div .footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0;
  font-size: 10px;
}
@media (min-width: 768px) {
  .footer .footer-left div .footer-text {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .footer .footer-left div .footer-text {
    font-size: 16px;
  }
}
.footer .footer-left div .footer-text:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
@media (min-width: 768px) {
  .footer .footer-left div .footer-text:last-child {
    font-size: 14px;
  }
}
.footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer .footer-right {
    align-items: flex-end;
  }
}
.footer .footer-right .social-links {
  display: flex;
  gap: 15px;
}
.footer .footer-right .social-links > img {
  width: 36px;
}
.footer .footer-right .footer-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}
.footer .footer-right .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-right .footer-links a:hover {
  color: #0A6375;
}
.footer .footer-right .copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media (min-width: 768px) {
  .footer .footer-right .copyright {
    text-align: right;
    font-size: 14px;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .modal-overlay {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  .modal-content {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
    /* 确保在移动端可以正常滚动 */
    position: relative;
    /* 添加触摸滚动支持 */
    touch-action: pan-y;
  }
  .modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(80vh - 120px);
  }
  body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}
.modal-content {
  background: #fff;
  border-radius: 20px;
  width: 95%;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.modal-overlay.show .modal-content {
  transform: scale(1);
}
@media (min-width: 768px) {
  .modal-content {
    width: 70%;
    max-width: 70%;
  }
}
@media (max-width: 768px) {
  .modal-content {
    border-radius: 15px;
  }
}
.modal-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
@media (max-width: 768px) {
  .modal-header {
    padding: 25px 20px 15px;
  }
}
.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .modal-logo {
    height: 50px;
  }
}
.modal-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .modal-logo img {
    height: 50px;
  }
}
.modal-body {
  padding: 25px 30px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .modal-body {
    padding: 20px;
  }
}
.modal-text {
  margin-bottom: 20px;
}
.modal-text:last-child {
  margin-bottom: 0;
}
.modal-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}
.modal-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .modal-text p {
    font-size: 13px;
  }
}
.modal-text.english {
  text-align: left;
}
.modal-text.urdu {
  text-align: right;
  direction: rtl;
  font-family: 'Noto Sans Arabic', Arial, sans-serif;
}
.modal-footer {
  padding: 20px 30px 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .modal-footer {
    padding: 15px 20px 25px;
  }
}
.modal-ok-btn {
  background: #0A6375;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}
.modal-ok-btn:hover {
  background: #063b46;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 99, 117, 0.3);
}
.modal-ok-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .modal-ok-btn {
    padding: 10px 35px;
    font-size: 15px;
    min-width: 100px;
  }
}
.apply-now-btn {
  width: 100%;
  display: block;
}
.apply-now-btn .cta-btn {
  width: 100%;
  margin-top: 17px;
}
