/* =========================================================
   ORDOCLIN CASE STUDY BLOG STYLE
========================================================= */

.oc-case-study-page {
  --oc-primary: #6bbcc1;
  --oc-dark: #58595b;
  --oc-text: #4f5253;
  --oc-muted: #858888;
  --oc-light: #f5f9f8;

  width: 100%;
  background: #ffffff;
}

/* =========================================================
   TABS
========================================================= */

.oc-cs-tabs {
    /* max-width: 1180px; */
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
    background: #eaf7f7;
}
.oc-cs-tab {
  border: 0;
  background: transparent;
  padding: 12px 25px;
  border-radius: 30px;
  /* color: #fff; */
  color: #008c93;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

/* .oc-cs-tab.active {
  color: #ffffff;
  border: none;
  border: 1px solid #fff;
} */
.oc-cs-tab.active {
    color: #008c93;
    border: none;
    border: 1px solid #008c93;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

  .oc-cs-layout {
            width: min(1180px, calc(100% - 40px));

            margin: 45px auto 100px;

            display: grid;

            grid-template-columns: 280px minmax(0, 1fr);

            gap: 55px;

            align-items: start;
        }

        .oc-cs-sidebar {
            width: 280px !important;
            flex-shrink: 0 !important;
            position: sticky !important;
            top: 20px !important;
        }

        .oc-cs-content {
            flex: 1 !important;
            min-width: 0 !important;
        }

        /* SCROLL OFFSET CORRECTION */
        .oc-cs-section {
            scroll-margin-top: 100px;
            /* Prevents target section from being overshot */
        }

        /* VISIBILITY TOGGLES */
        .oc-cs-toc-case {
            display: none;
        }

        .oc-cs-toc-case.active {
            display: block;
        }

        .oc-cs-case {
            display: none;
        }

        .oc-cs-case.active {
            display: block;
        }
        

/* =========================================================
   LEFT SIDEBAR
========================================================= */



.oc-cs-toc {
  padding: 25px 0;
}

.oc-cs-toc a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  margin-bottom: 5px;
  border-radius: 12px;
  color: var(--oc-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.oc-cs-toc a span {
  color: #008b91;
  font-size: 15px;
}

.oc-cs-toc a:hover {
  color: #00898f;
}

.oc-cs-toc a.active {
  color: #00898f;
  background: #eef8f7;
  border-left: 4px solid #008c92;
}

/* .oc-cs-toc a.active::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12px;
    bottom: 12px;

    width: 3px;

    border-radius: 5px;

    background: var(--oc-primary);
} */

/* =========================================================
   ARTICLE CONTENT
========================================================= */


.oc-cs-section h3 {
  margin: 0 0 25px;
  color: #143e6f;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -0.7px;
  font-weight: 600;
}

/* =========================================================
   META
========================================================= */

.oc-cs-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 28px;

  border-bottom: 1px solid #e6e9e9;

  margin-bottom: 55px;
}

.oc-cs-date,
.oc-cs-reading {
  display: flex;
  align-items: center;

  gap: 13px;

  color: var(--oc-dark);

  font-size: 15px;
}

.oc-cs-date i,
.oc-cs-reading i {
  color: #58595b;
  font-size: 20px;
}

/* =========================================================
   ARTICLE SECTION
========================================================= */

.oc-cs-section:last-child {
  border-bottom: 0;
}

/* =========================================================
   LABEL
========================================================= */

.oc-cs-label {
  margin-bottom: 18px;

  color: var(--oc-primary);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* =========================================================
   HEADINGS
========================================================= */

.oc-cs-section h2 {
  color: #222d31;
}

.oc-cs-section h4 {
  margin: 40px 0 13px;

  color: #293235;

  font-size: 20px;

  font-weight: 600;
}

/* =========================================================
   PARAGRAPHS
========================================================= */

.oc-cs-section p {
  max-width: 850px;
  margin: 0 0 10px;
  /* color: var(--oc-text); */
  font-size: 15px;
  line-height: 1.5;
}

.oc-cs-lead {
  max-width: 780px !important;

  color: #666a6b !important;

  font-size: 17px !important;

  line-height: 1.8 !important;
}

/* =========================================================
   INFO
========================================================= */

.oc-cs-info {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 35px;
  margin: 30px 0;
}

.oc-cs-info span {
  display: block;

  margin-bottom: 10px;

  color: var(--oc-primary);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.oc-cs-info p {
  margin: 0;
  font-size: 15px;
  line-height: 2.6;
  /* color: var(--oc-dark); */
}

.oc-cs-info strong {
  color: #008a90;
  padding: 10px;
}

/* =========================================================
   HIGHLIGHT
========================================================= */

.oc-cs-highlight {
  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 35px;

  padding: 25px;

  border-radius: 15px;

  background: #f3f9f8;
}

.oc-cs-highlight-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--oc-primary);

  color: #ffffff;
}

.oc-cs-highlight strong {
  display: block;

  margin-bottom: 5px;

  color: var(--oc-dark);

  font-size: 15px;
}

.oc-cs-highlight p {
  margin: 0;

  font-size: 12px;
}

/* =========================================================
   RESULTS
========================================================= */

.oc-cs-results {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;

  margin-top: 40px;
}

.oc-cs-result {
  padding: 30px 0;

  background: #f6f9f8;

  padding-left: 28px;

  border-radius: 15px;
}

.oc-cs-result span {
  display: block;

  color: #8c9090;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

.oc-cs-result strong {
  display: block;

  margin: 10px 0 3px;

  color: var(--oc-primary);

  font-size: 30px;

  font-weight: 600;
}

.oc-cs-result p {
  margin: 0;

  font-size: 12px;

  color: #777b7b;
}

.oc-cs-case {
  display: none;
}

.oc-cs-case.active {
  display: block;
}

/*list*/

.capability-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(107 188 193 / 18%);
  color: var(--teal);
  font-size: 11px;
  margin-top: 1px;
  transition: all 0.3s ease;
}
.safety-capabilities li:hover .capability-check {
  background: var(--teal);
  color: #fff;
  transform: scale(1.08);
}
.safety-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: #58595b;
}
.safety-capabilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*table*/
.oc-case-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 35px 0;
}

.oc-case-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: inherit;
}

.oc-case-table thead th {
  padding: 16px 22px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: #58595b;
}

.oc-case-table thead th:first-child {
  border-radius: 10px 0 0 10px;
}

.oc-case-table thead th:last-child {
  border-radius: 0 10px 10px 0;
}

.oc-case-table tbody td {
  padding: 20px 22px;
  background: #f7f9fa;
  color: #58595b;
  font-size: 15px;
  line-height: 1.6;
  vertical-align: middle;
}

.oc-case-table tbody td:first-child {
  font-weight: 700;
  color: #6bbcc1;
  border-radius: 10px 0 0 10px;
}

.oc-case-table tbody td:last-child {
  border-radius: 0 10px 10px 0;
  font-weight: 500;
}

/* Hover effect */
.oc-case-table tbody tr {
  transition: transform 0.3s ease;
}

.oc-case-table tbody tr:hover {
  transform: translateY(-2px);
}

.oc-case-table tbody tr:hover td {
  background: #eef7f8;
}

/* Tablet */
@media (max-width: 991px) {
  .oc-case-table thead th,
  .oc-case-table tbody td {
    padding: 16px;
  }

  .oc-case-table tbody td {
    font-size: 14px;
  }

  .heading.case-study{
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .oc-case-table {
    min-width: 700px;
  }

  .oc-case-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* for Madhavi mam design do this */

/* .oc-cs-toc {
   display:none
}
.oc-cs-tabs {
    max-width: 1180px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
} */

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .oc-cs-layout {
    grid-template-columns: 210px minmax(0, 1fr);

    gap: 35px;
  }

  .oc-cs-toc a {
    padding: 14px;

    font-size: 13px;
  }

  .oc-cs-info {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 15px 0 30px;
  }

  .about-circle{
    display: none;
  }

}

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

@media (max-width: 767px) {
  .oc-cs-layout {

    width: calc(100% - 30px);

    margin-top: 20px;
  }

  .oc-cs-sidebar {
    position: relative;

    top: auto;

    margin-bottom: 30px;
  }

  /* .oc-cs-toc {
    display: flex;

    overflow-x: auto;

    gap: 5px;

    padding: 5px 0;
  } */

  .oc-cs-toc a {
    flex: 0 0 auto;

    margin: 0;

    padding: 10px 15px;

    white-space: nowrap;
  }

  .oc-cs-toc a.active::before {
    display: none;
  }

  .oc-cs-meta {
    margin-bottom: 40px;
  }

  .oc-cs-section h1 {
    font-size: 38px;

    letter-spacing: -1px;
  }

  .oc-cs-section h2 {
    font-size: 28px;
  }

  .oc-cs-section p {
    font-size: 14px;

    line-height: 1.8;
  }

  .oc-cs-results {
    grid-template-columns: 1fr;
  }
  .oc-cs-section h3 {
    margin: 0 0 12px;
    font-size: 23px;
}
.safety-capabilities li {
    font-size: 14px; 
}
  .oc-cs-info p {
    font-size: 14px;
    line-height: 2.0;
    /* color: var(--oc-dark); */
}
.oc-cs-section {
    margin-bottom: 25px;
}
.oc-cs-content {
    min-width: 0;
    margin: 0 35px;
}
}

@media (max-width: 576px){
.oc-cs-section h1 {
    font-size: 32px;
  }
   .oc-cs-info p {
    font-size: 13px;
}
}

@media (max-width: 480px) {
  .oc-cs-tabs {
    padding: 20px 10px;
  }

  .oc-cs-tab {
    padding: 10px 16px;

    font-size: 11px;
  }

  .oc-cs-meta {
    align-items: flex-start;

    gap: 15px;

    flex-direction: column;
  }
}

@media (max-width: 400px){
  .oc-cs-content {
    margin: 0 15px;
}
}