* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  color: #111827;
  background: linear-gradient(180deg, #b1def3 0%, #f4fcff 48%, #fff 100%);
}

.hero-section {
  min-height: calc(100vh - 58px);
  padding: 42px 0 40px;
  position: relative;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;
}
.max-container{
  width:100%;
  max-width: 950px;
}
.logo {
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #111827;
}

.logo span {
  font-weight: 700;
  color: #2f5875;
}

h1 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.23;
	letter-spacing: -1px;
	margin-bottom: 14px;
	color: #050b16;
}

.hero-text {
  font-size: 17px;
  line-height: 1.45;
  color: #263241;
  max-width: 420px;
}

.main-img {
	width: 100%;
	max-width: 280px;
	margin: 20px auto;
	display: block;
}

.download-card {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  border-radius: 18px;
  padding: 23px 26px 18px;
  text-align: center;
  box-shadow: 0 18px 42px rgba(25, 55, 85, 0.14);
}

.download-card h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0d1117;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  width: 185px;
  min-height: 58px;
  border-radius: 9px;
  padding: 8px 14px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: 0.25s ease;
  border: 1px solid rgba(255,255,255,0.16);
}

.store-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.store-btn small {
  display: block;
  font-size: 10.5px;
  line-height: 1;
  opacity: 0.95;
}

.store-btn strong {
  display: block;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
}

.icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apple-icon img{
  width:42px;
}

.play-icon img {
  width:36px;
}

.windows-icon img{
 width:36px;
}



.appstore {
  background: #111827;
}

.playstore {
  background: #078fa3;
}

.windows {
  background: #173f5f;
}

.available-text {
  font-size: 16px;
  color: #1f2937;
  margin: 19px 0 0;
}

footer {
  min-height: 58px;
  text-align: center;
  font-size: 13px;
  color: #111827;
  padding: 18px 12px;
}

.bg-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.shape-1,
.shape-2 {
  width: 30px;
  height: 30px;
  background: #82d6fa;
  border-radius: 30px;
}

.shape-1 {
  left: 19%;
  bottom: 25%;
}

.shape-2 {
  right: 17%;
  top: 27%;
}

.shape-3 {
  width: 13px;
  height: 13px;
  background: #5ccac4;
  border-radius: 50%;
  left: 61%;
  top: 16%;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 34px;
  }

  .logo {
    text-align: center;
  }

  h1 {
    font-size: 34px;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
    text-align: center;
  }

  .download-card {
    margin-top: 8px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 28px 0 30px;
    min-height: auto;
  }

  .logo {
    font-size: 26px;
    margin-bottom: 28px !important;
  }

  h1 {
    font-size: 29px;
  }

  .hero-text {
    font-size: 16px;
  }

  .download-card {
    padding: 22px 16px 18px;
    border-radius: 16px;
  }

  .download-card h2 {
    font-size: 22px;
  }

  .button-group {
    flex-direction: column;
    gap: 12px;
  }

  .store-btn {
    width: 100%;
    max-width: 270px;
    justify-content: center;
  }

  .available-text {
    font-size: 15px;
  }
}
