@import url("https://fonts.googleapis.com/css2?family=Muli:wght@300;400;600;700;800&display=swap"); /* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Muli", sans-serif;
}
body {
  background: #f7f9fc;
  color: #111;
} /* ================= MAIN SECTION ================= */
.kvi {
  max-width: 1300px;
  width: 100%;

  min-height: calc(100vh - 180px);

  margin: auto;
  padding: 70px 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}/* ================= LEFT ================= */
.left {
  flex: 1;
}
.left img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 10px 30px;
} /* ================= RIGHT ================= */
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.right h1 {
  font-size: 42px;
  color: #013f6e;
  font-weight: 800;
}
.version {
  font-size: 18px;
  color: #555;
} /* ================= OS BUTTONS ================= */
.btn {
  display: flex;
  align-items: center;
  gap: 18px;
}
.os-btn {
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 16px;
  background: #fff;
  font-size: 30px;
  color: #222;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.os-btn:hover {
  transform: translateY(-4px);
}
.os-btn.active {
  background: #013f6e;
  color: #fff;
} /* ================= DOWNLOAD AREA ================= */
.btn1 {
  width: 100%;
}
.download-box {
  display: flex;
}
.apple-box {
  display: none;
}
.download-btn {
  position: relative;
  width: 350px;
  max-width: 100%;
  height: 65px;
  border: none;
  border-radius: 16px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 19px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  transition: 0.3s ease;
}
.download-box a{
  text-decoration: none;
}
.download-btn:hover{
  background: #013f6e;
  color: #fff;
}
.download-btn i {
  font-size: 24px;
}
.download-btn:hover {
  transform: translateY(-3px);
} /* ================= BADGE ================= */
.badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #013f6e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
} /* ================= MOBILE SECTION ================= */
.mobile {
  width: 70%;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 25px;
}
.mobile p {
  flex: 1;
  font-size: 18px;
  line-height: 1.7;
} /* ================= STORE BUTTONS ================= */
.button {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.button span{
    width: 52%;
}
.store-btn {
  width: 220px;
  height: 65px;
  border: none;
  border-radius: 14px;
  background: #000;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.store-btn i {
  font-size: 24px;
}
.store-btn:hover {
  transform: translateY(-4px);
}
.app-store {
  opacity: 0.7;
  cursor: not-allowed;
} /* ================= TABLET ================= */
@media (max-width: 992px) {
  .kvi {
    flex-direction: column;
    text-align: center;
    padding: 50px 25px;
  }
  .right {
    align-items: center;
  }
  .mobile {
    width: 92%;
    flex-direction: column;
   
  }
  .button {

    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
 
} /* ================= MOBILE ================= */
@media (max-width: 576px) {
  .kvi {
    padding: 40px 20px;
    gap: 45px;
  }
  .left img {
    height: 250px;
  }
  .right h1 {
    font-size: 30px;
  }
  .download-btn {
    width: 100%;
    height: 60px;
    font-size: 17px;
  }
  .mobile {
    width: 95%;
    padding: 22px;
  }
  .mobile p {
    font-size: 16px;
  }
  .button{
    display: flex;
    flex-direction: column;
  }
  .store-btn {
    width: 100%;
    height: 60px;
  }
}
