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

.mb-2 {
  margin-bottom: 20px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #87ceeb 0%, #a8d8ff 100%);
  min-height: 100vh;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 20px;
  /* max-width: 1200px; */
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.branding {
  display: flex;
  align-items: center;
  gap: 8px;
}

.branding img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo_text {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: .1px;
  font-family: 'Poppins', sans-serif;
}

.nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #7c5cdb;
}

.signup-btn {
  background: linear-gradient(135deg, #7c5cdb 0%, #6b4ec8 100%);
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.signup-btn:hover {
  transform: translateY(-2px);
}

/* Main Content */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.left-section h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.left-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 35px;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, #7c5cdb 0%, #6b4ec8 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f5f5f5;
}

/* Right Section */
.right-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  width: 100%;
  max-height: 600px;
  background: linear-gradient(135deg, #d4e8f7 0%, #e8f4fb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.label {
  position: absolute;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.label-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4dd9ab 0%, #38c888 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.label-1 {
  top: 60px;
  right: 30px;
}

.label-2 {
  top: 220px;
  right: 20px;
}

.label-3 {
  bottom: 80px;
  right: 30px;
}

.hero-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-footer .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  max-width: 100px;
  border: 1px solid #ff758c;
  border-radius: 10px;
}

.hero-footer .card i {
  font-size: 24px;
}

.hero-footer .card-text {
  font-size: 14px;
  margin: 0;
  text-align: center;
  line-height: normal;
}

/* Responsive */
@media screen and (max-width: 1100px) {
  .content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .nav {
    gap: 20px;
    font-size: 12px;
  }

  .left-section h1 {
    font-size: 36px;
  }

  .buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-wrapper {
    height: 300px;
  }

  .hero-footer {
    justify-content: center;
  }
}


/* ============================= section title ============================================ */


.heading_cont .headintxt {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  font-size: 25px;
}

.heading_cont .headintxt::after {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -5px;
  border: 1px solid rgb(255, 0, 102);
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
}

.section-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ==================================== screenhsot =====================================  */

.screenshot-media-parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.screenshot-media-parent .img-wrapper {
  max-width: 400px;
  border-radius: 10px;
}

.screenshot-media-parent img {
  width: 100%;
  object-fit: cover;
}


/* ==================================== square =====================================  */

.square-media-parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.square-media-parent .img-wrapper {
  max-width: 100px;
}

.square-media-parent img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ================================= blogs ==================================  */

.blog-parent{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.blog-parent .blog{
  width: 250px;
  height: 200px;
  padding: 20px;
  background-color: #111133;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.blog-parent .blog-title{
  color: white;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .8px;
}

/* faq */

.faq_parent_ul .li {
  list-style: none;
  width: 100%;
  margin: 20px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  margin-left: 0;
}

.faq_parent_ul .li label {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.faq_parent_ul .li label::before {
  content: "+";
  margin-right: 10px;
  font-size: 24px;
  font-weight: 600;
}

.faq_parent_ul .li input[type="radio"] {
  display: none;
}

.faq_parent_ul .ans_content {
  padding: 0 9.5px;
  color: #555;
  line-height: 25.8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.faq_parent_ul input[type="radio"]:checked+label+.ans_content {
  max-height: fit-content;
  padding: 10px 10px 20px;
}

.faq_parent_ul .li input[type="radio"]:checked+label::before {
  content: "-";
}


/* ==================================== download qr ==============================  */

.qr {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20;
}

.qr .img-parent{
  max-width: 300px;
}

.qr .img-parent img {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .qr {
    flex-wrap: wrap;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

footer ul a {
  text-decoration: none;
}