.title-container {
  text-align: center;
  margin: 60px 0px;
  width: 100%;
}
.title-container h1 {
  margin-bottom: 20px;
  font-weight: bold;
}
.title-container p {
  text-align: center;
}
.main-box-container {
  margin: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.px {
  padding-left: 10%;
  padding-right: 10%;
}

/* ======== LHS BOX =========== */

.lhs-box h3,
.rhs-box h3 {
  font-weight: bold;
}
.lhs-box ul li {
  list-style-type: none;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
.lhs-box ul li a img {
  width: 30px;
  height: 30px;
  padding-right: 10px;
}
.lhs-box ul li a {
  width: 100%;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  display: flex;
  padding: 10px 10px;
}
/* .lhs-box ul li:last-child {
  border: none;
} */
.lhs-box ul {
  margin-top: 40px;
  padding: 0px;
}
.lhs-box ul li:hover {
  background-color: #e0b546;
  font-weight: bold;
}
.active {
  background-color: #e0b546;
  font-weight: bold;
}
.lhs-box ul li.active img,
.lhs-box ul li:hover img {
  content: url("../images/jm-logo-4.png");
}
.lhs-box ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =========== RHS Box ============= */

#menuCard-container {
  margin-top: 40px;
  background-color: #f7f7f7;
  padding: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  row-gap: 20px;
  height: 70vh;
  overflow: auto;
  scrollbar-width: thin;
}
.menu-card {
  min-width: 200px;
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  height: 158px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.menu-card img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.menu-card p {
  margin: 0;
  font-size: small;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.menu-card p a {
  color: #000;
  font-weight: bold;
}
.menu-card h5 {
  font-weight: bold;
  font-size: 20px;
}
.menu-card:hover {
  background-color: #e0b546;
  cursor: pointer;
}
.menu-card:hover img {
  content: url("../images/jm-logo-2.png");
}
.rhs-title p a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rhs-title p img {
  padding-right: 5px;
}
.rhs-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  gap: 20px;
}
.rhs-title p {
  margin: 0;
}
.rhs-title h3 {
  flex: 1 !important;
}

/* =========== PDF CARD ============= */

#pdfContainer {
  margin-top: 40px;
  background-color: #f7f7f7;
  padding: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.pdfCardimg {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.pdf-card {
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  height: 158px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.pdf-card:hover {
  background-color: #e0b546;
}
.pdf-card:hover img.pdfCardimg {
  content: url("../images/jm-logo-2.png");
}
.pdf-card h5 {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}
.pdf-card p {
  font-size: small;
}
.pdf-card .download-icon {
  color: #000;
  font-weight: 600;
  margin: 0;
  font-size: small;
  position: absolute;
  bottom: 10px;
  left: 20px;
  border-bottom: 1px solid black;
  padding-bottom: 3px;
}
.pdf-card .download-icon a {
  color: #000;
  text-decoration: none;
}

#pdfPage {
  position: relative;
}
.pdfTitle {
  display: flex;
  gap: 30px;
  align-items: center;
}
.dropdownBox {
  cursor: pointer;
  border: 1px solid #ddd;
  padding: 12px;
  width: max-content;
  background: white;
  font-weight: bold;
}
.dropdown-menu-inv {
  border: 1px solid #ddd;
  width: max-content;
  background: white;
  display: none;
  position: absolute;
  top: 50px;
  left: 0px;
  z-index: 1;
}
.dropdown-menu-inv.open {
  display: block;
  font-weight: bold;
}
.dropdown-menu-inv div {
  padding: 10px;
  cursor: pointer;
}
.dropdown-menu-inv div:hover {
  background: #f5f5f5;
}

/* =========== PAGINATION    ============= */

.pagination {
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination button {
  margin: 5px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.pagination button.disabled {
  cursor: not-allowed;
}
.pagination button.active {
  background: #e0b546;
}
.page-num {
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* ================== disabled ====================  */

.disabled {
  /* opacity: 0.5 !important; */
  cursor: default !important;
  /* pointer-events: none; */
}

/* ================ accordian ============ */

:root {
  --page-bg: #ffffff;
  --card-bg: #ffffff;
  --text-main: #0d0d0d;
  --border-color: #e5e5e5;
  --radius: 16px;
  --padding: 24px;
  --transition: 0.22s ease-out;
}

/* Page base */

/* 
.accordian-section {
  padding: 60px 16px 80px;
} */

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

/* Title */
.accordian-title {
  margin: 0 0 32px;
  text-align: start;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

/* List layout */
.accordian-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.accordian-item {
  background: var(--card-bg);
  /* border-radius: var(--radius); */
  border: 1px solid transparent;
  transition: border-color var(--transition), background-color var(--transition);
}

/* Optional slight border when open for clarity */
.accordian-item.is-open {
  border-color: var(--border-color);
}

/* Header (clickable area) */
.accordian-header {
  width: 100%;
  padding: var(--padding);
  border: 1px solid #ddd;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.accordian-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.accordian-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.accordian-question {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
}

/* Icon base */
.accordian-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Horizontal line */
.accordian-icon::before,
.accordian-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  /* border-radius: 999px; */
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Horizontal line (before) */
.accordian-icon::before {
  transform: translate(-50%, -50%);
}

/* Vertical line (after) */
.accordian-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* WHEN OPEN → X ICON */
/* .accordian-item.is-open .accordian-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
} */

/* .accordian-item.is-open .accordian-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
} */

/* WHEN OPEN → MINUS ICON */
.accordian-item.is-open .accordian-icon::after {
  transform: translate(-50%, -50%);
}

.accordian-item.is-open .accordian-icon::before {
  /* transform: translate(-50%, -50%);  */
  opacity: 0;
}

/* Body */
.accordian-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding-bottom var(--transition),
    padding-top var(--transition);
  will-change: max-height;
  color: var(--text-main);
}

.accordian-item.is-open .accordian-body {
  padding-top: 0;
  padding-bottom: var(--padding);
}

/* Text inside body */
.accordian-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-main);
  max-width: 720px;
}

.accordian-insidebox {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
}
.acc-col img {
  width: 20px;
  height: auto;
}
.acc-col .record-icon {
  width: 18px;
}
.acc-col ul li {
  list-style-type: none;
}
.acc-col ul li audio{
  width: 300px;
}
.jain-audio{
  margin: 0;
  padding: 0;
}
/* .acc-col audio{
  width: 100%;
} */
.acc-col {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.acc-col h4 {
  font-size: 18px;
  margin-bottom: 1rem !important;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: start;
}
.acc-col a {
  font-size: 16px !important;
  color: #000;
}

/* ===================== address page  ================================= */

.address_details {
  display: flex !important;
  flex-direction: column;
  align-items: start;
}
.address_details h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.address_card {
  background-color: #ffffff;
  padding: 15px;
  width: 100%;
}

/* ====================================== BRIEF PROFILE START ========================================= */
.coreteamsec.brief_profile {
  padding: 60px 0 !important;
}
.coreteamsec.brief_profile {
  overflow-y: visible !important;
}
.brief_profile .Founderbox .captext h3 {
  font-size: 20px !important;
  /* line-height: 0px !important; */
}
.brief_profile .Founderbox .captext p {
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0 0;
}
.brief_profile .coreteamrow .capimg {
  min-width: 200px;
}
.brief_profile .BoardManBox .captext h3 {
  font-size: 20px;
  line-height: 22px;
}
.brief_profile.coreteamsec h2 {
  margin-left: 0px;
  z-index: 0;
}
.brief_profile .twoitems .BoardManBox {
  width: 34% !important;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: -webkit-fill-available;
  /* margin-right: 10px;   */
}
.brief_profile .coreteamrow .BoardManItems .capimg {
  width: 70%;
}
.brief_profile .Founderbox .captext::before {
  left: 34px;
}
.brief_profile .Founderbox .captext {
  padding: 0 0 0 70px;
}
.brief_profile.coreteamsec .coreteamrow {
  margin-bottom: 40px;
}
.brief_profile .coreteamrow-founder {
  max-width: 80%;
  margin: auto;
}
/* ====================================== BRIEF PROFILE END ========================================= */

/* ====================================== TABLE START =============================================== */

.table-container {
  max-width: 1200px;
  margin: auto;
}
.table-container h2 {
  font-size: 20px;
}
.section-title {
  text-align: center;
  font-weight: 700;
  margin: 40px 0 20px;
  letter-spacing: 1px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.responsive-table thead {
  background-color: #e6b94a;
}

.responsive-table th,
.responsive-table td {
  border: 1px solid #ccc;
  padding: 12px 14px;
  text-align: left;
}

.responsive-table th {
  font-weight: 700;
}

.responsive-table tbody tr:nth-child(odd) {
  background-color: #f2f2f2;
}

/* ================== disabled  start ====================  */

.disabled-accordian {
  pointer-events: none !important;
}
.disabled-accordian .accordian-icon {
  display: none !important;
}
.hidden {
  display: none;
}

.address_details p a {
  color: #2563eb !important;
}
/* ================== disabled end ====================  */

/* 🔹 Mobile Responsive */
@media (max-width: 768px) {
  .responsive-table thead {
    display: none;
  }

  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
  }

  .responsive-table td {
    border: none;
    padding: 8px 0;
    position: relative;
    padding-left: 50%;
  }

  .responsive-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    font-weight: bold;
    color: #333;
  }
}

@media (max-width: 1400px) {
  .brief_profile.coreteamrow-founder {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .accordian-insidebox {
    flex-direction: column;
    gap: 0px;
  }
  .brief_profile .coreteamrow .BoardManItems .capimg {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .brief_profile .Founderbox {
    flex-direction: column;
  }
  .brief_profile .Founderbox .captext {
    padding: 75px 0 0;
    text-align: center;
  }
  .brief_profile .Founderbox .captext::before {
    width: 0px;
  }
}

/* Responsive */
@media (max-width: 640px) {
  /* .accordian-section {
    padding: 40px 12px 56px;
  } */

  .accordian-header {
    padding: 20px;
    font-size: 15px;
  }

  .accordian-body {
    padding: 0 20px;
  }

  .accordian-item.is-open .accordian-body {
    padding-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .accordian-insidebox {
    flex-direction: column;
  }

}


@media (max-width: 380px) {
  .acc-col ul li audio{
  width: 250px;
}
.accordian-icon {
    width: 16px;
    height: 16px;
}
  .rhs-title h3 {
    font-size: 1.3rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .acc-row {
    flex-direction: column;
  }
  #menuCard-container {
    padding: 10px;
  }
}

@media screen and (max-width: 1250px) {
  #menuCard-container {
    grid-template-columns: 1fr;
  }
  #pdfContainer {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 1100px) {
  .lhs-box ul li a {
    font-size: 16px;
  }
  .px {
    padding-left: 2%;
    padding-right: 2%;
  }
  .menu-card h5 {
    font-weight: bold;
    font-size: 16px;
  }
  /* .menu-card {width: 45%;} */
  .menu-card img {
    width: 50px;
    height: auto;
  }
}


@media screen and (max-width: 800px) {
  .main-box-container {
    grid-template-columns: 1fr;
  }
  #menuCard-container {
    grid-template-columns: 1fr;
  }
  #pdfContainer {
    grid-template-columns: 1fr;
  }
  .pfdTitle {
    flex-direction: column;
  }
  .pdfTitle {
    display: block;
    text-align: center;
    position: sticky;
    top: 60px;
    z-index: 1;
    background-color: white;
    padding: 30px 30px;
  }
  .dropdownBox {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
  .dropdown-menu-inv {
    width: 100%;
  }
  .lhs-box ul {
    flex-direction: row;
    width: 600px;
    overflow: auto;
    white-space: nowrap;
    margin: auto;
  }
}
@media screen and (max-width: 670px) {
  .lhs-box ul {
    width: 400px;
  }
}
@media screen and (max-width: 570px) {
  /* .rhs-title{  flex-direction: column; align-items: start;} */
  .px {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media screen and (max-width: 500px) {
  .lhs-box ul {
    width: 300px;
  }
}

/* ===================== MOBILE MENU   ============================ */

.mobile-lhs-box {
  display: none;
}
.lhs-box {
  display: block;
}
@media (max-width: 800px) {
  #menuCard-container {
    margin-top: 0px;
  }
  .mobile-lhs-box h3 {
    font-weight: bold;
    padding-left: 8%;
  }
  .mobile-lhs-box {
    display: block;
    position: sticky;
    top: 76px;
    background: #fff;
    z-index: 2;
  }
  .mobile-lhs-box ul {
    background: #f7f7f7;
    padding: 15px 0px;
  }
  .mobile-lhs-box ul li img {
    display: none;
  }
  #mobile-inv_menu li.active a {
    background: #d8b35a !important;
    font-weight: bold;
  }
  #mobile-inv_menu .divider {
    width: 1px;
    height: 20px;
    background: #000000;
    flex: 0 0 auto;
  }
  .lhs-box {
    display: none;
  }
  #mobile-inv_menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    align-items: center;
  }
  #mobile-inv_menu li {
    flex: 0 0 auto;
    list-style-type: none;
    padding: 10px 14px;
  }
  #mobile-inv_menu a {
    padding: 10px 14px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
  }
  #mobile-inv_menu li.active a {
    background: #d8b35a;
    font-weight: 600;
  }
  .rhs-title {
    position: sticky;
    top: 150px;
    background-color: white;
    padding: 10px 0px;
    z-index: 1;
  }
  .title-container h1 {
    font-size: 2rem;
  }
  .rhs-title h3 {
    font-size: 1.3rem;
  }
  .main-box-container {
    margin: 20px;
  }
  .accordian-question {
    font-size: 18px;
}


  /* 
  #mobile-inv_menu li {position: relative;padding-right: 14px;}
  #mobile-inv_menu li:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 16px; background: #000000;} 
  */
}
