.video-viewport {
  /* width: 100vw; */
  height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  /* letterbox color */
  overflow: hidden;
}

.video-viewport video {
  /* keep original aspect ratio and fully visible */
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  /* <-- preserves aspect, shows full video */
  display: block;
}

/* optional: make controls clearer on mobile */

video::-internal-media-controls {
  transform: scale(1);
}

.tab-btn {
  display: block;
  width: 100%;
  padding: 10px 5px;
  text-align: left;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
}

.tab-pane {
  display: none;
}

.dhwani {
  font-size: 15px !important;
  color: #f89314;
}

.tab-pane.active {
  display: block;
}

/** Documents Required Section */
/* ===============================
   Documents Required – Styling
   Scoped ONLY to documents panel
   =============================== */

/* Space inside the white box */
.documents-panel .content {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Space above & below each list container */
.documents-panel .details-wrapper {
  padding: 18px 22px;
  margin-top: 12px;
  margin-bottom: 24px;
}

/* Remove default list spacing */
.documents-panel .rbt-list-style-1 {
  margin: 0;
  padding: 0;
}

/* List items */
.documents-panel .rbt-list-style-1 li {
  list-style: none;
  padding: 12px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #212529;
  border-bottom: 1px solid #e5e7eb;
}

/* Remove line from last item */
.documents-panel .rbt-list-style-1 li:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

/* Extra spacing for first item */
.documents-panel .rbt-list-style-1 li:first-child {
  padding-top: 4px;
}

/* Emphasis inside items */
.documents-panel .rbt-list-style-1 li span,
.documents-panel .rbt-list-style-1 li b {
  color: #000;
}

/* Notes text (italic) */
.documents-panel .rbt-list-style-1 li i {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.fee-summary-box {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed #ddd;
}

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

.fee-row .label {
  font-weight: 500;
  color: #333;
  max-width: 65%;
}

.fee-row .value {
  font-weight: 600;
  color: #111;
}

.fee-row.highlight .value {
  color: #0d6efd;
}

.fee-row.total {
  background: #fff3cd;
  padding: 14px;
  margin-top: 10px;
  border-radius: 6px;
}

.fee-installment-box {
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  padding: 16px;
  border-radius: 6px;
}

.fee-installment-box ul {
  margin: 0;
  padding-left: 18px;
}

.fee-note-box {
  background: #fff;
  border: 1px solid #dee2e6;
  padding: 16px;
  border-radius: 6px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .fee-row {
    flex-direction: column;
    gap: 6px;
  }

  .fee-row .label {
    max-width: 100%;
  }
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fee-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px;
  transition: 0.3s ease;
  height: 100%;
}

.fee-card h3 {
  margin: 10px 0 6px;
  font-weight: 700;
  color: #111;
}

.fee-card p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.fee-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
}

.fee-card.scholarship {
  border-left: 4px solid #0d6efd;
}

.fee-card.payable {
  background: #fff3cd;
  border-color: #ffe69c;
}

.fee-card.deposit {
  background: #eef6ff;
  border-color: #cfe2ff;
}

.fee-info-panel p {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 18px;
  font-size: 15px;
}

.fee-info-panel h6 {
  margin-bottom: 12px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .fee-grid {
    grid-template-columns: 1fr;
  }
}

/* Layout 3 */
.fee-section {
  background: #ffffff;
}

.section-title {
  margin-bottom: 20px;
  font-weight: 600;
}

.fee-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}

.course-name {
  font-weight: 600;
  margin-bottom: 14px;
}

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

.fee-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.fee-list li:last-child {
  border-bottom: none;
}

.fee-list span {
  display: block;
  font-size: 15px;
  color: #2c2c2c;
}

.fee-list strong {
  font-size: 17px;
  color: #111;
}

.fee-list small {
  display: block;
  font-size: 13px;
  color: #777;
}

.fee-list li.highlight strong {
  color: #0d6efd;
}

.fee-note {
  margin-top: 14px;
  font-size: 12px;
  background: #f8f9fa;
  padding: 10px;
  border-left: 3px solid #0d6efd;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .fee-card {
    padding: 16px;
  }
}

.advance-tab-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

/* Scrollable tabs */
.advance-tab-button {
  overflow: hidden;
  flex: 1;
}

.advance-tab-button .nav-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.advance-tab-button .nav-tabs::-webkit-scrollbar {
  display: none;
}

.advance-tab-button .nav-tabs {
  scrollbar-width: none;
}

/* Scroll buttons */
.tab-scroll-btn {
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #111827;
  z-index: 2;
}

.tab-scroll-btn:hover {
  background: #f3f4f6;
}

.advance-tab-button li a {
  cursor: pointer;
}

.seat-matrix-section {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.seat-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 14px;
  max-height: 100%;
}

.seat-header {
  /* display: flex; */
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.seat-header .sr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.seat-header h6 {
  margin: 10px 0px;
  font-weight: 600;
  color: #111827;
}

.seat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.seat-stats div {
  background: #f9fafb;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.seat-stats span {
  font-size: 12px;
  color: #6b7280;
}

.seat-stats strong {
  display: block;
  font-size: 18px;
  color: #111827;
}

.seat-stats .total strong {
  color: #16a34a;
}

.svp-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  /* margin-top: 30px; */
}

/* Step Card */

.svp-step {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Step Badge */

.svp-step-left {
  background: linear-gradient(135deg, #213e76, #0c112f);
  color: #ffffff;
  min-width: 120px;
  padding: 18px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svp-step-left span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.svp-step-left strong {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

/* Content */

.svp-step-content {
  padding: 20px 26px;
  flex: 1;
}

.svp-step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 6px;
}

.svp-step-content p,
.svp-step-content li {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

.svp-step-content ul {
  padding-left: 18px;
  margin-top: 6px;
}

.svp-step-content a {
  color: #f1ae26;
  font-weight: 600;
  text-decoration: none;
}

.svp-step-content li::marker {
  color: #f89314;
}

/* =============================== Responsive ================================ */

@media (max-width: 768px) {
  .svp-step {
    flex-direction: column;
    border-radius: 16px;
  }

  .svp-step-left {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    min-width: auto;
    padding: 12px;
  }

  .svp-step-left strong {
    font-size: 22px;
  }

  .svp-step-content {
    padding: 16px 18px;
  }
}

.admission-image img {
  object-fit: cover;
}

.admission-alert {
  border-left: 4px solid #f0ad4e;
}

.admission-steps > li {
  margin-bottom: 10px;
}

.admission-steps ul {
  margin-top: 6px;
  padding-left: 18px;
}

.admission-steps ul li {
  margin-bottom: 6px;
}

.bds-admission li i {
  background-color: #f89314;
}

@media (min-width: 992px) {
  .sticky-wrapper {
    position: sticky;
    top: 100px;
    /* header offset */
  }
}

/* Safety */
.admission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bds-admission {
  background: #ffffff;
}

/* Header */
.admission-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d6efd;
  font-weight: 600;
}

.admission-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 10px 0 12px;
}

.admission-subtitle {
  color: #6c757d;
  max-width: 520px;
}

/* Accent column */
.admission-accent {
  position: sticky;
  top: 100px;
  border-radius: 24px;
  overflow: hidden;
}

.admission-accent img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
}

/* =====================================
   BDS ADMISSION – FINAL STABLE CSS
   ===================================== */

/* .bds-admission {
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
            background: #ffffff;
        } */

/* -----------------
   HEADER
------------------ */

.bds-admission h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #111827;
}

.admission-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 520px;
}

/* -----------------
   IMAGE COLUMN
------------------ */

.admission-accent {
  position: sticky;
  top: 100px;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.admission-accent img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* -----------------
   TIMELINE LAYOUT
------------------ */

.timeline {
  position: relative;
  max-width: 760px;
  /* controls line length */
  padding-left: 44px;
  /* space for line + dots */
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: white;
}

/* Timeline items */
.timeline-item {
  position: relative;
  margin-bottom: 20px;
  border-bottom: 1px solid #c4c4c487;
}

.timeline-item:last-child {
  border-bottom: none;
}

/* Blue dots */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 9px;
  width: 12px;
  height: 12px;
  background: #f7a600;
  border-radius: 50%;
}

/* -----------------
   TEXT
------------------ */

.timeline p {
  font-size: 16px;
  line-height: 1.75;
  color: #000;
  margin-bottom: 20px;
}

/* -----------------
   LISTS
------------------ */

.timeline ol {
  padding-left: 22px;
  margin-top: 10px;
}

.timeline ol > li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #111827;
}

/* Nested list */
.timeline ol ol {
  margin-top: 8px;
}

.timeline ol ol > li {
  font-size: 15px;
  color: #000;
  margin-bottom: 6px;
}

/* -----------------
   LINKS
------------------ */

.timeline a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.timeline a:hover {
  text-decoration: underline;
}

/* -----------------
   RESPONSIVE
------------------ */

@media (max-width: 991px) {
  .admission-accent {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .timeline {
    max-width: 100%;
    padding-left: 0;
  }

  .timeline::before,
  .timeline-item::before {
    display: none;
  }

  .bds-admission h1 {
    font-size: 30px;
  }

  .timeline p,
  .timeline ol > li {
    font-size: 15px;
  }
}

.refund-policy {
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 20px;
  /* padding: 8px; */
  /* box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08); */
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
}

/* Header */
.refund-header {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  background: #f4f8ff;
  border-radius: 14px 14px 0 0;
  border-bottom: 1px solid #e4ecfb;
}

.refund-header > div {
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #093354;
}

/* Rows */
.refund-row {
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
  transition:
    background 0.25s ease,
    transform 0.15s ease;
}

.refund-row > div {
  padding: 18px 22px;
  font-size: 16px;
  color: #374151;
  line-height: 1.55;
}

/* Course number */
.refund-row > div:first-child {
  font-weight: 600;
  color: #1f2937;
}

/* Refund percentage */
.refund-row strong {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

/* Hover */
.refund-row:hover {
  background: #f8fbff;
  transform: translateY(-1px);
}

/* Highlight best refund */
.refund-row:first-of-type {
  background: linear-gradient(90deg, #eff6ff, #ffffff);
}

.refund-row:first-of-type strong {
  color: #2563eb;
}

/* Last row */
.refund-row:last-child {
  border-bottom: none;
  border-radius: 0 0 14px 14px;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .refund-header {
    display: none;
  }

  .refund-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  }

  .refund-row > div {
    padding: 0;
    font-size: 14px;
  }

  .refund-row > div:nth-child(1)::before {
    content: "Sr. No.: ";
    font-weight: 600;
    color: #093354;
  }

  .refund-row > div:nth-child(2)::before {
    content: "Percentage of Refund: ";
    font-weight: 600;
    color: #093354;
  }

  .refund-row > div:nth-child(3)::before {
    content: "Point of time: ";
    font-weight: 600;
    color: #093354;
  }
}

.vertical-inquire-btn {
  position: fixed;
  right: 14px;
  top: 24%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: #f89214;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px 10px 0 0;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.4px;
  /* box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); */
  z-index: 999;
  transition: all 0.25s ease;
}

/* Hover effect */
.vertical-inquire-btn:hover {
  background: #f89314de;
  color: #fff;
  /* box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55); */
}

/* Hover effect */
.vertical-inquire-btn:focus {
  background: #f89314de;
  color: #fff;
  /* box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55); */
}

.vertical-inquire-btn2 {
  position: fixed;
  right: 14px;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  background: #b22222;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px 10px 0 0;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.4px;
  /* box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); */
  z-index: 999;
  transition: all 0.25s ease;
}

.vertical-inquire-btn2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(178, 34, 34, 0.6);
  z-index: -1;
  animation: pulse 1.8s infinite;
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.3);
    opacity: 0;
  }

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

/* Hover effect */
.vertical-inquire-btn2:hover {
  background: #b22222;
  color: #fff;
  /* box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55); */
}

/* Hover effect */
.vertical-inquire-btn2:focus {
  background: #b22222;
  color: #fff;
  /* box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55); */
}

.title-ca-1 {
  position: relative;
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  display: inline-block;
  z-index: 1;
  margin-bottom: 22px;
}

.title-ca-1::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background: #bfdbfe;
  z-index: -1;
  border-radius: 6px;
}

.fs-17 {
  font-size: 17px;
}

/* @media (max-width: 575px) {
    .fee-info-panel p {
        text-align: start;
    }
} */

.program-row {
  max-height: 300px;
  overflow-y: scroll;
}

/* .advance-tab-button{
    position: sticky;
    top: 100px;
} */

ol li::marker {
  font-weight: bold;
}

.inquiry-bold-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.inquiry-bold .text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.inquiry-bold .text p {
  /* margin: 4px 0 0; */
  font-size: 18px;
  font-weight: 200;
  color: #000;
  opacity: 0.95;
}

.inquiry-bold-btn {
  background: #1265a8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 🔥 hover */
.inquiry-bold-btn:hover {
  transform: scale(1.05);
  background: #1265a8;
  color: white;
}

/* 🔥 subtle pulse animation */
.inquiry-bold-btn {
  animation: pulse1 2s infinite;
}

@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(18, 101, 168, 0.35);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(18, 101, 168, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(18, 101, 168, 0);
  }
}

.title-cta {
  font-size: 33px;
}

.inquiry-bold {
  margin-top: 20px;
}

.inquiry-bold-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.inquiry-bold .text p {
  margin: 0;
  font-weight: 500;
}

.inquiry-bold-btn {
  white-space: nowrap;
}

@media (min-width: 0px) and (max-width: 475px) {
  .inquiry-bold-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .inquiry-bold .text p {
    text-align: center;
  }
}

.inquiry-bold-btn {
  color: #fff !important;
}

.inquiry-bold-btn:hover,
.inquiry-bold-btn:focus,
.inquiry-bold-btn:active,
.inquiry-bold-btn:visited {
  color: #fff !important;
}
.inquiry-bold {
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
}

/* Top divider line */
.inquiry-bold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #1e6aa8, transparent);
}
.inquiry-bold::before {
  box-shadow: 0 0 0px rgba(30, 106, 168, 0.3);
}


