@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --font-primary: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-h1: 42px;
  --fs-h2: 40px;
  --fs-h3: 32px;
  --fs-h4: 26px;
  --fs-h5: 22px;
  --fs-h6: 18px;
  --fs-body: 16px;
  --fs-lg: 18px;
  --fs-sm: 14px;
  --fs-caption: 12px;
  --fs-btn: 16px;
  --fs-nav: 16px;
  --fs-label: 14px;
  --lh-h1: 1.15;
  --lh-h2: 1.2;
  --lh-h3: 1.25;
  --lh-h4: 1.3;
  --lh-h5: 1.35;
  --lh-h6: 1.4;
  --lh-body: 1.6;
  --lh-tight: 1.3;
  --ls-h1: -.02em;
  --ls-h2: -.02em;
  --ls-h3: -.015em;
  --ls-h4: -.01em;
  --ls-h5: -.01em;
  --ls-h6: -.005em;
  --ls-body: 0;
  --ls-caption: .01em;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
}

@media (max-width:1199px) {
  :root {
    --fs-h1: 40px;
    --fs-h2: 34px;
    --fs-h3: 28px;
    --fs-h4: 24px;
    --fs-h5: 20px;
    --fs-h6: 18px;
    --fs-body: 16px;
    --fs-lg: 18px;
    --fs-sm: 14px;
    --fs-caption: 12px;
    --fs-btn: 16px;
    --fs-nav: 16px;
    --fs-label: 14px
  }
}

@media (max-width:767px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 28px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --fs-h5: 18px;
    --fs-h6: 16px;
    --fs-body: 16px;
    --fs-lg: 17px;
    --fs-sm: 14px;
    --fs-caption: 12px;
    --fs-btn: 15px;
    --fs-nav: 15px;
    --fs-label: 13px
  }
}

:root {
  --color-primary: #ff5421;
  --color-primary-light: #ff6b3d;
  --color-primary-tools: #ff4c1a;
  --color-primary-alt: #ff5126;
  --color-primary-batch: #ff5722;
  --color-primary-batch-light: #ff7a4a;
  --color-primary-footer: #ff561f;
  --color-primary-footer-dark: #df3d0c;
  --color-primary-cert: #ff4b1f;
  --color-primary-cert-dark: #e0441b;
  --color-primary-menu: #ff6a3d;
  --color-primary-menu-light: #ffa24c;
  --color-primary-menu-soft: rgba(255, 106, 61, .12);
  --color-border-batch: #e0685a;
  --color-border-accent: #f15a24;
  --color-text: #16213d;
  --color-text-muted: #6b7686;
  --color-heading: #0b1220;
  --color-navy: #0d1b3e;
  --color-body: #3f5170;
  --color-body-strong: #333333;
  --color-navy-tools: #111a3d;
  --color-navy-cert: #101a35;
  --color-body-cert: #4a5568;
  --color-text-dark: #3d424c;
  --color-text-grey: #6b6b76;
  --color-navy-form: #151b3d;
  --color-text-strong: #2b2b2b;
  --color-muted: #8a8a8a;
  --color-navy-menu: #12203b;
  --color-navy-menu-2: #182a4d;
  --color-text-invert: #f3f5fa;
  --color-text-invert-muted: #aeb8cc;
  --color-navy-deep: #17143b;
  --color-text-soft: #676979;
  --color-muted-footer: #777777;
  --color-surface: #ffffff;
  --color-surface-dark: #101010;
  --color-surface-soft: #f3f3f3;
  --color-surface-primary-soft: #fff5f0;
  --color-surface-cert: #f4f8ff;
  --color-surface-topbar: #f4f7fa;
  --color-surface-form: #eef3ff;
  --color-surface-card: #fbfbfd;
  --color-surface-card-hover: #fff6ef;
  --color-surface-muted: #f8f9fc;
  --color-surface-tool: #f0f2f5;
  --color-surface-ai: #e8ecf1;
  --color-border-soft: #f3e7e1;
  --color-border-line: #e3e3e3;
  --color-border-input: #e2e2e2;
  --color-border-invert: rgba(255, 255, 255, .08);
  --color-border-panel: #eef0f4;
  --color-border-card: #e9ebf1;
  --color-border-card-hover: #ffc9a8;
  --color-border: #eeeeee;
  --color-success: #1fa40d;
  --color-success-footer: #168d21;
  --color-success-alt: #16851d;
  --color-lime: #7cff16;
  --color-info: #078be4;
  --color-teal-dark: #244f4c;
  --color-teal: #17b8a6;
  --radius-md: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--color-surface);
  color: var(--color-text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

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

body {
  font-family: var(--font-primary);
  color: var(--color-text-soft);
  background: var(--color-surface);
  min-height: 100vh;
}

@media (max-width:768px) {
  body {
    padding-bottom: 0
  }
}

* {
  margin: 0;
  padding: 0 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

body {
  background-color: var(--color-surface);
  color: var(--color-body-strong);
  overflow-x: hidden;
}

.container-section {
  max-width: 1300px;
}

.container-fluid {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: var(--color-text-dark);
}

.section-title h2 b {
  color: var(--color-primary-alt);
  font-weight: 800;
}

.section-title p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-text-grey);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 60px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-alt);
  color: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
  cursor: pointer;
  text-decoration: none;
}

@media (max-width:1200px) {
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px
  }
}

@media (max-width:992px) {
  .container-fluid {
    padding: 44px 16px
  }

  .section-title h2 {
    font-size: var(--fs-h2)
  }

  .section-title p {
    font-size: var(--fs-body)
  }
}

@media (max-width:768px) {
  .container-fluid {
    padding: 36px 14px
  }

  .section-title {
    margin-bottom: 28px
  }

  .section-title h2 {
    font-size: var(--fs-h2)
  }

  .section-title p {
    font-size: var(--fs-body)
  }
}

@media (max-width:576px) {
  .container-fluid {
    padding: 28px 12px
  }

  .section-title h2 {
    font-size: var(--fs-h5)
  }

  .section-title p {
    font-size: var(--fs-sm);
    line-height: 1.55
  }
}

@media (max-width:400px) {
  .container-fluid {
    padding: 20px 8px
  }

  .section-title {
    margin-bottom: 20px
  }

  .section-title h2 {
    font-size: var(--fs-h6)
  }

  .section-title p {
    font-size: var(--fs-sm)
  }
}

@media (max-width:250px) {
  .container-fluid {
    padding: 14px 6px
  }

  .section-title h2 {
    font-size: var(--fs-body);
    line-height: 1.3
  }

  .section-title p {
    font-size: var(--fs-caption)
  }
}

.section-title {
  text-align: center;
  margin-bottom: 1.8rem;
}

.col-lg-4 .card-header {
  text-align: start;
}

.col-lg-4 .adarsh-44 {
  justify-content: start;
  padding-left: 20px;
}

.para {
  text-align: left;
  max-width: 100%;
}

.para p {
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #1e2b41;
  margin-bottom: 1.2rem;
}

.para a {
  color: var(--color-primary) !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: opacity .2s;
}

.para a:hover {
  opacity: .75;
  text-decoration: none !important;
}

.para h3 {
  font-weight: 700;
  font-size: var(--fs-h3);
  margin: 2.2rem 0 1.2rem;
  color: #0b1b33;
}

.divider {
  border: none;
  border-top: 2px solid #e8edf5;
  margin: 2rem 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.col-lg-8 {
  flex: 1 1 58%;
  min-width: 280px;
}

.col-lg-4 {
  flex: 1 1 32%;
  min-width: 260px;
}

.card {
  border: none;
  background: var(--color-surface);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  border-radius: 28px;
  overflow: hidden;
  transition: box-shadow .3s;
}

.card:hover {
  box-shadow: 0 12px 45px rgba(26, 76, 255, .10);
}

.card-header {
  background: #FF5221;
  color: white;
  padding: .75rem 1.2rem;
}

.card-body {
  padding: 1.2rem 1rem;
  background: #fafcff;
}

.apply-btn {
  margin-top: .8rem;
  text-align: center;
}

.apply-btn .btn-primary {
  background: #FF5221;
  border: none;
  border-radius: 60px;
  padding: .6rem 2.8rem;
  font-weight: 700;
  font-size: var(--fs-btn);
  color: white;
  cursor: pointer;
  transition: .3s;
  letter-spacing: .3px;
}

.apply-btn .btn-primary:hover {
  background: #0b3bd4;
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(26, 76, 255, .25);
}

@media (max-width:992px) {

  .col-lg-8,
  .col-lg-4 {
    flex: 1 1 100%
  }

  .row {
    gap: 1.5rem
  }
}

@media (max-width:768px) {
  .para p {
    font-size: var(--fs-body)
  }

  .para h3 {
    font-size: var(--fs-h6)
  }

  .card-header {
    padding: .5rem 1rem
  }
}

@media (max-width:480px) {
  .para h3 {
    font-size: var(--fs-h6)
  }

  .apply-btn .btn-primary {
    padding: .5rem 2rem;
    font-size: var(--fs-btn)
  }

  .card-body {
    padding: .8rem .6rem
  }
}

.text-center {
  text-align: center;
}

.position-relative {
  position: relative;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-2 {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.p-0 {
  padding: 0;
}

.p-3 {
  padding: 1rem;
}

.rounded-4 {
  border-radius: 28px;
}

.d-inline-block {
  display: inline-block;
}

.text-capitalize {
  text-transform: capitalize;
}

.card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.card-content {
  padding: 20px;
}

.white-bg {
  background-color: white !important;
}

thead th {
  background-color: #fc4a1a;
  color: var(--color-surface);
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .3);
}

thead th:last-child {
  border-right: none;
}

tbody td {
  padding: 18px 20px;
  font-size: var(--fs-body);
  color: #222;
  text-align: center;
}

tbody td:first-child {
  font-weight: 700;
  text-align: left;
  padding-left: 40px;
}

tbody tr:nth-child(odd) {
  background-color: var(--color-surface);
}

tbody tr:nth-child(even) {
  background-color: var(--color-surface-primary-soft);
}

@media (max-width:768px) {
  thead th {
    font-size: var(--fs-sm);
    padding: 15px
  }

  tbody td {
    padding: 15px;
    font-size: var(--fs-sm)
  }

  tbody td:first-child {
    padding-left: 20px
  }
}

.cert-slide img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 1.414 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.arif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  align-items: start;
}

.arif-card {
  border-top: 2px solid var(--color-primary);
  border-radius: 6px;
  padding: 24px 28px;
  background: var(--color-surface);
  transition: box-shadow .2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
  overflow: hidden;
}

.arif-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}

.arif-card-title .toggle-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-alt);
  font-size: var(--fs-h5);
  font-weight: 400;
  margin-left: 12px;
}

.arif-card-body {
  color: var(--color-text-grey);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-top: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.arif-card.active .arif-card-body {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.arif-card.active .toggle-icon {
  transform: rotate(45deg);
}

.arif-card-body .table-responsive {
  max-height: 90px;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  cursor: pointer;
  width: 100%;
}

.arif-card-body .table-responsive::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}

.arif-card.active .arif-card-body .table-responsive {
  max-height: none;
  overflow: visible;
  cursor: default;
}

.arif-card.active .arif-card-body .table-responsive::after {
  display: none;
}

.arif-card-body .Ulist {
  display: none;
}

.arif-card.active .arif-card-body .Ulist {
  display: block;
}

.arif-table-stripe {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: var(--fs-body);
}

.arif-table-stripe th,
.arif-table-stripe td {
  border: 1px solid #e5e2e0;
  padding: 10px 12px;
  text-align: left;
}

.arif-table-stripe th {
  background: #fbeee7;
  color: var(--color-text-dark);
  font-weight: 700;
}

.arif-table-stripe tbody tr:nth-child(even) {
  background: #fafafa;
}

.Ulist {
  margin: 12px 0;
  padding-left: 20px;
}

.Ulist li {
  margin-bottom: 10px;
}

.arif-card-body a {
  color: var(--color-primary-alt);
  text-decoration: underline;
}

@media (max-width:992px) {
  .arif-grid {
    gap: 18px
  }

  .arif-card {
    padding: 20px 22px
  }
}

@media (max-width:768px) {
  .arif-grid {
    grid-template-columns: 1fr
  }

  .arif-card {
    padding: 18px 18px
  }

  .arif-card-title {
    font-size: var(--fs-body);
    gap: 8px
  }

  .arif-card-title .toggle-icon {
    width: 24px;
    height: 24px;
    font-size: var(--fs-lg);
    margin-left: 8px
  }

  .arif-card-body {
    font-size: var(--fs-body)
  }

  .arif-table-stripe {
    font-size: var(--fs-sm)
  }

  .arif-table-stripe th,
  .arif-table-stripe td {
    padding: 8px 10px
  }
}

@media (max-width:576px) {
  .arif-card {
    padding: 16px 14px;
    border-radius: 5px
  }

  .arif-card-title {
    font-size: var(--fs-body);
    line-height: 1.35
  }

  .arif-card-title .toggle-icon {
    width: 22px;
    height: 22px;
    font-size: var(--fs-lg);
    margin-left: 6px
  }

  .arif-card-body {
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-top: 12px
  }

  .arif-table-stripe {
    font-size: var(--fs-caption)
  }

  .arif-table-stripe th,
  .arif-table-stripe td {
    padding: 6px 8px
  }

  .arif-card-body .table-responsive {
    max-height: 80px
  }

  .arif-card.active .arif-card-body .table-responsive {
    max-height: none
  }

  .Ulist {
    padding-left: 16px
  }

  .Ulist li {
    margin-bottom: 8px;
    font-size: var(--fs-sm)
  }
}

@media (max-width:400px) {
  .arif-grid {
    gap: 12px
  }

  .arif-card {
    padding: 12px 10px
  }

  .arif-card-title {
    font-size: var(--fs-sm)
  }

  .arif-card-title .toggle-icon {
    width: 20px;
    height: 20px;
    font-size: var(--fs-body);
    margin-left: 5px
  }

  .arif-card-body {
    font-size: var(--fs-sm);
    margin-top: 10px
  }

  .arif-table-stripe {
    font-size: var(--fs-caption)
  }

  .arif-table-stripe th,
  .arif-table-stripe td {
    padding: 5px 6px
  }

  .Ulist li {
    font-size: var(--fs-sm);
    margin-bottom: 6px
  }
}

@media (max-width:250px) {
  .arif-grid {
    gap: 10px
  }

  .arif-card {
    padding: 10px 8px
  }

  .arif-card-title {
    font-size: var(--fs-caption);
    line-height: 1.3
  }

  .arif-card-title .toggle-icon {
    width: 18px;
    height: 18px;
    font-size: var(--fs-sm);
    margin-left: 4px
  }

  .arif-card-body {
    font-size: var(--fs-caption);
    margin-top: 8px
  }

  .arif-table-stripe {
    font-size: var(--fs-caption)
  }

  .arif-table-stripe th,
  .arif-table-stripe td {
    padding: 4px 5px
  }
}

.sahid-page-wrapper {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 30px 35px;
}

.sahid-why-choose-section {
  width: 100%;
  min-height: 175px;
  border: 1px solid #e1e6ee;
  border-radius: 17px;
  display: flex;
  align-items: center;
  padding: 25px 38px;
  margin: 8px 0 20px;
  background: var(--color-surface);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sahid-why-choose-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.sahid-why-choose-heading {
  width: 300px;
  flex-shrink: 0;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.2;
  padding-right: 25px;
}

.sahid-why-heading-line {
  color: #0b2345;
}

.sahid-why-heading-highlight {
  color: #f15a29;
}

.sahid-statistics-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 100%;
}

.sahid-statistics-item {
  min-height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8px 15px;
  border-left: 1px solid #e0e5ec;
}

.sahid-statistics-number {
  color: #f15a29;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 7px;
}

.sahid-statistics-text {
  color: #17345f;
  font-size: var(--fs-body);
  line-height: 1.3;
}

.sahid-benefits-bar {
  width: 100%;
  min-height: 64px;
  background: #0d234d;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(13, 35, 77, .10);
}

.sahid-benefit-item {
  color: var(--color-surface);
  text-align: center;
  font-size: var(--fs-body);
  padding: 10px 8px;
  transition: background .25s ease;
}

.sahid-benefit-item:hover {
  background: rgba(255, 255, 255, .07);
}

.sahid-program-section {
  width: 100%;
  border: 1px solid #dedede;
  border-left: 5px solid #1268ff;
  border-radius: 8px;
  padding: 18px 24px 25px;
  background: var(--color-surface);
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .025);
  transition: transform .3s ease, box-shadow .3s ease;
}

.sahid-program-title {
  color: #f15a29;
  font-size: var(--fs-h5);
  font-weight: 700;
  margin-bottom: 8px;
}

.sahid-program-introduction {
  font-size: var(--fs-lg);
  line-height: 1.5;
  margin-bottom: 10px;
}

.sahid-intro-highlight {
  font-style: italic;
  font-size: var(--fs-body);
}

.sahid-program-description {
  font-size: var(--fs-lg);
  line-height: 1.6;
  margin-bottom: 18px;
  color: #202020;
}

.sahid-bold-text {
  font-weight: 700;
}

.sahid-information-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin: 5px 0;
}

.sahid-learning-card {
  border: 1px solid #eadfd9;
  border-radius: 16px;
  padding: 17px 23px;
  background: var(--color-surface);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .035);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sahid-learning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .075);
  border-color: #f1cfc0;
}

.sahid-information-row {
  min-height: 52px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px dashed #ead8ce;
  gap: 10px;
  padding: 3px 0;
}

.sahid-information-row:last-child {
  border-bottom: none;
}

.sahid-information-label {
  color: #f4511e;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.35;
}

.sahid-information-value {
  color: var(--color-body-strong);
  font-size: var(--fs-body);
  line-height: 1.4;
}

.sahid-long-information-row {
  align-items: start;
  padding-top: 12px;
  padding-bottom: 12px;
}

.sahid-quick-facts-card {
  border: 1px solid #eadfd9;
  border-radius: 16px;
  padding: 17px 23px;
  background: var(--color-surface);
  box-shadow: 0 5px 16px rgba(0, 0, 0, .035);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.sahid-quick-facts-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .075);
  border-color: #f1cfc0;
}

.sahid-quick-facts-title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #252525;
  margin-bottom: 9px;
  line-height: 1.35;
}

.sahid-quick-facts-line {
  width: 100%;
  height: 2px;
  background: #f4511e;
  margin-bottom: 5px;
}

.sahid-quick-fact-row {
  min-height: 52px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px dashed #ead8ce;
  gap: 10px;
  padding: 3px 0;
}

.sahid-quick-fact-row:last-child {
  border-bottom: none;
}

.sahid-quick-fact-label {
  color: #f4511e;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.35;
}

.sahid-quick-fact-value {
  color: var(--color-body-strong);
  font-size: var(--fs-body);
  line-height: 1.4;
}

.sahid-back-to-top {
  position: fixed;
  right: 0;
  bottom: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50% 0 0 50%;
  background: #ff5b21;
  border: 1px solid #0c6cff;
  color: var(--color-surface);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-h3);
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.sahid-back-to-top.sahid-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sahid-back-to-top:hover {
  transform: translateY(-3px);
}

.jt-section-style {
  max-width: 1200px;
  padding: 48px 48px 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.jt-visit-head {
  text-align: center;
  margin-bottom: 40px;
}

.jt-visit-head .jt-eyebrow {
  display: inline-block;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
  background: rgba(255, 84, 33, .08);
  padding: 2px 14px;
  border-radius: 100px;
}

.jt-visit-head h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.jt-visit-head p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: #3d3d3d;
}

.jt-visit-head p strong {
  color: var(--color-primary);
  font-weight: 600;
}

.jt-loc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border-radius: 24px;
  border: 1px solid #eae8e4;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .02);
  transition: grid-template-columns .3s;
}

.jt-loc-panel {
  padding: 32px 32px 28px;
  background: var(--color-surface);
}

.jt-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 84, 33, .08);
  color: var(--color-primary);
  font-size: var(--fs-label);
  font-weight: 600;
  padding: 4px 16px 4px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.jt-status-badge .jt-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.85)
  }
}

.jt-loc-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.jt-loc-row:last-of-type {
  margin-bottom: 0;
}

.jt-loc-row .jt-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: #5e5e5e;
  margin-top: 2px;
}

.jt-loc-body {
  flex: 1;
  min-width: 0;
}

.jt-loc-body .jt-label {
  display: block;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 2px;
}

.jt-loc-body .jt-value {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: #1a1a1a;
  font-weight: 500;
  word-break: break-word;
}

.jt-loc-body .jt-value--link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.jt-loc-body .jt-value--link:hover {
  color: var(--color-primary);
}

.jt-copy-btn {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(255, 84, 33, .08);
  padding: 2px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s;
  border: none;
  font-family: inherit;
  margin-top: 4px;
  letter-spacing: .02em;
}

.jt-copy-btn:hover {
  background: var(--color-primary);
  color: var(--color-surface);
}

.jt-copy-btn.jt-copied {
  background: #ff521e;
  color: var(--color-surface);
}

.jt-hr {
  display: block;
  height: 1px;
  background: #eae8e4;
  margin: 18px 0;
}

.jt-hours-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
  border-radius: 6px;
  transition: background .15s;
}

.jt-hours-toggle .jt-today {
  font-size: var(--fs-body);
  font-weight: 500;
  color: #1a1a1a;
}

.jt-hours-toggle .jt-chev {
  width: 22px;
  height: 22px;
  color: var(--color-muted);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.jt-hours-toggle .jt-chev.jt-open {
  transform: rotate(180deg);
}

.jt-week {
  margin-top: 12px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 0;
  background: #faf9f7;
  border-radius: 12px;
  padding: 10px 14px;
}

.jt-week.jt-open {
  display: flex;
}

.jt-week .jt-day {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: #3d3d3d;
  padding: 3px 0;
}

.jt-week .jt-day--now {
  font-weight: 600;
  color: #1a1a1a;
}

.jt-week .jt-day span:first-child {
  font-weight: 400;
}

.jt-week .jt-day--now span:first-child {
  font-weight: 600;
}

.jt-loc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 2px;
}

.jt-loc-cols .jt-loc-row {
  margin-bottom: 0;
}

.jt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.jt-tags .jt-tag {
  font-size: var(--fs-caption);
  font-weight: 500;
  color: #3d3d3d;
  background: #f0eeeb;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .01em;
}

.jt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.jt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s ease;
  flex: 1 1 auto;
  min-width: 140px;
}

.jt-btn .jt-btn-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.jt-btn--solid {
  background: var(--color-primary);
  color: var(--color-surface);
}

.jt-btn--solid:hover {
  background: #e64a1e;
  transform: translateY(-2px);
}

.jt-btn--solid:active {
  transform: translateY(0);
}

.jt-btn--line {
  background: transparent;
  color: #ff521e;
  border: 1.5px solid #ff521e;
}

.jt-btn--line:hover {
  border: none;
  color: var(--color-surface);
  background: #1a1a1a;
}

.jt-btn--line .jt-btn-ico {
  color: currentColor;
}

.jt-loc-map {
  background: #f0eeeb;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.jt-loc-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}

.jt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.jt-footnote {
  margin-top: 18px;
  font-size: var(--fs-sm);
  color: var(--color-muted);
  text-align: center;
  border-top: 1px solid #eae8e4;
  padding-top: 18px;
}

.jt-footnote a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.jt-footnote a:hover {
  text-decoration: underline;
}

h2.faq-title {
  text-align: center;
  color: #6b7280;
  font-weight: 700;
  margin: 0 0 25px;
  font-size: var(--fs-h2);
  line-height: 1.3;
  padding: 0 10px;
}

.faq-wrap {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: 600;
  color: #1a1a1a;
  gap: 12px;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.faq-q i {
  font-style: normal;
  font-size: var(--fs-sm);
  color: #555;
  transition: transform .35s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  padding: 0 22px;
}

.faq-item.open .faq-a-inner {
  padding: 0 22px 18px;
}

.faq-a p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: #444;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hm-faq {
  margin-top: 10px;
  padding: 20px 12px;
}

.bhawni_curriculum-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 40px 40px;
}

.bhawni_main-heading {
  text-align: center;
  font-size: var(--fs-h1);
  line-height: 1.25;
  font-weight: 700;
  color: #151533;
  margin-bottom: 48px;
}

.bhawni_main-heading span {
  color: #ff4b08;
}

.bhawni_curriculum-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  gap: 28px;
  align-items: start;
}

.bhawni_left-scroll-card {
  height: 500px;
  background: var(--color-surface);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #888888 var(--color-border);
}

.bhawni_left-scroll-card::-webkit-scrollbar {
  width: 9px;
}

.bhawni_left-scroll-card::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 10px;
}

.bhawni_left-scroll-card::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}

.bhawni_left-scroll-card::-webkit-scrollbar-thumb:hover {
  background: #666666;
}

.bhawni_left-content {
  padding: 22px 25px 35px;
}

.bhawni_small-orange-heading {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: #ff4b08;
  margin-bottom: 15px;
}

.bhawni_intro-text {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: #171717;
  margin-bottom: 8px;
}

.bhawni_module-heading {
  color: #ff4b08;
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 12px;
  margin-bottom: 9px;
}

.bhawni_accordion-item {
  width: 100%;
  margin-bottom: 18px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .10);
  overflow: hidden;
}

.bhawni_accordion-header {
  width: 100%;
  min-height: 77px;
  border: none;
  outline: none;
  background: var(--color-surface);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #0066e6;
  font-size: var(--fs-lg);
  text-align: left;
}

.bhawni_accordion-header span {
  color: #0066e6;
}

.bhawni_accordion-header i {
  color: #555555;
  font-size: var(--fs-sm);
  transition: transform .3s ease;
}

.bhawni_accordion-item.active .bhawni_accordion-header i {
  transform: rotate(180deg);
}

.bhawni_accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--color-surface);
}

.bhawni_accordion-content ul {
  padding: 0 30px 20px 50px;
  margin: 0;
}

.bhawni_accordion-content li {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 7px;
  color: #222222;
}

.bhawni_table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 28px;
  margin-bottom: 35px;
}

.bhawni_table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  font-size: var(--fs-sm);
}

.bhawni_table-wrapper th,
.bhawni_table-wrapper td {
  padding: 12px 10px;
  border: 1px solid #dddddd;
  text-align: left;
}

.bhawni_table-wrapper th {
  background: #f4f4f4;
  color: #222222;
  font-weight: 700;
}

.bhawni_table-wrapper tbody tr:nth-child(even) {
  background: #fafafa;
}

.bhawni_table-wrapper tfoot td {
  background: #f4f4f4;
  font-weight: 700;
}

.bhawni_verified-section {
  padding-top: 8px;
  padding-bottom: 10px;
}

.bhawni_verified-section h3 {
  font-size: var(--fs-h6);
  color: #222222;
  margin-bottom: 12px;
}

.bhawni_profile-links {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.bhawni_profile-links a {
  text-decoration: none;
  color: #0066e6;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.bhawni_profile-links a i {
  margin-right: 5px;
}

.bhawni_trainer-profile {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 18px 20px;
  background: var(--color-surface);
  border: 1px solid #dfe5ec;
  border-left: 3px solid #ff4b08;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  position: relative;
}

.bhawni_trainer-avatar {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5b28, #4951a8);
  color: var(--color-surface);
  font-size: var(--fs-lg);
  font-weight: 700;
}

.bhawni_trainer-info {
  flex: 1;
  min-width: 0;
}

.bhawni_trainer-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}

.bhawni_trainer-name-row h4 {
  margin: 0;
  font-size: var(--fs-h6);
  line-height: 1.3;
  font-weight: 700;
  color: #0070df;
}

.bhawni_verified {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a9b58;
  color: var(--color-surface);
  font-size: var(--fs-caption);
}

.bhawni_trainer-role {
  margin: 0 0 10px;
  font-size: var(--fs-body);
  line-height: 1.4;
  color: #555f6d;
}

.bhawni_experience-badge {
  display: inline-block;
  padding: 6px 11px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: #edf3fa;
  color: #ff4b08;
  font-size: var(--fs-label);
  font-weight: 600;
}

.bhawni_specialization {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: #42464d;
}

.bhawni_specialization strong {
  color: #222222;
  font-weight: 700;
}

.bhawni_right-curriculum-card {
  height: fit-content;
  background: var(--color-surface);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  padding: 25px 28px;
  position: sticky;
  top: 20px;
}

.bhawni_right-curriculum-card h2 {
  text-align: center;
  color: #666666;
  font-size: var(--fs-h2);
  line-height: 1.3;
  margin-bottom: 25px;
}

.bhawni_right-description {
  color: #6d6d75;
  font-size: var(--fs-body);
  line-height: 1.55;
  margin-bottom: 5px;
}

.bhawni_right-description strong {
  display: block;
  color: #111111;
  margin-top: 3px;
}

.bhawni_stat-box {
  width: 86%;
  min-height: 62px;
  margin: 18px auto 0;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 7px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.bhawni_stat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: #ff003d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
  font-size: var(--fs-h5);
}

.bhawni_stat-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bhawni_stat-text strong {
  font-size: var(--fs-body);
  font-weight: 400;
  color: #666666;
}

.bhawni_stat-text span {
  font-size: var(--fs-body);
  color: #686875;
}

.bhawni_download-area {
  position: relative;
  width: 92%;
  margin: 23px auto 0;
}

.bhawni_download-button {
  width: 100%;
  height: 47px;
  border: none;
  border-radius: 7px;
  background: #ff4b08;
  color: var(--color-surface);
  font-size: var(--fs-btn);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}

.bhawni_download-button:hover {
  background: #ed4000;
}

.bhawni_download-dropdown {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% + 5px);
  background: var(--color-surface);
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .18);
  overflow: hidden;
  display: none;
  z-index: 20;
}

.bhawni_download-dropdown.show {
  display: block;
}

.bhawni_download-dropdown a {
  display: block;
  padding: 13px 16px;
  text-decoration: none;
  color: var(--color-body-strong);
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--color-border);
}

.bhawni_download-dropdown a:last-child {
  border-bottom: none;
}

.bhawni_download-dropdown a:hover {
  background: #f7f7f7;
  color: #ff4b08;
}

.bhawni_download-dropdown i {
  width: 22px;
}

.adarsh-trust-wrap * {
  box-sizing: border-box;
}

.adarsh-trust-wrap {
  font-family: var(--font-primary);
  color: var(--color-text-strong);
  max-width: 1140px;
  margin: 0 auto;
  padding: 30px 15px 50px;
}

.adarsh-section-title {
  text-align: center;
  margin-bottom: 26px;
}

.adarsh-section-title h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-navy-form);
  margin: 0;
  line-height: 1.35;
}

.adarsh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 28px;
  border-radius: 14px;
  align-items: start;
}

.adarsh-left-card {
  background: #f7fafe;
  padding: 20px;
  border-radius: 10px;
}

.adarsh-logo {
  max-width: 190px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.adarsh-trust-box {
  background: #fafafa;
  border: 1px solid #e6eaf5;
  border-radius: var(--radius-md);
  padding: 18px 20px 14px;
  margin-bottom: 20px;
}

.adarsh-trust-box h3 {
  font-size: var(--fs-h6);
  font-weight: 700;
  color: var(--color-navy-form);
  margin: 0 0 14px;
}

.adarsh-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.adarsh-trust-list li {
  border-left: 3px solid var(--color-primary-tools);
  padding: 0 0 0 12px;
  margin-bottom: 13px;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: #3a3a3a;
}

.adarsh-trust-list li strong {
  color: var(--color-navy-form);
  font-weight: 700;
  margin-right: 4px;
}

.adarsh-last-reviewed {
  border-left: 0 !important;
  padding-left: 0 !important;
  font-style: italic;
  font-size: var(--fs-caption);
  color: var(--color-muted);
  margin-bottom: 2px !important;
}

.adarsh-byline {
  background: #fff7f4;
  border: 1.5px solid var(--color-primary-tools);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.adarsh-byline p {
  margin: 0 0 12px;
  font-size: var(--fs-sm);
  line-height: 1.4;
}

.adarsh-byline p:last-child {
  margin-bottom: 0;
}

.adarsh-byline strong {
  color: var(--color-primary-tools);
  font-weight: 700;
  margin-right: 6px;
}

.adarsh-author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #111;
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
}

.adarsh-author:hover {
  color: var(--color-primary-tools);
}

.adarsh-li-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-surface);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px #dfe6f2;
}

.adarsh-form-card {
  background: #f7fafe;
  padding: 20px;
  border-radius: 10px;
}

.adarsh-form-head {
  text-align: center;
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-navy-form);
  margin-bottom: 18px;
}

.adarsh-field {
  margin-bottom: 14px;
}

.adarsh-field label {
  display: block;
  font-size: var(--fs-label);
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-body-strong);
}

.adarsh-field input,
.adarsh-field select {
  width: 100%;
  height: 34px;
  border: 1px solid transparent;
  background: var(--color-border-input);
  border-radius: 4px;
  padding: 0 10px;
  font-size: var(--fs-sm);
  outline: none;
  transition: border-color .2s, background .2s;
}

.adarsh-field select {
  background: var(--color-surface);
  border: 1px solid #c9c9c9;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.adarsh-field input:focus,
.adarsh-field select:focus {
  border-color: var(--color-primary-tools);
  background: var(--color-surface);
}

.adarsh-submit {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 4px;
  background: var(--color-primary-tools);
  color: var(--color-surface);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.adarsh-submit:hover {
  background: #e33d0e;
}

@media (max-width:1100px) {
  .sahid-page-wrapper {
    padding: 0 20px 30px
  }

  .sahid-why-choose-section {
    flex-direction: column;
    align-items: stretch;
    padding: 23px
  }

  .sahid-why-choose-heading {
    width: 100%;
    text-align: center;
    padding-right: 0;
    margin-bottom: 18px
  }

  .sahid-statistics-wrapper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px
  }

  .sahid-statistics-item:nth-child(4) {
    border-left: none
  }

  .sahid-benefits-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 7px 0
  }

  .sahid-information-wrapper {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

@media (max-width:1000px) {
  .bhawni_curriculum-section {
    padding-left: 25px;
    padding-right: 25px
  }

  .bhawni_curriculum-layout {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .bhawni_left-scroll-card {
    height: 550px
  }

  .bhawni_right-curriculum-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 500px
  }
}

@media (max-width:991px) {
  .adarsh-grid {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .adarsh-section-title h2 {
    font-size: var(--fs-h5)
  }
}

@media (max-width:900px) {
  .jt-section-style {
    padding: 30px 25px 30px
  }

  .jt-container {
    padding: 25px 20px 25px
  }

  .jt-loc-card {
    grid-template-columns: 1fr
  }

  .jt-loc-map {
    min-height: 260px;
    order: -1
  }

  .jt-loc-map iframe {
    min-height: 260px
  }

  .jt-loc-panel {
    padding: 24px 24px 20px
  }

  .jt-visit-head h2 {
    font-size: var(--fs-h2)
  }
}

@media (max-width:768px) {
  h2.faq-title {
    font-size: var(--fs-h5);
    margin-bottom: 18px
  }

  .faq-q {
    padding: 15px 16px;
    font-size: var(--fs-sm);
    gap: 10px
  }

  .faq-a-inner,
  .faq-item.open .faq-a-inner {
    padding-left: 16px;
    padding-right: 16px
  }

  .faq-item.open .faq-a-inner {
    padding-bottom: 16px
  }

  .faq-a p {
    font-size: var(--fs-sm);
    text-align: left
  }
}

@media (max-width:700px) {
  .sahid-page-wrapper {
    padding: 0 10px 25px
  }

  .sahid-why-choose-section {
    padding: 20px 14px;
    border-radius: 12px;
    margin-top: 7px;
    margin-bottom: 15px
  }

  .sahid-why-choose-heading {
    font-size: var(--fs-h4);
    margin-bottom: 17px
  }

  .sahid-statistics-wrapper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px
  }

  .sahid-statistics-item {
    border-left: none;
    border-bottom: 1px solid #e3e7ed;
    padding: 10px 6px
  }

  .sahid-statistics-item:last-child {
    grid-column: 1 / -1
  }

  .sahid-statistics-number {
    font-size: var(--fs-h4);
    margin-bottom: 5px
  }

  .sahid-statistics-text {
    font-size: var(--fs-sm)
  }

  .sahid-benefits-bar {
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    padding: 6px 4px;
    margin-bottom: 15px
  }

  .sahid-benefit-item {
    font-size: var(--fs-sm);
    padding: 10px 4px
  }

  .sahid-program-section {
    padding: 16px 13px 20px;
    border-left-width: 4px;
    margin-bottom: 15px
  }

  .sahid-program-title {
    font-size: var(--fs-h5)
  }

  .sahid-program-introduction {
    font-size: var(--fs-body);
    line-height: 1.45
  }

  .sahid-intro-highlight {
    font-size: var(--fs-body)
  }

  .sahid-program-description {
    font-size: var(--fs-body);
    line-height: 1.55;
    margin-bottom: 16px
  }

  .sahid-information-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 3px 0
  }

  .sahid-learning-card,
  .sahid-quick-facts-card {
    width: 100%;
    padding: 12px 14px;
    border-radius: 13px
  }

  .sahid-information-row,
  .sahid-long-information-row,
  .sahid-quick-fact-row {
    grid-template-columns: 40% 60%;
    gap: 0;
    min-height: 45px;
    padding: 7px 0;
    align-items: center
  }

  .sahid-information-label,
  .sahid-quick-fact-label {
    font-size: var(--fs-label);
    line-height: 1.25;
    padding-right: 5px
  }

  .sahid-information-value,
  .sahid-quick-fact-value {
    font-size: var(--fs-sm);
    line-height: 1.3;
    padding-left: 5px
  }

  .sahid-long-information-row {
    align-items: start;
    padding-top: 10px;
    padding-bottom: 10px
  }

  .sahid-quick-facts-title {
    font-size: var(--fs-body);
    line-height: 1.3;
    margin-bottom: 7px
  }

  .sahid-quick-facts-line {
    margin-bottom: 2px
  }

  .sahid-learning-card:hover,
  .sahid-quick-facts-card:hover {
    transform: translateY(-2px)
  }

  .sahid-back-to-top {
    width: 44px;
    height: 44px;
    font-size: var(--fs-h4)
  }
}

@media (max-width:600px) {
  .bhawni_curriculum-section {
    padding: 35px 15px 30px
  }

  .bhawni_main-heading {
    font-size: var(--fs-h1);
    margin-bottom: 30px
  }

  .bhawni_left-scroll-card {
    height: 520px;
    border-radius: 8px
  }

  .bhawni_left-content {
    padding: 20px 15px 30px
  }

  .bhawni_small-orange-heading {
    font-size: var(--fs-body)
  }

  .bhawni_intro-text {
    font-size: var(--fs-sm);
    line-height: 1.55
  }

  .bhawni_module-heading {
    font-size: var(--fs-body)
  }

  .bhawni_accordion-header {
    min-height: 65px;
    padding: 15px 18px;
    font-size: var(--fs-body)
  }

  .bhawni_accordion-content ul {
    padding: 0 18px 18px 35px
  }

  .bhawni_accordion-content li {
    font-size: var(--fs-sm)
  }

  .bhawni_right-curriculum-card {
    padding: 25px 18px;
    min-height: auto
  }

  .bhawni_right-curriculum-card h2 {
    font-size: var(--fs-h5)
  }

  .bhawni_right-description {
    font-size: var(--fs-sm)
  }

  .bhawni_stat-box {
    width: 100%
  }

  .bhawni_download-area {
    width: 100%
  }

  .bhawni_trainer-profile {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width:575px) {
  .adarsh-grid {
    padding: 16px
  }

  .adarsh-section-title h2 {
    font-size: var(--fs-h6)
  }

  .adarsh-trust-box,
  .adarsh-byline {
    padding: 14px
  }
}

@media (max-width:480px) {
  .hm-faq {
    padding: 14px 8px
  }

  .jt-container {
    padding: 0;
    border-radius: 20px
  }

  .jt-visit-head h2 {
    font-size: var(--fs-h5)
  }

  .jt-visit-head p {
    font-size: var(--fs-body)
  }

  .jt-loc-panel {
    padding: 18px 16px 16px
  }

  .jt-loc-cols {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .jt-actions {
    flex-direction: column
  }

  .jt-btn {
    min-width: 0;
    width: 100%;
    justify-content: center
  }

  .jt-loc-map {
    min-height: 200px
  }

  .jt-loc-map iframe {
    min-height: 200px
  }

  .jt-status-badge {
    font-size: var(--fs-caption);
    padding: 3px 12px 3px 10px
  }

  h2.faq-title {
    font-size: var(--fs-lg);
    margin-bottom: 14px;
    padding: 0 4px
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 5px
  }

  .faq-q {
    padding: 13px 14px;
    font-size: var(--fs-sm);
    line-height: 1.4;
    align-items: flex-start;
    gap: 8px
  }

  .faq-q i {
    margin-top: 2px;
    font-size: var(--fs-caption)
  }

  .faq-a-inner,
  .faq-item.open .faq-a-inner {
    padding-left: 14px;
    padding-right: 14px
  }

  .faq-item.open .faq-a-inner {
    padding-bottom: 14px
  }

  .faq-a p {
    font-size: var(--fs-sm);
    line-height: 1.55;
    text-align: left
  }
}

@media (max-width:450px) {
  .sahid-statistics-wrapper {
    grid-template-columns: 1fr
  }

  .sahid-statistics-item:last-child {
    grid-column: auto
  }

  .sahid-benefits-bar {
    grid-template-columns: 1fr
  }

  .sahid-benefit-item {
    border-bottom: 1px solid rgba(255, 255, 255, .15)
  }

  .sahid-information-row,
  .sahid-long-information-row,
  .sahid-quick-fact-row {
    grid-template-columns: 40% 60%;
    gap: 0
  }

  .sahid-information-label,
  .sahid-information-value,
  .sahid-quick-fact-label,
  .sahid-quick-fact-value {
    font-size: var(--fs-caption)
  }

  .sahid-information-value,
  .sahid-quick-fact-value {
    padding-left: 4px
  }

  .sahid-information-label,
  .sahid-quick-fact-label {
    padding-right: 4px
  }
}

@media (max-width:400px) {
  .bhawni_main-heading {
    font-size: var(--fs-h5)
  }

  .bhawni_module-heading {
    font-size: var(--fs-sm)
  }

  .bhawni_accordion-header {
    font-size: var(--fs-sm);
    padding: 14px
  }

  .bhawni_stat-box {
    gap: 10px
  }

  .bhawni_stat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: var(--fs-lg)
  }
}

@media (max-width:360px) {
  h2.faq-title {
    font-size: var(--fs-body)
  }

  .faq-q {
    padding: 12px 12px;
    font-size: var(--fs-sm)
  }

  .faq-a-inner,
  .faq-item.open .faq-a-inner {
    padding-left: 12px;
    padding-right: 12px
  }

  .faq-a p {
    font-size: var(--fs-caption)
  }
}

.Sahil-kannaujiya {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--color-surface);
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.placed-student-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0b1b33;
}

.placed-student-title b {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #FF5221;
  background-clip: unset;
  display: inline-block;
  padding: 0 .1rem;
}

.kno {
  border-bottom: none;
  padding-bottom: .3rem;
}

.data {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f0f5ff;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  margin-bottom: 1rem;
  border-left: 5px solid var(--color-primary);
  transition: background .2s, transform .2s;
}

.data:hover {
  background: #e8efff;
  transform: translateX(4px);
}

.data .db {
  font-size: var(--fs-h5);
  color: var(--color-surface);
  background: var(--color-primary);
  border-radius: 9px;
  min-width: 2.4rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
  text-align: center;
  transition: all .4s ease;
}

.data .db::before {
  content: "➤";
}

@media (max-width:900px) {
  .data .db {
    color: var(--color-primary);
    background: transparent;
    max-width: auto;
    height: auto
  }
}

.data .adarsh-40 {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.6;
}

.data .adarsh-40 b {
  color: #0b1b33;
  margin-right: 4px;
  font-weight: 700;
}

.adarsh-44 {
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
  color: white;
  font-weight: 600;
  letter-spacing: .3px;
}

.adarsh-44 i {
  font-size: var(--fs-lg);
}

.data1 {
  background: #f8faff !important;
  border-left: 3px solid #1a4cff;
  padding: .5rem .9rem !important;
  border-radius: 40px !important;
  margin-bottom: .6rem;
  width: 100%;
  transition: background .2s;
  border-left-color: transparent;
}

.data1:hover {
  background: #eef4ff !important;
}

.data1 a {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: #1e293b;
  flex-wrap: wrap;
  width: 100%;
}

.review-thumb-section {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem .7rem;
}

.review-thumb-section span:first-child {
  background: transparent;
  color: #1e293b;
  font-weight: 700;
  padding: .1rem .7rem;
  border-radius: 40px;
  font-size: var(--fs-sm);
}

.review-thumb-section span:last-child {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #1e293b;
}

@media (max-width:992px) {
  .Sahil-kannaujiya {
    padding: 2.5rem 1.8rem
  }

  .placed-student-title {
    font-size: var(--fs-h3)
  }

  .data {
    padding: .9rem 1.1rem
  }
}

@media (max-width:768px) {
  .Sahil-kannaujiya {
    padding: 1.8rem 1rem;
    border-radius: 28px
  }

  .placed-student-title {
    font-size: var(--fs-h4)
  }

  .data {
    flex-wrap: nowrap;
    gap: .7rem;
    padding: .8rem 1rem
  }

  .data .db {
    font-size: var(--fs-lg);
    min-width: 1.8rem
  }

  .data .adarsh-40 {
    font-size: var(--fs-sm)
  }

  .data1 {
    padding: .4rem .7rem !important
  }

  .data1 a {
    gap: .4rem
  }

  .review-thumb-section span:last-child {
    font-size: var(--fs-sm)
  }

  .adarsh-44 {
    font-size: var(--fs-body)
  }
}

@media (max-width:480px) {
  .Sahil-kannaujiya {
    padding: 1.2rem .7rem;
    border-radius: 20px
  }

  .placed-student-title {
    font-size: var(--fs-h5)
  }

  .data {
    padding: .6rem .8rem;
    border-left-width: 4px
  }

  .data .adarsh-40 {
    font-size: var(--fs-sm)
  }
}

.cad {
  background: #fafcff;
}

.sagar-page {
  width: min(1400px, 92%);
  margin: 0 auto;
}

.sagar-hero {
  padding: 38px 0 30px;
  text-align: center;
}

.sagar-hero h1 {
  color: var(--color-navy-deep);
  font-size: var(--fs-h1);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sagar-hero h1 span {
  color: var(--color-primary-cert);
}

.sagar-hero-description {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0;
  width: 100%;
}

.sagar-hero-description p {
  color: var(--color-text-soft);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sagar-hero-description p:last-child {
  margin-bottom: 0;
}

.sagar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 30px;
}

.sagar-info {
  background: var(--color-surface-muted);
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: 12px;
  border: 1px solid #eef0f2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 450px;
}

.sagar-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sagar-benefits h2 {
  color: var(--color-text-soft);
  font-size: var(--fs-h6);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

.sagar-benefit {
  border-left: 4px solid var(--color-primary-cert);
  padding: 10px 16px;
  margin: 5px 0;
  color: #171717;
  font-size: var(--fs-body);
  line-height: 1.5;
  flex-shrink: 0;
}

.sagar-benefit strong {
  font-weight: 700;
  display: inline-block;
}

.sagar-verification-text {
  margin-top: auto;
  padding-top: 14px;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: 1.6;
  border-top: 1px solid #e0e4ea;
  flex-shrink: 0;
}

.sagar-certificate-area {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  min-height: 450px;
}

.sagar-certificate-wrapper {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
  justify-content: flex-start;
}

.sagar-certificate {
  position: relative;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  background: var(--color-surface);
  border: 1px solid #e4e4e4;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  border-radius: 4px;
  overflow: hidden;
  transition: opacity .3s ease, box-shadow .3s ease;
  cursor: pointer;
  max-width: 800px;
  min-height: 250px;
  flex-shrink: 0;
}

.sagar-certificate:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.sagar-certificate-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(16px, 2.5vw, 30px) clamp(20px, 3vw, 45px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sagar-certificate-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 3px;
  color: #172033;
  font-size: var(--fs-lg);
  font-weight: 800;
}

.sagar-logo-box {
  width: clamp(28px, 2.5vw, 34px);
  height: clamp(28px, 2.5vw, 34px);
  display: grid;
  place-items: center;
  color: var(--color-surface);
  background: var(--color-primary-cert);
  font-size: var(--fs-body);
  font-weight: 800;
  border-radius: 4px;
}

.sagar-certificate-title {
  color: #182033;
  font-size: var(--fs-h1);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 3px;
  margin-top: 6px;
}

.sagar-certificate-subtitle {
  color: #3e4556;
  font-size: var(--fs-lg);
  letter-spacing: 2px;
  margin-top: 4px;
}

.sagar-iso {
  display: inline-block;
  margin-top: 4px;
  color: #555b69;
  font-size: var(--fs-caption);
  font-weight: 600;
}

.sagar-presented {
  margin-top: clamp(10px, 1.5vw, 20px);
  color: #4e5360;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: 2px;
}

.sagar-name-line {
  width: 65%;
  height: 1px;
  background: #9a9a9a;
  margin: clamp(10px, 1.2vw, 16px) auto clamp(8px, .8vw, 10px);
}

.sagar-completion {
  color: #3f4450;
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.sagar-completion span {
  color: #666;
}

.sagar-certificate-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 25px);
  margin-top: clamp(10px, 1vw, 16px);
}

.sagar-detail-line {
  width: 18%;
  height: 1px;
  background: #aaa;
}

.sagar-qr {
  width: clamp(48px, 5vw, 72px);
  height: clamp(48px, 5vw, 72px);
  padding: clamp(4px, .4vw, 6px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border: clamp(2px, .2vw, 3px) solid #222;
  background: var(--color-surface);
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
}

.sagar-qr span {
  background: #222;
}

.sagar-qr span:nth-child(2),
.sagar-qr span:nth-child(4),
.sagar-qr span:nth-child(8) {
  background: var(--color-surface);
}

.sagar-founder {
  text-align: left;
}

.sagar-founder strong {
  display: block;
  color: #252a36;
  font-size: var(--fs-caption);
}

.sagar-founder small {
  display: block;
  color: #666;
  margin-top: 2px;
  font-size: var(--fs-caption);
}

.sagar-certificate-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: clamp(10px, 1vw, 16px);
  color: #555;
  font-size: var(--fs-caption);
}

.sagar-footer-item {
  min-width: clamp(50px, 5vw, 80px);
}

.sagar-footer-item strong,
.sagar-footer-item small {
  display: block;
}

.sagar-footer-line {
  display: block;
  width: clamp(40px, 4vw, 70px);
  height: 1px;
  background: #999;
  margin: 0 auto 4px;
}

.sagar-watermark {
  position: absolute;
  z-index: 3;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  color: rgba(255, 70, 70, .2);
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
  width: 80%;
  height: auto;
}

.sagar-certificate-stripe {
  position: absolute;
  z-index: 4;
  width: 170px;
  height: 14px;
  background: #222936;
  transform: rotate(45deg);
  pointer-events: none;
}

.sagar-stripe-top {
  top: 30px;
  right: -45px;
}

.sagar-stripe-bottom {
  bottom: 30px;
  left: -45px;
}

.sagar-stripe-top::after,
.sagar-stripe-bottom::after {
  content: "";
  position: absolute;
  right: -20px;
  width: 35px;
  height: 14px;
  background: var(--color-primary-cert);
}

.sagar-certificate-arrow {
  position: absolute;
  z-index: 5;
  top: 42%;
  transform: translateY(-50%);
  width: clamp(28px, 2.5vw, 34px);
  height: clamp(28px, 2.5vw, 34px);
  border: 0;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary-cert);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  font-size: var(--fs-h4);
  line-height: clamp(20px, 2vw, 28px);
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sagar-certificate-arrow:hover {
  background: var(--color-primary-cert);
  color: var(--color-surface);
  box-shadow: 0 4px 14px rgba(255, 75, 31, .35);
  transform: translateY(-50%) scale(1.05);
}

.sagar-certificate-arrow:active {
  transform: translateY(-50%) scale(.95);
}

.sagar-certificate-arrow.sagar-left {
  left: clamp(-18px, -3.5vw, -45px);
}

.sagar-certificate-arrow.sagar-right {
  right: clamp(-18px, -3.5vw, -45px);
}

.sagar-certificate-counter {
  display: flex;
  gap: clamp(8px, .7vw, 10px);
  margin-top: clamp(12px, 1vw, 16px);
  padding: 6px 0;
  flex-shrink: 0;
}

.sagar-counter-dot {
  width: clamp(8px, .7vw, 10px);
  height: clamp(8px, .7vw, 10px);
  border-radius: 50%;
  background: #d0d5dd;
  cursor: pointer;
  transition: all .3s ease;
  display: inline-block;
}

.sagar-counter-dot:hover {
  background: #b0b5bd;
  transform: scale(1.15);
}

.sagar-counter-dot.sagar-active {
  background: var(--color-primary-cert);
  width: clamp(22px, 1.8vw, 28px);
  border-radius: 12px;
  cursor: default;
}

.sagar-verification-box {
  width: 100%;
  max-width: 800px;
  min-height: 65px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
  padding: clamp(10px, 1.2vw, 14px) clamp(14px, 1.5vw, 18px);
  background: var(--color-surface);
  margin-top: 16px;
  transition: box-shadow .3s ease;
  cursor: default;
  flex-shrink: 0;
}

.sagar-verification-box:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.sagar-verification-icon {
  width: clamp(38px, 3.5vw, 44px);
  height: clamp(38px, 3.5vw, 44px);
  border-radius: 50%;
  background: #f1f3fa;
  display: grid;
  place-items: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
  min-width: 38px;
  min-height: 38px;
}

.sagar-verification-text-content {
  flex: 1;
  min-width: 0;
}

.sagar-verification-text-content strong {
  display: block;
  color: #222;
  font-size: var(--fs-body);
  line-height: 1.3;
  font-weight: 700;
}

.sagar-verification-text-content span {
  display: block;
  margin-top: 2px;
  font-size: var(--fs-sm);
  color: #747887;
}

.sagar-verification-btn {
  margin-left: auto;
  border: 0;
  background: var(--color-primary-cert);
  color: var(--color-surface);
  border-radius: 6px;
  padding: clamp(6px, .6vw, 8px) clamp(14px, 1.2vw, 18px);
  font-size: var(--fs-btn);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  white-space: nowrap;
  letter-spacing: .3px;
  flex-shrink: 0;
}

.sagar-verification-btn:hover {
  background: var(--color-primary-cert-dark);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 75, 31, .35);
}

.sagar-verification-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.sagar-tools-section {
  margin-top: 60px;
  padding: 40px 0 60px;
  background: var(--color-surface);
  border-top: 1px solid #eef0f2;
}

.sagar-tools-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.sagar-tools-heading {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--color-navy-deep);
  margin-bottom: 28px;
  letter-spacing: -.5px;
}

.sagar-tools-heading span {
  color: var(--color-primary-cert);
}

.sagar-tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  margin-bottom: 22px;
}

.sagar-tool-item {
  background: var(--color-surface);
  color: #1a1a2e;
  padding: clamp(8px, .8vw, 12px) clamp(16px, 1.8vw, 28px);
  border-radius: 30px;
  font-size: var(--fs-body);
  font-weight: 600;
  transition: all .3s ease;
  border: 2px solid var(--color-surface-ai);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .03);
  cursor: pointer;
}

.sagar-tool-item:hover {
  background: var(--color-primary-cert);
  color: var(--color-surface);
  border-color: var(--color-primary-cert);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 75, 31, .25);
}

.sagar-ai-tools {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 18px);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sagar-ai-tag {
  background: var(--color-surface-tool);
  color: #1a1a2e;
  padding: clamp(6px, .5vw, 8px) clamp(16px, 1.5vw, 24px);
  border-radius: 25px;
  font-size: var(--fs-body);
  font-weight: 700;
  border: 2px solid #d5dce6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
  cursor: pointer;
}

.sagar-ai-tag::before {
  content: "✨";
  font-size: clamp(12px, .9vw, 15px);
}

.sagar-ai-tag:hover {
  border-color: var(--color-primary-cert);
  background: var(--color-surface);
  transform: translateY(-2px);
}

.sagar-apply-wrapper {
  margin-top: 10px;
}

.sagar-apply-btn {
  background: var(--color-primary-cert);
  color: var(--color-surface);
  border: none;
  padding: clamp(14px, 1.2vw, 16px) clamp(35px, 3.5vw, 55px);
  border-radius: 8px;
  font-size: var(--fs-lg);
  font-weight: 800;
  cursor: pointer;
  transition: all .3s ease;
  letter-spacing: .5px;
  box-shadow: 0 4px 16px rgba(255, 75, 31, .35);
  width: 100%;
  max-width: 350px;
}

.sagar-apply-btn:hover {
  background: var(--color-primary-cert-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 75, 31, .45);
}

.sagar-apply-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(255, 75, 31, .35);
}

.sagar-bottom-bar {
  position: fixed;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  background: var(--color-primary-cert);
  display: flex;
  justify-content: center;
  align-items: stretch;
  box-shadow: 0 -2px 7px rgba(0, 0, 0, .15);
}

.sagar-bottom-bar a {
  min-width: 150px;
  padding: 0 clamp(12px, 1.5vw, 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
  text-decoration: none;
  font-size: var(--fs-body);
  font-weight: 700;
  border-right: 1px solid rgba(0, 0, 0, .13);
  transition: background .3s ease;
  cursor: pointer;
  text-align: center;
}

.sagar-bottom-bar a:first-child {
  border-left: 1px solid rgba(0, 0, 0, .13);
}

.sagar-bottom-bar a:hover {
  background: var(--color-primary-cert-dark);
}

@media (max-width:1024px) {
  .sagar-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px
  }

  .sagar-certificate-arrow.sagar-left {
    left: -25px
  }

  .sagar-certificate-arrow.sagar-right {
    right: -25px
  }

  .sagar-certificate {
    min-height: 220px
  }

  .sagar-info {
    min-height: 400px
  }

  .sagar-certificate-area {
    min-height: 400px
  }

  .sagar-verification-box {
    margin-top: 14px;
    min-height: 60px
  }
}

@media (max-width:850px) {
  .sagar-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .sagar-info {
    min-height: 350px;
    padding: 20px
  }

  .sagar-certificate-area {
    min-height: 350px
  }

  .sagar-certificate {
    min-height: 200px
  }

  .sagar-certificate-arrow.sagar-left {
    left: -20px
  }

  .sagar-certificate-arrow.sagar-right {
    right: -20px
  }

  .sagar-tools-heading {
    font-size: var(--fs-h4)
  }

  .sagar-hero h1 {
    font-size: var(--fs-h1)
  }

  .sagar-verification-box {
    margin-top: 12px;
    min-height: 55px
  }
}

@media (max-width:768px) {
  .sagar-content {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .sagar-info {
    min-height: auto;
    padding: 20px
  }

  .sagar-certificate-area {
    min-height: auto
  }

  .sagar-certificate {
    min-height: 200px;
    aspect-ratio: 1.48 / 1
  }

  .sagar-certificate-arrow.sagar-left {
    left: -15px
  }

  .sagar-certificate-arrow.sagar-right {
    right: -15px
  }

  .sagar-verification-box {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 15px;
    min-height: auto;
    margin-top: 14px
  }

  .sagar-verification-icon {
    width: 38px;
    height: 38px;
    font-size: var(--fs-body);
    min-width: 38px;
    min-height: 38px
  }

  .sagar-verification-text-content strong {
    font-size: var(--fs-sm)
  }

  .sagar-verification-text-content span {
    font-size: var(--fs-caption)
  }

  .sagar-verification-btn {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-size: var(--fs-btn);
    margin-left: 0;
    white-space: normal
  }

  .sagar-tools-grid {
    gap: 8px
  }

  .sagar-tool-item {
    padding: 6px 14px;
    font-size: var(--fs-sm)
  }

  .sagar-apply-btn {
    padding: 12px 20px;
    font-size: var(--fs-btn);
    max-width: 100%
  }

  .sagar-bottom-bar {
    position: static;
    height: auto;
    flex-wrap: wrap
  }

  .sagar-bottom-bar a {
    min-width: 33.33%;
    height: 44px;
    font-size: var(--fs-caption);
    padding: 0 8px;
    border-right: 1px solid rgba(0, 0, 0, .1)
  }

  .sagar-bottom-bar a:first-child {
    border-left: none
  }

  .sagar-hero h1 {
    font-size: var(--fs-h1)
  }
}

@media (max-width:480px) {
  .sagar-page {
    width: 96%
  }

  .sagar-hero {
    padding: 15px 0 20px
  }

  .sagar-hero h1 {
    font-size: var(--fs-h5)
  }

  .sagar-hero-description p {
    font-size: var(--fs-sm)
  }

  .sagar-content {
    gap: 20px;
    margin-top: 15px
  }

  .sagar-info {
    padding: 15px;
    min-height: auto
  }

  .sagar-benefits h2 {
    font-size: var(--fs-body);
    margin-bottom: 10px
  }

  .sagar-benefit {
    font-size: var(--fs-sm);
    padding: 6px 12px;
    margin: 4px 0
  }

  .sagar-verification-text {
    font-size: var(--fs-caption);
    padding-top: 10px;
    margin-top: 10px
  }

  .sagar-certificate-content {
    padding: 12px 15px
  }

  .sagar-certificate-title {
    font-size: var(--fs-lg);
    letter-spacing: 1.5px
  }

  .sagar-certificate-subtitle {
    font-size: var(--fs-caption)
  }

  .sagar-iso {
    font-size: var(--fs-caption)
  }

  .sagar-presented {
    font-size: var(--fs-caption);
    margin-top: 10px
  }

  .sagar-name-line {
    margin: 10px auto 6px
  }

  .sagar-completion {
    font-size: var(--fs-caption)
  }

  .sagar-certificate-details {
    gap: 8px;
    margin-top: 8px
  }

  .sagar-qr {
    width: 40px;
    height: 40px;
    padding: 3px;
    min-width: 40px;
    min-height: 40px;
    border-width: 2px
  }

  .sagar-founder strong {
    font-size: var(--fs-caption)
  }

  .sagar-founder small {
    font-size: var(--fs-caption)
  }

  .sagar-certificate-footer {
    margin-top: 8px;
    font-size: var(--fs-caption)
  }

  .sagar-footer-item {
    min-width: 40px
  }

  .sagar-footer-line {
    width: 30px
  }

  .sagar-certificate-arrow {
    width: 24px;
    height: 24px;
    font-size: var(--fs-body);
    line-height: 16px
  }

  .sagar-certificate-arrow.sagar-left {
    left: -12px
  }

  .sagar-certificate-arrow.sagar-right {
    right: -12px
  }

  .sagar-certificate-counter {
    gap: 6px;
    margin-top: 10px
  }

  .sagar-counter-dot {
    width: 7px;
    height: 7px
  }

  .sagar-counter-dot.sagar-active {
    width: 18px
  }

  .sagar-tools-heading {
    font-size: var(--fs-lg);
    margin-bottom: 18px
  }

  .sagar-tools-grid {
    gap: 6px
  }

  .sagar-tool-item {
    padding: 5px 12px;
    font-size: var(--fs-caption);
    border-width: 1.5px
  }

  .sagar-ai-tag {
    font-size: var(--fs-caption);
    padding: 4px 12px
  }

  .sagar-ai-tag::before {
    font-size: 11px
  }

  .sagar-apply-btn {
    padding: 10px 16px;
    font-size: var(--fs-btn)
  }

  .sagar-verification-box {
    padding: 10px 12px
  }

  .sagar-verification-icon {
    width: 34px;
    height: 34px;
    font-size: var(--fs-body);
    min-width: 34px;
    min-height: 34px
  }

  .sagar-verification-text-content strong {
    font-size: var(--fs-sm)
  }

  .sagar-verification-text-content span {
    font-size: var(--fs-caption)
  }

  .sagar-verification-btn {
    font-size: var(--fs-caption);
    padding: 6px 12px
  }

  .sagar-watermark {
    font-size: var(--fs-lg);
    letter-spacing: 2px
  }

  .sagar-certificate-stripe {
    width: 100px;
    height: 10px
  }

  .sagar-stripe-top {
    top: 20px;
    right: -30px
  }

  .sagar-stripe-bottom {
    bottom: 20px;
    left: -30px
  }

  .sagar-stripe-top::after,
  .sagar-stripe-bottom::after {
    width: 25px;
    height: 10px;
    right: -15px
  }
}

@media (max-width:360px) {
  .sagar-certificate-arrow {
    display: none
  }

  .sagar-hero h1 {
    font-size: var(--fs-h6)
  }

  .sagar-certificate-title {
    font-size: var(--fs-body)
  }

  .sagar-certificate-subtitle {
    font-size: var(--fs-caption)
  }

  .sagar-tool-item {
    padding: 4px 10px;
    font-size: var(--fs-caption)
  }

  .sagar-apply-btn {
    font-size: var(--fs-btn);
    padding: 8px 14px
  }

  .sagar-verification-btn {
    font-size: var(--fs-caption);
    padding: 5px 10px
  }

  .sagar-benefit {
    font-size: var(--fs-caption);
    padding: 5px 10px
  }

  .sagar-info {
    padding: 12px
  }
}

.aman-student-trained {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.aman-student-heading {
  text-align: center;
}

.aman-student-heading h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.aman-student-heading h1 span {
  color: #fc4a1a;
}

.aman-student-heading p {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: #666;
  max-width: 1400px;
  margin: 0 auto;
  text-align: justify;
}

.students-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff3e4;
  padding: 35px !important;
}

.students-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 45s linear infinite;
  will-change: transform;
}

.students-slider-container:hover .students-grid {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.student-card {
  flex: 0 0 280px;
  background-color: var(--color-surface);
  border: 1px solid #e0d8d4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .02);
  transition: box-shadow .3s ease, border-color .3s ease;
}

.student-card:hover {
  border-color: #fc4a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.lpa-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fc4a1a;
  color: white;
  font-weight: bold;
  font-size: var(--fs-label);
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  z-index: 10;
}

.location-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--color-body-strong);
  color: white;
  font-weight: 600;
  font-size: var(--fs-label);
  padding: 4px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  z-index: 10;
}

.student-name {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #222;
}

.student-role {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: #b84706;
  margin-bottom: 15px;
}

.student-info {
  border-top: 1px solid #fde4c6;
  padding-top: 15px;
  margin-bottom: 20px;
}

.student-info p {
  font-size: var(--fs-sm);
  color: #555;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.student-info p span {
  color: var(--color-muted-footer);
  font-weight: 500;
}

.batch-info {
  background-color: #fff3e4;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-body-strong);
  margin-top: 5px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.read-more-btn {
  display: block;
  width: 100%;
  background-color: #2a1405;
  color: white;
  text-align: center;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: var(--fs-btn);
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
}

.read-more-btn:hover {
  background-color: #ef6c0b;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #fc4a1a;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: var(--fs-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
  z-index: 100;
  transition: transform .2s;
}

@media (max-width:1024px) {
  .student-card {
    flex: 0 0 260px
  }
}

@media (max-width:600px) {
  .aman-student-heading h1 {
    font-size: var(--fs-h5)
  }

  .student-card {
    flex: 0 0 78vw
  }

  .students-slider-container {
    padding: 20px 12px !important
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px
  }
}

.aman-data-analytics {
  width: 100%;
  max-width: 1300px;
  margin: 25px auto 0;
}

.data-analytics {
  margin-bottom: 35px !important;
}

.data-science {
  border-bottom: 2px solid var(--color-primary);
  margin: 0 auto 35px;
  padding: 0 clamp(12px, 4vw, 35px) 1rem;
  font-size: var(--fs-h1);
}

.table-container {
  width: 100%;
  max-width: 1400px;
  background-color: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
  overflow-x: auto;
  margin: 25px auto;
}

@media (max-width:769px) {
  .table-container {
    width: 100%;
    margin: 20px 0
  }
}

.da-lead,
.da-note {
  padding: 0 clamp(12px, 4vw, 15px);
}

.da-lead {
  text-align: center;
}

@media (max-width:600px) {
  .aman-student-heading p {
    text-align: left
  }
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.texts-colors {
  color: rgb(94, 92, 92);
  font-weight: bold;
}

.course h2 {
  text-align: center;
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.course p {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: #666;
  max-width: 1400px;
  margin: 0 auto;
  text-align: justify;
}

.course-delails {
  list-style: none;
  margin: 0;
}

@media (max-width:1600px) {
  .course-delails {
    padding-left: 10%
  }
}

.course-delails li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: #555;
  font-weight: 400;
}

.course-delails li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fc4a1a;
}

.course-delails li strong {
  font-weight: 700;
  color: #222;
}

@media (max-width:600px) {
  .course-delails li {
    font-size: var(--fs-body);
    padding-left: 25px;
    margin-bottom: 15px
  }

  .course-delails li::before {
    top: 8px;
    width: 7px;
    height: 7px
  }
}

.course-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  padding: 30px;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 30px;
}

body>section,
.aman-student-trained,
.aman-data-analytics,
.aman-course-overview,
#UnCodemy-Batch,
.bhawni_curriculum-section,
.cert-section,
.adarsh-tools-wrap,
.hm-faq,
.jt-section-style {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.sahil-ins-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sahil-ins-section {
  display: block;
  width: 100%;
  max-width: 1362px;
  margin: 0 auto;
  padding: 64px 20px 80px;
  font-family: var(--font-primary);
  color: #16233a;
  clear: both;
}

.sahil-ins-container {
  max-width: 1362px;
  margin: 0 auto;
}

.sahil-ins-head {
  max-width: 1300px;
  margin-bottom: 34px;
}

.sahil-ins-head h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h2);
  letter-spacing: -.015em;
  margin: 0 0 8px;
  color: #16233a;
}

.sahil-ins-kicker {
  margin: 0 0 20px;
  font-size: var(--fs-body);
  font-weight: 600;
  color: #f4511e;
}

.sahil-ins-head p {
  margin: 0 0 14px;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: #5a6779;
}

.sahil-ins-head p:last-child {
  margin-bottom: 0;
}

.sahil-ins-carousel {
  position: relative;
}

.sahil-ins-viewport {
  overflow: hidden;
  padding: 6px 4px 10px;
  margin: -6px -4px -10px;
}

.sahil-ins-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  will-change: transform;
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
}

.sahil-ins-slide {
  flex: 0 0 100%;
  display: flex;
}

.sahil-ins-nav-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.sahil-ins-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #e6ebf2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(22, 35, 58, .05), 0 6px 16px rgba(22, 35, 58, .07);
  transition: transform .25s cubic-bezier(.34, 1.4, .64, 1), box-shadow .25s, border-color .25s;
}

.sahil-ins-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a3d, #f4511e);
  transform: scale(0);
  transition: transform .32s cubic-bezier(.34, 1.3, .64, 1);
}

.sahil-ins-arrow:hover {
  border-color: #f4511e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(244, 81, 30, .26);
}

.sahil-ins-arrow:hover::before {
  transform: scale(1);
}

.sahil-ins-arrow:active {
  transform: translateY(0) scale(.96);
}

.sahil-ins-arrow:focus-visible {
  outline: 2px solid #f4511e;
  outline-offset: 3px;
}

.sahil-ins-arrow svg {
  position: relative;
  width: 19px;
  height: 19px;
  stroke: #16233a;
  fill: none;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s, transform .3s cubic-bezier(.34, 1.3, .64, 1);
}

.sahil-ins-arrow:hover svg {
  stroke: #fff;
}

.sahil-ins-arrow.sahil-ins-next:hover svg {
  transform: translateX(3px);
}

.sahil-ins-arrow.sahil-ins-prev:hover svg {
  transform: translateX(-3px);
}

.sahil-ins-progress-track {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 22px;
}

.sahil-ins-bar {
  flex: 1;
  height: 5px;
  background: #dde4ee;
  border-radius: 3px;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-end;
  transition: height .25s ease, background .25s ease;
}

.sahil-ins-bar:hover {
  background: #f8c9b8;
}

.sahil-ins-bar.is-active {
  height: 13px;
  background: #f4511e;
}

.sahil-ins-bar:focus-visible {
  outline: 2px solid #f4511e;
  outline-offset: 2px;
}

.sahil-ins-card {
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 28px 24px 22px;
  width: 100%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 1px 2px rgba(22, 35, 58, .04), 0 10px 24px rgba(22, 35, 58, .05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.sahil-ins-card:hover {
  transform: translateY(-4px);
  border-color: #f6cdbe;
  box-shadow: 0 2px 4px rgba(22, 35, 58, .05), 0 18px 38px rgba(22, 35, 58, .1);
}

.sahil-ins-avatar-link {
  display: block;
  text-decoration: none;
}

.sahil-ins-avatar,
.sahil-ins-avatar-fallback {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  margin: 0 auto 16px;
  flex: 0 0 auto;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #fff0ea, 0 8px 20px rgba(22, 35, 58, .14);
  transition: box-shadow .28s ease;
}

.sahil-ins-avatar-link:hover .sahil-ins-avatar,
.sahil-ins-avatar-link:hover .sahil-ins-avatar-fallback {
  box-shadow: 0 0 0 3px #f4511e, 0 10px 24px rgba(244, 81, 30, .28);
}

.sahil-ins-avatar {
  object-fit: cover;
  object-position: top center;
  background: #fff0ea;
  display: block;
}

.sahil-ins-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0ea;
  color: #f4511e;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-h3);
}

.sahil-ins-name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-lg);
  margin: 0 0 6px;
}

.sahil-ins-name a {
  color: #f4511e;
  text-decoration: none;
}

.sahil-ins-name a:hover {
  text-decoration: underline;
}

.sahil-ins-role {
  margin: 0 0 4px;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.5;
  color: #16233a;
}

.sahil-ins-divider {
  height: 1px;
  background: #e6ebf2;
  margin: 14px 0 16px;
}

.sahil-ins-label {
  display: block;
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #5a6779;
  margin-bottom: 10px;
}

.sahil-ins-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}

.sahil-ins-chip {
  font-size: var(--fs-caption);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f2f5fa;
  color: #41506a;
  border: 1px solid #e6ebf2;
  white-space: nowrap;
}

.sahil-ins-chip.is-more {
  background: #fff0ea;
  color: #f4511e;
  border-color: #f8d6c8;
}

.sahil-ins-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
  text-align: left;
}

.sahil-ins-more.is-open {
  max-height: 520px;
}

.sahil-ins-more-inner {
  padding: 2px 0 6px;
}

.sahil-ins-more-inner h4 {
  font-size: var(--fs-caption);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #5a6779;
  margin: 10px 0 6px;
}

.sahil-ins-more-inner p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: #5a6779;
}

.sahil-ins-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto 14px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--fs-caption);
  font-weight: 600;
  color: #16233a;
  transition: color .2s;
}

.sahil-ins-readmore svg {
  width: 12px;
  height: 12px;
  stroke: #16233a;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s ease, stroke .2s;
}

.sahil-ins-readmore:hover {
  color: #f4511e;
}

.sahil-ins-readmore:hover svg {
  stroke: #f4511e;
}

.sahil-ins-readmore[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.sahil-ins-readmore:focus-visible {
  outline: 2px solid #f4511e;
  outline-offset: 3px;
  border-radius: 4px;
}

.sahil-ins-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e6ebf2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sahil-ins-profile-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  font-size: var(--fs-btn);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a3d, #f4511e);
  padding: 11px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(244, 81, 30, .26);
  transition: transform .22s, box-shadow .22s, filter .22s;
}

.sahil-ins-profile-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 9px 22px rgba(244, 81, 30, .34);
  color: #fff;
}

.sahil-ins-profile-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .28s cubic-bezier(.34, 1.3, .64, 1);
}

.sahil-ins-profile-btn:hover svg {
  transform: translateX(3px);
}

.sahil-ins-linkedin-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #eef2f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background .22s, transform .22s;
}

.sahil-ins-linkedin-btn svg {
  width: 17px;
  height: 17px;
  fill: #41506a;
  transition: fill .22s;
}

.sahil-ins-linkedin-btn:hover {
  background: #0a66c2;
  transform: translateY(-2px);
}

.sahil-ins-linkedin-btn:hover svg {
  fill: #fff;
}

@media (min-width:1280px) {
  .sahil-ins-slide {
    flex-basis: calc(25% - 18px)
  }

  .sahil-ins-track {
    gap: 24px
  }
}

@media (min-width:768px) and (max-width:1279px) {
  .sahil-ins-slide {
    flex-basis: calc(33.333% - 12px)
  }

  .sahil-ins-track {
    gap: 18px
  }

  .sahil-ins-card {
    padding: 22px 16px 18px;
    min-height: 430px
  }

  .sahil-ins-avatar,
  .sahil-ins-avatar-fallback {
    width: 100px;
    height: 100px
  }

  .sahil-ins-name {
    font-size: var(--fs-body)
  }

  .sahil-ins-chip {
    font-size: var(--fs-caption);
    padding: 4px 8px
  }

  .sahil-ins-profile-btn {
    font-size: var(--fs-caption);
    padding: 10px 10px
  }

  .sahil-ins-linkedin-btn {
    width: 38px;
    height: 38px
  }
}

@media (min-width:576px) and (max-width:767px) {
  .sahil-ins-slide {
    flex-basis: calc(50% - 12px)
  }

  .sahil-ins-track {
    gap: 16px
  }

  .sahil-ins-card {
    padding: 20px 14px 16px;
    min-height: 400px
  }

  .sahil-ins-avatar,
  .sahil-ins-avatar-fallback {
    width: 88px;
    height: 88px
  }

  .sahil-ins-name {
    font-size: var(--fs-body)
  }

  .sahil-ins-role {
    font-size: var(--fs-caption)
  }

  .sahil-ins-chip {
    font-size: var(--fs-caption);
    padding: 3px 7px
  }

  .sahil-ins-profile-btn {
    font-size: var(--fs-caption);
    padding: 9px 8px
  }

  .sahil-ins-linkedin-btn {
    width: 34px;
    height: 34px
  }

  .sahil-ins-linkedin-btn svg {
    width: 14px;
    height: 14px
  }

  .sahil-ins-arrow {
    width: 44px;
    height: 44px
  }

  .sahil-ins-arrow svg {
    width: 17px;
    height: 17px
  }

  .sahil-ins-nav-row {
    gap: 14px;
    margin-top: 22px
  }
}

@media (max-width:575px) {
  .sahil-ins-slide {
    flex-basis: 100%
  }

  .sahil-ins-track {
    gap: 16px
  }

  .sahil-ins-section {
    padding: 44px 16px 56px
  }

  .sahil-ins-card {
    padding: 24px 18px 18px;
    min-height: auto
  }

  .sahil-ins-avatar,
  .sahil-ins-avatar-fallback {
    width: 104px;
    height: 104px
  }

  .sahil-ins-name {
    font-size: var(--fs-lg)
  }

  .sahil-ins-role {
    font-size: var(--fs-caption)
  }

  .sahil-ins-chip {
    font-size: var(--fs-caption);
    padding: 4px 8px
  }

  .sahil-ins-profile-btn {
    font-size: var(--fs-caption);
    padding: 10px 12px
  }

  .sahil-ins-linkedin-btn {
    width: 38px;
    height: 38px
  }

  .sahil-ins-arrow {
    width: 46px;
    height: 46px
  }

  .sahil-ins-arrow svg {
    width: 17px;
    height: 17px
  }

  .sahil-ins-nav-row {
    gap: 12px;
    margin-top: 22px
  }

  .sahil-ins-head p {
    font-size: var(--fs-sm)
  }
}

@media (max-width:380px) {
  .sahil-ins-section {
    padding: 32px 12px 44px
  }

  .sahil-ins-card {
    padding: 18px 12px 14px
  }

  .sahil-ins-avatar,
  .sahil-ins-avatar-fallback {
    width: 80px;
    height: 80px
  }

  .sahil-ins-name {
    font-size: var(--fs-body)
  }

  .sahil-ins-role {
    font-size: var(--fs-caption)
  }

  .sahil-ins-chip {
    font-size: var(--fs-caption);
    padding: 2px 6px
  }

  .sahil-ins-profile-btn {
    font-size: var(--fs-caption);
    padding: 8px 6px;
    gap: 4px
  }

  .sahil-ins-profile-btn svg {
    width: 12px;
    height: 12px
  }

  .sahil-ins-linkedin-btn {
    width: 32px;
    height: 32px
  }

  .sahil-ins-linkedin-btn svg {
    width: 13px;
    height: 13px
  }

  .sahil-ins-arrow {
    width: 38px;
    height: 38px
  }

  .sahil-ins-arrow svg {
    width: 14px;
    height: 14px
  }

  .sahil-ins-nav-row {
    gap: 10px;
    margin-top: 16px
  }

  .sahil-ins-bar {
    height: 4px
  }

  .sahil-ins-bar.is-active {
    height: 10px
  }
}

@media (prefers-reduced-motion:reduce) {

  .sahil-ins-track,
  .sahil-ins-card,
  .sahil-ins-profile-btn,
  .sahil-ins-linkedin-btn,
  .sahil-ins-more,
  .sahil-ins-arrow,
  .sahil-ins-arrow::before,
  .sahil-ins-arrow svg,
  .sahil-ins-readmore svg {
    transition: none !important
  }
}

#UnCodemy-Batch {
  padding: 40px 20px;
  background: var(--color-surface);
  color: var(--color-body-strong);
  font-family: var(--font-primary);
}

#UnCodemy-Batch * {
  box-sizing: border-box;
}

.ub-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ub-head {
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border-batch);
  text-align: center;
}

.ub-head h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.25;
}

.ub-sub {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: 1.5;
}

.ub-group-title {
  margin: 26px 0 10px;
  color: var(--color-text);
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.ub-table-scroll {
  width: 100%;
  border-radius: 8px;
}

.ub-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: var(--fs-sm);
}

.ub-col-date {
  width: 20%;
}

.ub-col-time {
  width: 34%;
}

.ub-col-trainer {
  width: 26%;
}

.ub-col-seats {
  width: 20%;
}

.ub-table thead th {
  padding: 14px 12px;
  background: linear-gradient(90deg, var(--color-primary-batch), var(--color-primary-batch-light));
  color: #1a1a1a;
  font-size: var(--fs-sm);
  font-weight: 800;
  text-align: center;
}

.ub-table thead th:first-child {
  border-top-left-radius: 8px;
  padding-left: 20px;
  text-align: left;
}

.ub-table thead th:last-child {
  border-top-right-radius: 8px;
}

.ub-table tbody td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--color-border-soft);
  text-align: center;
  vertical-align: middle;
}

.ub-table tbody td:first-child {
  padding-left: 20px;
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
}

.ub-table tbody tr:nth-child(even) td {
  background: var(--color-surface-primary-soft);
}

.ub-table tbody tr:last-child td {
  border-bottom: 0;
}

.ub-date {
  white-space: nowrap;
}

.ub-date b {
  margin-right: 3px;
  color: var(--color-primary-batch);
  font-size: var(--fs-lg);
  font-weight: 800;
}

.ub-seats {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--color-text);
  font-weight: 700;
  white-space: nowrap;
}

.ub-seats b {
  padding: 2px 8px;
  border-radius: 5px;
  background: rgba(255, 87, 34, .12);
  color: var(--color-primary-batch);
  font-size: var(--fs-body);
  font-weight: 800;
}

.ub-note {
  margin: 16px 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  font-style: italic;
}

.ub-cta {
  margin-top: 22px;
  text-align: center;
}

.ub-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 34px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--color-primary-batch), var(--color-primary-batch-light));
  color: var(--color-surface);
  font-size: var(--fs-body);
  font-weight: 800;
  text-decoration: none;
  transition: filter 160ms ease, transform 160ms ease;
}

.ub-enroll:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

@media (max-width:1024px) {
  #UnCodemy-Batch {
    padding: 32px 16px
  }

  .ub-table {
    font-size: var(--fs-sm)
  }

  .ub-table thead th,
  .ub-table tbody td {
    padding: 12px 10px
  }
}

@media (max-width:700px) {
  #UnCodemy-Batch {
    padding: 26px 12px
  }

  .ub-table {
    font-size: var(--fs-caption)
  }

  .ub-col-date {
    width: 26%
  }

  .ub-col-time {
    width: 42%
  }

  .ub-col-trainer {
    width: 32%
  }

  .ub-col-seats {
    display: none
  }

  .ub-table thead th,
  .ub-table tbody td {
    padding: 11px 6px
  }

  .ub-table thead th:first-child,
  .ub-table tbody td:first-child {
    padding-left: 10px
  }

  .ub-table thead th:last-child {
    border-top-right-radius: 0
  }

  .ub-table thead th.ub-col-trainer {
    border-top-right-radius: 8px
  }

  .ub-date b {
    font-size: var(--fs-body)
  }

  .ub-enroll {
    width: 100%
  }
}

@media (max-width:380px) {
  .ub-table {
    font-size: var(--fs-caption)
  }

  .ub-table thead th,
  .ub-table tbody td {
    padding: 10px 4px
  }

  .ub-date b {
    font-size: var(--fs-body)
  }
}

.adarsh-tools-wrap * {
  box-sizing: border-box;
}

.adarsh-tools-wrap {
  font-family: var(--font-primary);
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 16px 38px;
  text-align: center;
  background: var(--color-surface);
}

.adarsh-tools-title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-navy-tools);
  margin: 0 0 26px;
  line-height: 1.35;
  letter-spacing: -.2px;
}

.adarsh-tools-title .adarsh-hl {
  color: var(--color-primary-tools);
}

.adarsh-tools-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.adarsh-tool-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-line);
  border-radius: 5px;
  padding: 8px 15px;
  min-height: 41px;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

.adarsh-tool-chip img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.adarsh-tool-chip span {
  font-size: var(--fs-label);
  font-weight: 700;
  color: #1b1b1b;
  white-space: nowrap;
  line-height: 1;
}

@media(hover:hover) {
  .adarsh-tool-chip:hover {
    border-color: var(--color-primary-tools);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .09)
  }
}

.adarsh-apply-btn {
  display: inline-block;
  background: var(--color-primary-tools);
  color: var(--color-surface);
  border: 0;
  border-radius: 4px;
  padding: 9px 22px;
  font-size: var(--fs-btn);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .18s;
}

.adarsh-apply-btn:hover {
  background: #e33d0e;
  color: var(--color-surface);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 76, 26, .3);
}

@media(max-width:1024px) {
  .adarsh-tools-list {
    gap: 12px
  }

  .adarsh-tool-chip {
    padding: 8px 13px;
    gap: 8px
  }

  .adarsh-tool-chip span {
    font-size: var(--fs-label)
  }

  .adarsh-tool-chip img {
    width: 24px;
    height: 24px
  }
}

.adarsh-tools-dots {
  display: none;
}

@media(max-width:767px) {
  .adarsh-tools-wrap {
    padding: 26px 0 32px;
    margin: 0;
  }

  .adarsh-tools-title {
    padding: 0 16px;
    margin-bottom: 20px
  }

  .adarsh-tools-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    gap: 12px;
    padding: 4px 16px 12px;
    margin-bottom: 8px;
    scrollbar-width: none
  }

  .adarsh-tools-list::-webkit-scrollbar {
    display: none
  }

  .adarsh-tool-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 9px 14px
  }

  .adarsh-tools-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 0 0 20px
  }

  .adarsh-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #dcdcdc;
    transition: background .25s, width .25s
  }

  .adarsh-dot.is-active {
    background: var(--color-primary-tools);
    width: 16px;
    border-radius: 3px
  }
}

@media(max-width:380px) {
  .adarsh-tool-chip span {
    font-size: var(--fs-label)
  }
  .adarsh-tools-title {
    font-size: 16px;
  }
      .adarsh-tool-chip span {
        font-size: 11px;
      }
  .adarsh-tool-chip img {
    width: 22px;
    height: 22px
  }
}

@media(prefers-reduced-motion:reduce) {

  .adarsh-tool-chip,
  .adarsh-apply-btn {
    transition: none
  }
}

.cert-section * {
  box-sizing: border-box;
}

.cert-section {
  font-family: var(--font-primary);
  color: var(--color-navy-cert);
  padding: 34px 16px 44px;
}

.cert-container {
  max-width: 1180px;
  margin: 0 auto;
}

.cert-title {
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0 0 26px;
  line-height: 1.35;
}

.cert-title span {
  color: var(--color-primary);
}

.cert-intro {
  margin: 0 auto 26px;
  max-width: 1120px;
}

.cert-intro p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-body-cert);
  margin: 0 0 10px;
}

.cert-intro p:last-child {
  margin-bottom: 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.cert-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cert-sub {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-navy-cert);
  margin: 0 0 16px;
}

.cert-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-list li {
  border-left: 3px solid var(--color-primary);
  padding: 0 0 0 14px;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--color-body-cert);
}

.cert-list li strong {
  color: var(--color-navy-cert);
  font-weight: 700;
}

.cert-note {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-body-cert);
  margin: 0 0 20px;
}

.cert-verify {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid #e4ebf5;
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(16, 26, 53, .05);
  transition: box-shadow .22s, transform .22s;
}

.cert-verify:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(16, 26, 53, .11);
}

.cert-verify-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2f0fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cert-verify-icon svg {
  width: 20px;
  height: 20px;
  fill: #4b3f8f;
}

.cert-verify-text {
  flex: 1;
  min-width: 0;
}

.cert-verify-text b {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-navy-cert);
  line-height: 1.35;
  margin-bottom: 3px;
}

.cert-verify-text em {
  display: block;
  font-style: normal;
  font-size: var(--fs-caption);
  color: #8b96a8;
  line-height: 1.4;
}

.cert-verify-btn {
  flex: 0 0 auto;
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: var(--fs-caption);
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .2s;
}

.cert-verify:hover .cert-verify-btn {
  background: #ea4715;
}

.cert-right {
  display: flex;
  min-width: 0;
}

.cert-slider {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: #e9eef7;
}

.cert-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cert-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.65, 0, .35, 1);
}

.cert-slide {
  flex: 0 0 100%;
  height: 100%;
}

.cert-slide img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cert-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0;
  z-index: 2;
  transition: background .2s, transform .2s;
}

.cert-arrow svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-arrow:hover {
  background: var(--color-surface);
  transform: translateY(-50%) scale(1.08);
}

.cert-prev {
  left: 10px;
}

.cert-next {
  right: 10px;
}

.cert-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.cert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .55);
  transition: background .2s, width .2s;
}

.cert-dot.is-active {
  background: var(--color-primary);
  width: 18px;
  border-radius: 4px;
}

@media(max-width:992px) {
  .cert-grid {
    gap: 22px
  }

  .cert-list li,
  .cert-note,
  .cert-intro p {
    font-size: var(--fs-sm)
  }

  .cert-verify {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px
  }

  .cert-verify-text {
    flex: 1 1 100%;
    order: 2
  }

  .cert-verify-icon {
    order: 1
  }

  .cert-verify-btn {
    order: 3;
    flex: 1 1 100%;
    text-align: center
  }
}

@media(max-width:767px) {
  .cert-section {
    padding: 28px 14px 36px
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .cert-verify {
    margin-top: 20px;
    flex-wrap: nowrap
  }

  .cert-verify-text {
    flex: 1;
    order: 0
  }

  .cert-verify-icon {
    order: -1
  }

  .cert-verify-btn {
    order: 0;
    flex: 0 0 auto
  }

  .cert-slide img {
    min-height: 220px;
    height: auto
  }

  .cert-slider {
    height: auto
  }
}

@media(max-width:480px) {
  .cert-verify {
    flex-wrap: wrap
  }

  .cert-verify-text {
    flex: 1 1 calc(100% - 56px)
  }

  .cert-verify-btn {
    flex: 1 1 100%;
    text-align: center
  }

  .cert-arrow {
    width: 28px;
    height: 28px
  }
}

.data1 .review-source-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 30px;
  background: var(--color-surface);
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .02);
}

.aman-data-analytics .da-para-inset {
  padding: 0 15px;
}

.aman-data-analytics .da-strong-text {
  color: #5e5c5c;
  font-weight: bold;
}

#UnCodeMy-Footer {
  margin: 0;
  background: var(--color-surface-dark);
  color: var(--color-surface);
  font-family: var(--font-primary);
}

#UnCodeMy-Footer * {
  box-sizing: border-box;
  min-width: 0;
}

#UnCodeMy-Footer a {
  color: var(--color-surface);
  text-decoration: none;
}

#UnCodeMy-Footer img {
  max-width: 100%;
  display: block;
}

#UnCodeMy-Footer h2 {
  margin: 0;
  color: var(--color-surface-soft);
  font-size: var(--fs-h5);
  font-weight: 900;
  line-height: 1.1;
}

#UnCodeMy-Footer .ftr-icon {
  width: 15px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--color-surface);
}

.Hemank-page,
.Hemank-footer {
  width: 100%;
  overflow-x: hidden;
  background: var(--color-surface-dark);
}

.Hemank-footer-top {
  padding: clamp(22px, 3vw, 34px) clamp(12px, 2.2vw, 24px) 15px;
}

.Hemank-footer-wrap {
  width: min(100%, 1760px);
  margin: 0 auto;
}

.Hemank-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-items: start;
  gap: clamp(26px, 2.4vw, 44px) clamp(18px, 2.4vw, 40px);
}

.Hemank-brand-col {
  grid-column: span 1;
}

.Hemank-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(14px, 2vw, 24px);
}

.Hemank-brand-mark img {
  width: 100%;
  max-width: clamp(180px, 22vw, 300px);
  height: auto;
}

.Hemank-about-text {
  width: 100%;
  max-width: 340px;
  margin: 0 0 18px;
  color: var(--color-surface-soft);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.65;
  text-align: justify;
}

.Hemank-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  margin-bottom: 5px;
}

.Hemank-social-link {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  color: var(--color-surface);
  font-size: var(--fs-body);
  font-weight: 900;
  transition: transform 160ms ease, filter 160ms ease;
}

.Hemank-social-link:hover,
.Hemank-promo-card:hover,
.Hemank-links-col a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.Hemank-social-fb {
  border: 2px solid var(--color-surface);
  border-radius: 50%;
  font-family: var(--font-primary);
}

.Hemank-social-in {
  border-radius: 4px;
  background: #0a78b6;
  font-size: var(--fs-body);
}

.Hemank-social-ig {
  border-radius: 7px;
  background: linear-gradient(135deg, #654dff, #e34086 58%, #f9a12d);
  font-size: var(--fs-caption);
}

.Hemank-contact-col h2,
.Hemank-links-col h2,
.Hemank-payment-col h2 {
  margin-bottom: 10px;
}

.Hemank-contact-group {
  display: grid;
  gap: clamp(12px, 1.4vw, 16px);
}

.Hemank-contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: clamp(9px, 1.2vw, 15px);
  align-items: start;
  color: var(--color-surface);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.Hemank-contact-item p {
  margin: 0;
}

.Hemank-links-col ul {
  display: grid;
  gap: clamp(11px, 1.4vw, 16px);
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.Hemank-links-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-surface);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.25;
  transition: transform 160ms ease, filter 160ms ease, color 160ms ease;
}

.Hemank-links-col a::before {
  content: "⇨";
  flex: 0 0 auto;
  color: var(--color-primary-footer);
  font-size: clamp(19px, 1.4vw + 12px, 27px);
  line-height: 1;
}

.Hemank-links-col a:hover {
  color: #ff7d4a;
}

.Hemank-payment-col p {
  margin: 0 0 14px;
  color: var(--color-surface);
  font-size: var(--fs-caption);
  font-weight: 900;
}

.Hemank-payment-methods {
  margin-bottom: clamp(10px, 1.2vw, 14px);
}

.Hemank-payment-methods img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.footer-right-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
}

.Hemank-promo-card {
  width: 100%;
  aspect-ratio: 215 / 78;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 160ms ease, filter 160ms ease;
}

.Hemank-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Hemank-fee-card {
  background: linear-gradient(180deg, #81cc35, #43a81a);
}

.Hemank-whatsapp-card {
  background: var(--color-teal-dark);
}

.Hemank-demo-card {
  background: linear-gradient(180deg, #a338a6, #702ca7);
}

.Hemank-placement-card {
  background: linear-gradient(135deg, var(--color-surface), #e8f4fb 45%, var(--color-surface));
}

.Hemank-course-footer {
  border-top: 1px solid rgba(255, 255, 255, .68);
  background: var(--color-surface-dark);
}

.Hemank-course-wrap {
  padding: clamp(12px, 1.6vw, 18px) clamp(12px, 2.2vw, 24px) clamp(4px, 1vw, 10px);
}

.Hemank-city-pages h2 {
  margin-bottom: 14px;
  font-size: var(--fs-h5);
}

.Hemank-city-row {
  margin: 0;
}

.Hemank-city-row h3 {
  margin: 0 0 12px;
  color: var(--color-surface-soft);
  font-size: var(--fs-h6);
  font-weight: 900;
  line-height: 1.2;
}

.Hemank-text-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}

.Hemank-text-links a {
  position: relative;
  display: inline-block;
  color: var(--color-surface);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.4;
  transition: color 160ms ease;
}

.Hemank-text-links a::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -9px;
  width: 2px;
  height: 13px;
  background: var(--color-primary-footer);
}

.Hemank-text-links a:last-child::after {
  display: none;
}

.Hemank-text-links a:hover {
  color: #ff7d4a;
}

.Hemank-copyright-section {
  min-height: 40px;
  margin-bottom: 35px;
  padding: 10px clamp(12px, 2vw, 24px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #696969;
}

.Hemank-copyright-section p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.4;
}

.Hemank-copyright-section strong {
  color: var(--color-surface);
  font-weight: 500;
}

.Hemank-desktop-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  height: 35px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--color-primary-footer);
  box-shadow: 0 -2px 9px rgba(0, 0, 0, .35);
}

.Hemank-desktop-cta a {
  display: grid;
  place-items: center;
  padding: 0 4px;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(120, 28, 0, .22);
  color: var(--color-surface);
  font-size: var(--fs-btn);
  font-weight: 900;
  text-align: center;
  transition: background 160ms ease;
}

.Hemank-desktop-cta a:hover,
.Hemank-desktop-cta a.is-active {
  background: var(--color-primary-footer-dark);
}

#UnCodeMy-Footer .bottom-navbar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 20px);
  max-width: 420px;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  border-radius: 40px;
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

#UnCodeMy-Footer .nav-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 2px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: var(--color-muted);
  font-size: var(--fs-caption);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

#UnCodeMy-Footer .nav-item svg {
  width: clamp(18px, 5.4vw, 22px);
  height: clamp(18px, 5.4vw, 22px);
  stroke: var(--color-muted);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 200ms ease;
}

#UnCodeMy-Footer .nav-item.active {
  color: #ff6a1a;
  background: #fff1e8;
}

#UnCodeMy-Footer .nav-item.active svg {
  stroke: #ff6a1a;
}

#UnCodeMy-Footer .nav-item.center {
  padding: 0;
  margin-top: -28px;
  background: transparent;
}

#UnCodeMy-Footer .nav-item.center .center-btn {
  width: clamp(44px, 13vw, 54px);
  height: clamp(44px, 13vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff7a2e, #ff5a1a);
  box-shadow: 0 6px 16px rgba(255, 90, 26, .4);
}

#UnCodeMy-Footer .nav-item.center span {
  margin-top: 4px;
  color: #f8f5f5;
}

#UnCodeMy-Footer .abhay-white {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  color: #fefefe;
  font-size: var(--fs-caption);
  line-height: 1.1;
}

@media (min-width:1100px) {
  .Hemank-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }
}

@media (max-width:620px) {
  .Hemank-about-text {
    max-width: none
  }

  .Hemank-copyright-section {
    margin-bottom: 35px;
    padding: 14px 18px;
    display: grid;
    place-items: center;
    gap: 4px;
    text-align: center;
    color: var(--color-muted-footer)
  }
}

@media (max-width:500px) {
  .Hemank-copyright-section {
    margin-bottom: 84px
  }
}

@media (max-width:360px) {
  .Hemank-footer-top {
    padding: 20px 10px 12px
  }

  .Hemank-course-wrap {
    padding: 14px 10px 0
  }

  #UnCodeMy-Footer .bottom-navbar {
    width: calc(100% - 12px);
    padding: 6px 2px
  }

  #UnCodeMy-Footer .nav-item {
    padding: 6px 1px;
    gap: 2px
  }

  #UnCodeMy-Footer .nav-item.center {
    margin-top: -24px
  }
}

@media (max-width:1180px) {
  .Hemank-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px 32px
  }

  .Hemank-copyright-section {
    padding: 0 6%
  }

  .Hemank-rating-row {
    flex-wrap: wrap;
    gap: 10px
  }
}

@media (max-width:900px) {
  .Hemank-footer-wrap {
    width: 100%
  }

  .Hemank-footer-top {
    padding: 30px 16px 15px
  }
}

@media (max-width:760px) {
  .Hemank-footer-top {
    padding: 28px 18px 15px
  }

  .Hemank-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px
  }

  .Hemank-about-text,
  .Hemank-partner-card,
  .Hemank-award-card,
  .Hemank-divider,
  .Hemank-promo-card,
  .Hemank-payment-methods {
    width: 100%;
    max-width: 360px
  }

  .Hemank-contact-card {
    margin-left: 10px
  }

  .Hemank-course-wrap {
    padding: 16px 12px 0
  }

  .Hemank-city-pages {
    margin-top: 26px
  }

  .Hemank-copyright-section {
    min-height: 102px;
    padding: 12px 22px 46px;
    display: grid;
    place-items: center;
    gap: 4px;
    text-align: center;
    color: var(--color-muted-footer)
  }

  .Hemank-copyright-section p {
    font-size: var(--fs-body)
  }

  .Hemank-copyright-section p:nth-child(2),
  .Hemank-copyright-section p:nth-child(3) {
    font-size: var(--fs-body)
  }

  .Hemank-copyright-section p:nth-child(3) {
    margin-top: 24px
  }
}

@media (max-width:560px) and (min-width:501px) {
  .Hemank-desktop-cta a {
    font-size: var(--fs-caption)
  }
}

@media (max-width:500px) {
  .Hemank-desktop-cta {
    display: none
  }
  .adarsh-tools-title {
    font-size: 20px;
  }
  #UnCodeMy-Footer .bottom-navbar {
    display: flex
  }

  #UnCodeMy-Footer .nav-item {
    color: #000
  }

  .Hemank-footer {
    padding-bottom: 2px
  }

  .Hemank-copyright-section {
    margin-bottom: 80px
  }

  .Hemank-copyright-section p:nth-child(3) {
    margin-top: 2px;
    font-size: var(--fs-sm)
  }
}

@media (max-width:420px) {
  .Hemank-payment-methods {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:380px) {
  #UnCodeMy-Footer .bottom-navbar {
    width: calc(100% - 14px);
    padding: 6px 4px
  }

  #UnCodeMy-Footer .nav-item {
    font-size: var(--fs-caption)
  }

  #UnCodeMy-Footer .nav-item.center .center-btn {
    width: 48px;
    height: 48px
  }
}

body>section,
.aman-student-trained,
.aman-data-analytics,
.aman-course-overview,
#UnCodemy-Batch,
.bhawni_curriculum-section,
.cert-section,
.adarsh-tools-wrap,
.hm-faq,
.jt-section-style {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
  margin-bottom: 0;
}

body>section>.sahid-page-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

@media (max-width:1024px) {

  body>section,
  .aman-student-trained,
  .aman-data-analytics,
  .aman-course-overview,
  #UnCodemy-Batch,
  .bhawni_curriculum-section,
  .cert-section,
  .adarsh-tools-wrap,
  .hm-faq,
  .jt-section-style {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px
  }
}

@media (max-width:700px) {

  body>section,
  .aman-student-trained,
  .aman-data-analytics,
  .aman-course-overview,
  #UnCodemy-Batch,
  .bhawni_curriculum-section,
  .cert-section,
  .adarsh-tools-wrap,
  .hm-faq,
  .jt-section-style {
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 12px;
    padding-right: 12px
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  font-weight: var(--fw-regular);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  font-weight: var(--fw-bold)
}

h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: var(--fw-bold)
}

h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  letter-spacing: var(--ls-h3);
  font-weight: var(--fw-semibold)
}

h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  font-weight: var(--fw-semibold)
}

h5 {
  font-size: var(--fs-h5);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
  font-weight: var(--fw-semibold)
}

h6 {
  font-size: var(--fs-h6);
  line-height: var(--lh-h6);
  letter-spacing: var(--ls-h6);
  font-weight: var(--fw-semibold)
}

.text-lg,
.lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-body)
}

small,
.text-sm {
  font-size: var(--fs-sm);
  line-height: var(--lh-tight)
}

.caption,
figcaption {
  font-size: var(--fs-caption);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-caption)
}

label,
.label {
  font-size: var(--fs-label);
  line-height: var(--lh-tight);
  font-weight: var(--fw-medium)
}

button,
.btn,
input[type="submit"],
input[type="button"] {
  font-family: var(--font-primary);
  font-size: var(--fs-btn);
  line-height: var(--lh-tight);
  font-weight: var(--fw-semibold);
}

input,
select,
textarea {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--lh-tight);
}
/* =========================================================
   OVERLAY (dono form-parent aur pop-up-form-container isi ek
   overlay ko share karte hai — tumhare JS me bhi yahi id use ho rahi h)
   ========================================================= */
   #overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 40, 0.55);
    z-index: 999;
  }
  
  /* =========================================================
     POPUP CONTAINER
     ========================================================= */
  .pop-up-form-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100%;
    max-width: 440px;
    max-height: 92vh;
    overflow-y: auto;
  }
  
  .pop-up-form-container .form-section {
    position: relative;
    background: #f4f8ff;
    border-radius: 14px;
    padding: 34px 30px 28px;
    box-shadow: 0 20px 50px rgba(10, 15, 40, 0.25);
  }
  
  .pop-up-form-container .close-sign {
    color: #ffffff;
    background-color: #ff7a4a;
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.read-more-btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
  .pop-up-form-container .close-sign:hover {
    background: rgba(255, 84, 33, 0.12);
  }
  
  /* Fallback "x" — dikhega hamesha, FontAwesome load ho ya na ho.
     Agar FontAwesome icon load ho jaye to fallback ko hide kar do
     (neeche wali line uncomment kar dena tab). */
  .pop-up-form-container .close-sign-fallback {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }
  
  /* .pop-up-form-container .close-sign-fallback { display: none; } */
  
  .pop-up-form-container .form-top-head {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1b2559;
    margin-bottom: 22px;
  }
  
  /* =========================================================
     FORM FIELDS
     ========================================================= */
  .pop-up-form-container .form-thumb {
    display: flex;
    flex-direction: column;
  }
  
  .pop-up-form-container .form-thumb input[type="text"],
  .pop-up-form-container .form-thumb input[type="tel"],
  .pop-up-form-container .form-thumb input[type="email"],
  .pop-up-form-container .form-thumb input[type="date"],
  .pop-up-form-container .form-thumb input[type="time"],
  .pop-up-form-container .form-thumb select {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 16px;
    margin-bottom: 16px;
    border: none;
    border-radius: 8px;
    background: #e3e6ea;
    font-size: 15px;
    color: #1b2559;
    outline: none;
    font-family: inherit;
    appearance: none;
  }
  
  .pop-up-form-container .form-thumb input::placeholder {
    color: #6b7280;
  }
  
  .pop-up-form-container .form-thumb select {
    background: #ffffff;
    border: 1px solid #d7dbe2;
    font-weight: 600;
    color: #1b2559;
  }
  
  .pop-up-form-container .form-thumb input:focus,
  .pop-up-form-container .form-thumb select:focus {
    box-shadow: 0 0 0 2px #ff5421;
  }
  
  /* Date row */
  .pop-up-form-container .schedule-date.schedule {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
  }
  
  .pop-up-form-container .schedule-date label {
    order: -1;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
  }
  
  /* Time row: From + To side by side */
  .pop-up-form-container .schedule-time {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 6px;
  }
  
  .pop-up-form-container .schedule-time input[type="time"] {
    margin-bottom: 4px;
  }
  
  .pop-up-form-container .schedule-time label {
    grid-row: 2;
    font-size: 13px;
    color: #6b7280;
  }
  
  /* =========================================================
     SUBMIT BUTTON
     ========================================================= */
  .pop-up-form-container .submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #ff5421;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  
  .pop-up-form-container .submit-btn:hover {
    background: #e6491c;
    transform: translateY(-1px);
  }
  
  .pop-up-form-container .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  /* =========================================================
     TRIGGER BUTTON (example)
     ========================================================= */
  .glow-on-hover {
    padding: 12px 26px;
    background: #ff5421;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }
  
  /* =========================================================
     RESPONSIVE
     ========================================================= */
  @media (max-width: 480px) {
    .pop-up-form-container {
      max-width: 92vw;
    }
  
    .pop-up-form-container .form-section {
      padding: 26px 18px 22px;
    }
  
    .pop-up-form-container .form-top-head {
      font-size: 19px;
    }
  
    .pop-up-form-container .schedule-time {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
  
    .pop-up-form-container .form-thumb input,
    .pop-up-form-container .form-thumb select {
      padding: 11px 14px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 360px) {
    .pop-up-form-container .schedule-time {
      grid-template-columns: 1fr;
    }
  }