/* =========================================
   JOBONN APP STORE BUTTONS
========================================= */

.jbnn-google-play-btn,
.jbnn-app-store-btn {
    width: 145px !important;
    height: 44px !important;
    background: #050505 !important;
    border: 1px solid #666 !important;
    border-radius: 7px !important;

    display: inline-flex !important;
    align-items: center !important;

    padding: 0 9px !important;
    box-sizing: border-box !important;

    text-decoration: none !important;
    color: #fff !important;

    flex-shrink: 0;
    vertical-align: middle;

    transition: all 0.2s ease;
}

.jbnn-google-play-btn:hover,
.jbnn-app-store-btn:hover {
    background: #111;
    border-color: #999;
    transform: translateY(-1px);
}


/* Google Play Logo */

.jbnn-play-logo {
    width: 25px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-right: 8px;
}

.jbnn-play-logo svg {
    width: 24px;
    height: 28px;
    display: block;
}


/* Apple Logo */

.jbnn-apple-logo {
    width: 25px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-right: 8px;
}

.jbnn-apple-logo svg {
    width: 21px;
    height: 25px;
    display: block;
}

/* ============================================ */
/* JOBONN - OUR TEAM SECTION STYLES */
/* ============================================ */

.jobonn-team-section {
  width: 100%;
  background-color: #ffffff;
  padding: 50px 20px;
  box-sizing: border-box;
}

.jobonn-team-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Header ---------- */

.jobonn-team-header {
  text-align: center;
  margin-bottom: 50px;
}

.jobonn-team-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px 0;
  letter-spacing: -0.5px;
}

.jobonn-team-subtitle {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* ---------- Grid ---------- */

.jobonn-team-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}

/* ---------- Card ---------- */

.jobonn-team-card {
  background-color: #ffffff;
  text-align: center;
  padding: 35px 20px;
  border-radius: 14px;
  border: 1px solid #eef0f3;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jobonn-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ---------- Image ---------- */

.jobonn-team-image-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 22px auto;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #dcdfe4;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.jobonn-team-card:hover .jobonn-team-image-wrap {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.jobonn-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  transition: transform 0.35s ease;
}

.jobonn-team-card:hover .jobonn-team-image {
  transform: scale(1.06);
}

/* ---------- Text ---------- */

.jobonn-team-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  letter-spacing: -0.2px;
}

.jobonn-team-role {
  font-size: 13.5px;
  font-weight: 500;
  color: #8a8f98;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .jobonn-team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .jobonn-team-heading {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .jobonn-team-section {
    padding: 40px 16px;
  }

  .jobonn-team-header {
    margin-bottom: 30px;
  }

  .jobonn-team-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .jobonn-team-heading {
    font-size: 28px;
  }

  .jobonn-team-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .jobonn-team-image-wrap {
    width: 150px;
    height: 150px;
  }
}

/* ---- Thank You Page Styling ---- */
.jobonn-thankyou-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 50px 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.jobonn-thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3f4cff 0%, #10b981 100%);
}

.jobonn-thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
  margin-bottom: 24px;
}

.payment-summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  margin: 30px auto 0 auto;
  width: 100%;
  max-width: 480px;
  text-align: left;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #cbd5e1;
}

.payment-summary-row:last-child {
  border-bottom: none;
}

.payment-summary-label {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

.payment-summary-value {
  color: #0f172a;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .jobonn-thankyou-card {
    padding: 35px 20px;
  }
  .jobonn-thankyou-icon {
    width: 75px;
    height: 75px;
    font-size: 34px;
  }
}