body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.container {
  max-width: 100% !important;
}

.main_body_section {
  background: url("../images/home_page/frame2.png") no-repeat center top;
  background-size: cover;
  width: 100%;
  padding: 0 10%;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  margin: 0;
  box-sizing: border-box;
}

/* =======================
HERO SECTION (Desktop)
======================= */
.para-mob {
  display: none;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 100px;
  padding: 70px 0;
  /* max-width: 1750px; */
  /* margin-left: auto; */
  /* margin-right: auto; */
  overflow-x: hidden;
}

.hero-content {
  flex: 1 1 auto;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-right: 40px;
}

.hero-content h1 {
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: #fff;
}

.axis-highlight {
  background: linear-gradient(100.77deg, #CED6FF 8.16%, #51B1FF 42.72%, #0147FF 80.05%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-content p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 35px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-size: 14.5px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* HERO IMAGE - REMOVED FIXED FLEX */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 700px;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap:
    wrap;
}

.btn-primary-custom {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: linear-gradient(90deg, #1d4af9 0%, #3a6efb 100%);
  color: #fff;
  box-shadow: 0 0 9px rgba(29, 74, 249, 0.8);
  transition: background 0.3s ease;
}

.btn-primary-custom:hover {
  background: linear-gradient(90deg, #3a6efb 0%, #1d4af9 100%);
}

.btn-primary-custom,
.btn-secondary-custom {
  width: auto;
  max-width: none;
  justify-content: center;
}

.btn-secondary-custom {
  padding: 6px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #ccc;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.25);
}

.container-fluid {
  padding: 0%;
}

/* MEDIA QUERIES */
@media (max-width:1400px) {
  .hero-image img {
    width: 500px;
  }

}

/* TABLET STYLES <=1024px */
@media (max-width: 1440px) {
  .hero-image img {
    width: 400px;
  }
}

@media (max-width: 1024px) {
  .main_body_section {
    padding: 0 5%;
    background-image: url("../images/home_page/frame1.png");
  }

  .hero-image {
    margin-top: 10%;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: auto;
    padding: 8px 15px;
    max-width: 320px;
    justify-content: center;
  }

  .card.large,
  .card.small {
    max-width: 100%;
  }

  .hero-wrapper {
    flex-direction: column;
    align-items:
      center;
    text-align: center;
    padding-top: 40px;
  }

  .hero-content {
    align-items: center;
    padding-right: 0;
  }

  .badges-row,
  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 90%;
  }

  .main-heading {
    font-size:
      clamp(2rem, 5vw, 3.875rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  }

  .hero-content {
    align-items:
      center;
    padding-right: 0;
  }

  .hero-buttons {
    width: 100%;
    /* flex-direction: column; */
    align-items: center;
  }

  .badges-row .badge {
    display: none;
  }

  .badges-row b {
    font-size: clamp(1rem, 2vw, 1.375rem);
  }

  body,
  html {
    width: 100%;
    overflow-x:
      hidden;
  }
}

/* MOBILE STYLES <=480px */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    padding: 6px 12px;
    font-size: 12px;
    width: auto;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 5vw,
        2.5rem);
  }

  .hero-wrapper {
    padding:
      20px 10px;
  }
}