﻿/* ===== Layout ===== */
.useful-section {
  background: #e9efff;
}
strong {
    font-weight: bolder;
    color: #192f60;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.back-btn i {
    font-size: 1.3rem;   /* matches pill height */
    line-height: 1;
}
.page-layout {
  display: flex;
  gap: 24px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
/* ===== Left Navigation ===== */
/* LEFT NAV BASE */
.left-nav {
    width: 280px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    padding: 16px;
}

/* MAIN NAV LINKS */
.left-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e3a8a !important;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* ICON COLOR */
.left-nav .nav-link i {
    font-size: 18px;
    color: #1e3a8a;
}

/* HOVER + ACTIVE */
.left-nav .nav-link:hover,
.left-nav .nav-link.active {
    background-color: #1e3a8a;
    color: #ffffff !important;
    margin-top: 2px;
    margin-bottom: 2px;
}

.left-nav .nav-link:hover i,
.left-nav .nav-link.active i {
    color: #ffffff;
}

/* SUB NAV */
.sub-nav {
    padding-left: 28px;
    margin: 2px;
}

.sub-nav .nav-link {
    font-size: 14px;
    padding: 6px 0;
    color: #1e3a8a !important;
}

/* SUB NAV HOVER */
.sub-nav .nav-link:hover {
    color: #1e3a8a;
    font-weight: 600;
}

/* SUPPORT BUTTON */
.left-nav .btn-dark {
    background-color: #192f60;
    color: #ffffff;
    border: none;
}

.left-nav .btn-dark:hover {
    background-color: #1e3a8a;
    color: #ffffff;
    margin: 2px;
}
.left-nav a,
.left-nav a:hover,
.left-nav a:focus,
.left-nav a:active {
    text-decoration: none !important;
    cursor: pointer;
}

/* ===== Right Content ===== */
.right-content {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
  min-width: 0;
  overflow-x: auto;
}

/* ===== Tab Content ===== */
.tab-content {
  display: none;
}

.tab-content.show {
  display: block;
}

/* Typography */
.right-content h2 {
  color: #1e3a8a;
  margin-bottom: 16px;
}

.right-content p {
  line-height: 1.7;
  margin-bottom: 14px;
}

.section-heading {
  color: #1e3a8a;
  /* theme blue */
  font-weight: 600;
}

.page-main-heading {
  text-align: center;
  color: #1e3a8a;
  /* theme blue */
  font-weight: 700;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  /* font-size: 13px; */
}

th,
td {
  padding: 8px;
}

th {
  background-color: #192f60;
  color: white;
}

/* td {
    text-align: left;
} */

/* td:first-child {
        text-align: center;
    } */

tr:nth-child(even) {
  background-color: #f3f6fd;
}

/* ===== Left Sub Navigation ===== */
.sub-nav,
.tab-content,
.sub-tab-content {
    display: none;
}

.sub-nav.show,
.tab-content.show,
.sub-tab-content.show {
    display: block;
}

.left-sub-nav {
  list-style: none;
  padding-left: 40px; /* hierarchy indentation */
  margin-top: 8px;
  display: none;
}

/* Show sub-nav when parent <li> has active nav */
.left-nav li.active > .left-sub-nav {
  display: block;
  padding-left: 40px;
  padding-top: 10px;
}

/* Each sub item */
.left-sub-nav li {
  position: relative;
  margin-bottom: 12px;
}

/* Dot only for sub items */
.left-sub-nav li::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1e3a8a;
}

/* Sub-nav links */
.left-sub-nav li a {
  display: block;
  padding: 6px 8px;
  font-size: 13px;
  color: #1e3a8a;
  border-radius: 6px;
  text-decoration: none;
}

.left-sub-nav li a:hover,
.left-sub-nav li a.active {
  background: #e6ecff;
}

.benefits-card {
  background: #f3f6fd;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  height: 100%;
  padding: 1rem;
  position: relative;
}

.benefits-card-header {
  background: #192f60;
  color: #fff;
  padding: 0.75rem;
  border-radius: 5px;
  text-align: center;
}

.benefits-card-body {
  padding: 0 0 1rem 0;
}

.benefits-card-header h6 {
  font-size: 1.25rem;
  font-family: Poppins;
  margin: 0;
}

ol {
  list-style: auto;
  padding: 1rem;
}

ol li {
  margin-bottom: 0.25rem;
  /* font-size: 14px; */
}

.themeCrm-btn-light {
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: #fff;
  color: #192f60;
  font-family: Poppins;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 2px solid #192f60;
}

.benefits-card-footer {
  position: absolute;
  bottom: 1.25rem;
  width: 90%;
}
.theme-Btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 0.8;
  padding: 0.2rem 0.5rem;
  text-transform: capitalize;
  border-radius: 1px;
  letter-spacing: 0.5px;
  border: 0px !important;
  cursor: pointer;
  border-radius: 5rem;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-family: Poppins;
  color: #192f60;
  font-weight: 500;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}
.w-80 {
  width: 80% !important;
}

/* ===== Notification Table css ===== */
/* .notification table {
  width: 100%;
}

.notification table.dataTable {
  border-collapse: collapse;
  border: 1px solid #192f60;
  margin: 1rem 0rem;
}

.notification table.dataTable.no-footer {
  border-bottom: 1px solid #192f60 !important;
}

.notification .dataTables_wrapper .dataTables_filter {
  margin-bottom: 1rem;
}

.notification table.dataTable > thead > tr > th,
.notification table.dataTable > thead > tr > td {
  padding: 10px;
  background-color: #192f60;
  color: white;
  border: 1px solid #fff;
  border-bottom: 1px solid #192f60;
}

.notification .theme-Btn {
  padding: 0.5rem 1rem;
}

.notification table.dataTable tbody th,
.notification table.dataTable tbody td {
    vertical-align: middle;
    border: 1px solid #192f60;
}

.notification .dataTables_wrapper .dataTables_length select {
  border: 1px solid #192f60;
  padding: 5px;
  margin: 0 0.25rem;
}

.notification .dataTables_wrapper .dataTables_filter input {
  border: 1px solid #192f60;
  margin-left: 10px;
}

.notification .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.notification
  .dataTables_wrapper
  .dataTables_paginate
  .paginate_button.current:hover {
  border: 1px solid #192f60;
  background: #192f60;
  color: #fff !important;
}

.notification .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 1px solid #192f60;
  background: #192f60;
  color: #fff !important;
}

.notification table.dataTable thead > tr > th.sorting_asc:before,
.notification table.dataTable thead > tr > th.sorting_desc:after,
.notification table.dataTable thead > tr > td.sorting_asc:before,
.notification table.dataTable thead > tr > td.sorting_desc:after {
  opacity: 1;
}
.notification table.dataTable tbody tr:nth-child(even) {
  background-color: #f3f6fd;
} */
#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 16px;
    z-index: 9999;

    width: 48px;
    height: 48px;
    background-color: #fff;
    color: #192f60;

    border: none;
    outline: none;
    cursor: pointer;

    border-radius: 50%;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    border: 1px solid #192f60;
    display: flex;
    margin-right: 2rem;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    transition: all 0.35s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Bold Arrow */
#goTopBtn .icon {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.fiscal-30bn-support {
    font-family: Poppins!important;
    background: #fff;
    padding: 20px;
}

/* Header */
.fiscal-30bn-support .fiscal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fde9d9;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.fiscal-30bn-support .fiscal-title h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #192f60;
}

.fiscal-30bn-support .fiscal-title p {
    margin: 5px 0 0;
    font-size: 16px;
    font-style: normal;
    color: #192f60;
}

.fiscal-30bn-support .fiscal-logo img {
    max-height: 70px;
}

/* Cards layout */
.fiscal-30bn-support .fiscal-cards {
    display: flex;
    gap: 20px;
}

/* Card */
.fiscal-30bn-support .fiscal-card {
    flex: 1;
    border: 1px solid #d6d6d6;
    background: #f5faff;
}

/* Highlighted dashed border */
.fiscal-30bn-support .fiscal-card.highlighted {
    border: 3px dashed #d32f2f;
}

/* Card header */
.fiscal-30bn-support .card-header {
    background: #a9cbea;
    text-align: center;
    padding: 25px 10px;
    font-size: 28px;
    font-weight: 700;
    color: #192f60;
}

.fiscal-30bn-support .card-header span {
    font-size: 32px;
    color: #192f60;
}

/* Card body */
.fiscal-30bn-support .card-body {
    padding: 20px;
}

.fiscal-30bn-support .card-body h4 {
    margin-top: 0;
    font-size: 20px;
}

.fiscal-30bn-support .card-body p {
    margin: 10px 0;
    font-weight: 600;
}

.fiscal-30bn-support ol {
    padding-left: 20px;
}

.fiscal-30bn-support ol li {
    margin-bottom: 10px;
    line-height: 1.4;
}

.fiscal-30bn-support .card-body p {
    margin-bottom: 4px;
}

.fiscal-30bn-support .card-body ol {
        margin-top: 0;
    padding-top: 0;
}
.scheme-performance {
/*    max-width: 1200px;*/
    margin: 0 auto;
    font-family: Poppins !important;
}

.page-sub-heading {
    display: inline-block;
    width: auto;
    text-align: center;

    font-size: 20px;
    font-weight: 700;
    color: #192f60;

    padding: 10px 24px;
    margin: 20px 0;

    border: 3px solid #192f60;
    border-radius: 2px;

    background-color: #fff;
    line-height: 1.2;
}
.page-sub-heading-wrapper {
    text-align: center;
}
/* Title bar */
.scheme-performance .scheme-title {
    /* background: linear-gradient(90deg, #020b3a, #102b6b); */
    color: #102b6b;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: 30px;
    margin-top: 16px;
}
.scheme-performance h2.page-main-heading {
  border: 3px solid #192f60;
  width: 50%;
  margin-left: 25%;
}
/*.scheme-performance .page-main-heading {*/
    /* background: linear-gradient(90deg, #020b3a, #102b6b); */
    /*color: #102b6b;
    font-size: 22px;
    font-weight: 500;
    padding: 15px 20px;
    margin-bottom: 30px;
    margin-top: 16px;
    text-align: center;
    border: 3px dashed #192f60;
    width: 50%;
    margin-left: 25%;
}*/

/* Item row */
.scheme-performance .scheme-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 22px;
}

/* Left pill */
.scheme-performance .scheme-pill {
    min-width: 300px;
    background: #4f73ba;
    color: #fff;
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 500;
}
.scheme-box strong {
    color: #0056d2;
}

/* Right content box */
.scheme-performance .scheme-box {
    flex: 1;
    background: #eeeeee;
    padding: 22px 26px;
    border-radius: 18px;
    font-size: 18px;
    line-height: 1.6;
    color: #0056d2;
}

.scheme-performance .scheme-box strong {
    font-weight: 700;
}

.electronics-overview {
    font-family: Poppins !important;
}

.electronics-overview .electronics-wrapper {
/*    border: 1px solid #cfd6e6;*/
    background: #fff;
}

/* Header */
.electronics-overview .electronics-header {
    background: #ffffff;
    border-left: 8px solid #0b2a6f;
    border-bottom: 4px solid #0b2a6f;
    padding: 20px 25px;
    font-size: 22px;
    font-weight: 700;
    color: #0b2a6f;
}

/* Content layout */
.electronics-overview .electronics-content {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 30px;
    position: relative;
    margin-top:20px;
    margin-bottom:20px;
}

/* Graph */
.electronics-overview .electronics-graph img {
    width: 100%;
    height: auto;
    border: 1px solid #000;
}

/* Right panel */
.electronics-overview .electronics-summary {
    border: 2px solid #1c2f5b;
    border-radius: 40px;
    padding: 30px;
    position: relative;
}

.electronics-overview .electronics-summary h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    color: #002060;
}

/* List */
.electronics-overview .electronics-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.electronics-overview .electronics-summary li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 20px;
    color: #002060;
}

.electronics-overview .electronics-summary .icon {
    width: 26px;
    height: 26px;
    border-radius: 4px;
}

.electronics-overview .electronics-summary .icon.green {
    background: linear-gradient(#4cc28a, #2a9d6f);
}

.electronics-overview .electronics-summary .icon.blue {
    background: linear-gradient(#4c7bd9, #2b5cb8);
}

.electronics-overview .electronics-summary .up {
    margin-left: auto;
    font-weight: 700;
    font-size: 22px;
}
/* THE ACTUAL LINE */
.electronics-overview .electronics-summary::before {
    content: "";
    position: absolute;
    left: -16px; 
    top: 0;
    bottom: 0;
    border-left: 2px dashed #9aa7c4;
}
.electronics-overview .electronics-content {
    position: relative;
}

/* Right description */
.section-text {
    white-space: normal;
    word-break: break-word;
}

.timeline-vertical-only ul {
    display: block !important;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.timeline-vertical-only ul::before,
.timeline-vertical-only ul li .date::before,
.timeline-vertical-only ul li .date::after,
.timeline-vertical-only ul li .descr::before,
.timeline-vertical-only ul li .timeline-title::before {
    display: none !important;
}

/* -------- Year block -------- */
.timeline-vertical-only .timeline > li {
    width: 100%;
    display: block;
    margin-bottom: 56px;
}

/* -------- Centered Year Header -------- */
.timeline-vertical-only .date {
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 32px auto;
    padding: 12px 0;
    width: 50%;
    text-align: center;

    color: #fff;
    background: var(--accent-color);
    border-radius: 30px;
}

/* -------- Timeline Row (Month + Records) -------- */
.timeline-vertical-only .new-timeline-title {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

/* -------- Month column -------- */
.timeline-vertical-only .vertical-timeline {
    min-width: 56px;
    text-align: center;
}

.timeline-vertical-only .month {
    font-weight: 600;
    font-size: 13px;
    color: #555;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* =====================================================
   DYNAMIC CONTENT HANDLING
   ===================================================== */

/* Always stack content vertically (works for 1 or many) */
.timeline-vertical-only .new-timeline-title > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Each record card */
.timeline-vertical-only .new-timeline-title .descr {
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

/* Single record (avoid double nesting look) */
.timeline-vertical-only .new-timeline-title > .descr {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* -------- Flag icons -------- */
.timeline-vertical-only .posts-icon img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

/* -------- Neutralize legacy grid -------- */
.timeline-vertical-only.timeline-news ul,
.timeline-vertical-only.timeline-news li {
    display: block !important;
    grid-template-columns: unset !important;
    grid-row: unset !important;
    grid-column: unset !important;
}

/* ===== C2S Table css ===== */
/* table wrapper */
table.c2s {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  border: 1px solid #192f60;
}

/* header + body cells */
table.c2s th,
table.c2s td {
  border: 1px solid #192f60;
  padding: 10px;
  vertical-align: middle;
}

/* header styling */
table.c2s thead th {
  background-color: #192f60;
  color: #ffffff;
}

/* optional zebra rows */
/* table.c2s tbody tr:nth-child(even) {
  background-color: #ffffff;
} */

.tiles-wrapper {
    display: flex;
    gap: 24px;
    margin: 20px 0;
}

/* Common tile styles */
.tile {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tile h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #1e3a8a;
}

.tile p {
    font-size: 14px;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.tile ul {
    padding-left: 18px;
}

.tile ul li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #1e3a8a;
}

/* Optional subtle differentiation */
.tile-left {
    border-left: 4px solid #1e78de;
}

.tile-right {
    border-left: 4px solid #059677;
}


/* ODD rows */
table.c2s tbody tr:nth-child(odd) {
  background-color: #f3f6fd;
}

/* EVEN rows */
table.c2s tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* MoU Table – scoped & high contrast */
table.mou-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  border: 1px solid #192f60;
}

/* header + body cells */
table.mou-table th,
table.mou-table td {
  border: 1px solid #192f60;
  padding: 10px;
  vertical-align: middle;
}

/* header styling */
table.mou-table thead th {
  background-color: #192f60;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
}

/* ODD rows */
table.mou-table tbody tr:nth-child(odd) {
  background-color: #f3f6fd;
}

/* EVEN rows */
table.mou-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Section header rows (Government / Academia / Industry) */
table.mou-table .section-row td {
  background-color: #e6ecfb;
  font-weight: 600;
  text-align: center;
}
.tab-bg-faqs {
  position: relative;
  background-image: url("/Assets/images/backgrounds/about_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;


 /* KEY FIX */
  margin: -25px;
  padding-top: 30px; 
}

.faq-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 25px;
}

.faq-header .page-main-heading {
  grid-column: 2;
  margin: 0;
  text-align: center;
}

.faq-header .toggleAccordionBtn {
  grid-column: 3;
  justify-self: end;
}

/* ======================
   RESPONSIVE STYLES
   ====================== */

@media screen and (max-width: 768px) {
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  .page-layout {
    flex-direction: column;
  }

  .left-nav {
    width: 100%;
  }
  /* Table wrapper */
  .align-content-center {
    overflow-x: auto;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  table td,
  table th {
    vertical-align: middle;
  }

  /* Button inside table */
  .theme-Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.2;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
    overflow: visible;
  }

  /* Span wrapper */
  .theme-Btn span {
    display: flex;
    align-items: center;
  }

  /* Arrow image */
  .theme-Btn img {
    width: 14px;
    height: auto;
    display: block; /* removes inline clipping */
    margin-left: 0; /* override ml-3 if needed */
  }
    #goTopBtn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        bottom: 70px; /* avoids mobile bottom bars */
        right: 14px;
    }
}
/* Hover for desktop */
@media (hover: hover) {
    #goTopBtn:hover {
        background-color: #fff;
        color:#192f60;
        border: 1px solid #192f60;
    }
}
@media (max-width: 1024px) {
    .fiscal-30bn-support .fiscal-cards {
        gap: 15px;
    }

    .fiscal-30bn-support .card-header {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    /* Stack header */
    .fiscal-30bn-support .fiscal-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .fiscal-30bn-support .fiscal-title h1 {
        font-size: 26px;
    }

    .fiscal-30bn-support .fiscal-title p {
        font-size: 16px;
    }

    /* Stack cards vertically */
    .fiscal-30bn-support .fiscal-cards {
        flex-direction: column;
    }

    .fiscal-30bn-support .fiscal-card {
        width: 100%;
    }

    .fiscal-30bn-support .card-header {
        font-size: 22px;
        padding: 20px 10px;
    }

    .fiscal-30bn-support .card-header span {
        font-size: 26px;
    }

    .fiscal-30bn-support .card-body h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .fiscal-30bn-support {
        padding: 10px;
    }

    .fiscal-30bn-support .fiscal-title h1 {
        font-size: 22px;
    }

    .fiscal-30bn-support .fiscal-title p {
        font-size: 14px;
    }

    .fiscal-30bn-support .card-header {
        font-size: 20px;
    }

    .fiscal-30bn-support .card-header span {
        font-size: 24px;
    }

    .fiscal-30bn-support ol li {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .scheme-performance .scheme-pill {
        min-width: 260px;
        font-size: 18px;
    }

    .scheme-performance .scheme-box {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .scheme-performance .scheme-title {
        font-size: 26px;
        text-align: center;
    }

    .scheme-performance .scheme-item {
        flex-direction: column;
        align-items: stretch;
    }

    .scheme-performance .scheme-pill {
        width: 100%;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .scheme-performance .scheme-title {
        font-size: 22px;
        padding: 16px;
    }

    .scheme-performance .scheme-pill {
        font-size: 16px;
        padding: 16px;
    }

    .scheme-performance .scheme-box {
        font-size: 15px;
        padding: 16px;
    }
}
@media (max-width: 992px) {
    .electronics-overview .electronics-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .electronics-overview .electronics-header {
        font-size: 24px;
    }

    .electronics-overview .electronics-summary {
        border-radius: 24px;
    }

    .electronics-overview .electronics-summary h3 {
        font-size: 22px;
    }

    .electronics-overview .electronics-summary li {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .electronics-overview .electronics-header {
        font-size: 20px;
        padding: 15px;
    }

    .electronics-overview .electronics-summary {
        padding: 20px;
    }

    .electronics-overview .electronics-summary li {
        font-size: 16px;
    }
}
/* Hide divider on mobile */
@media (max-width: 992px) {
    .electronics-overview .electronics-content::after {
        display: none;
    }
}
@media (max-width: 768px) {
    .intl-cooperation-line {
        font-size: 0.9rem;
        gap: 5px;
    }

        .intl-cooperation-line img {
            width: 18px;
            height: 18px;
            min-width: 18px;
        }
}

@media (max-width: 480px) {
    .intl-cooperation-line {
        line-height: 1.5;
    }
}
@media (max-width: 768px) {
    .page-sub-heading {
        width: auto;
        display: inline-block;

        font-size: 1.4rem; 
        padding: 8px 16px;

        border-width: 2px;

        max-width: 92%;
        white-space: normal;
        text-align: center;
    }
}


@media (max-width: 768px) {

    .timeline-vertical-only .date {
        width: 80%;
        font-size: 18px;
    }

    .timeline-vertical-only .month {
        font-size: 12px;
    }

    .timeline-vertical-only .new-timeline-title {
        gap: 14px;
    }

    .timeline-vertical-only .new-timeline-title .descr {
        font-size: 14px;
        padding: 14px 16px;
    }
}
/* Mobile responsive */
@media (max-width: 768px) {
    .tiles-wrapper {
        flex-direction: column;
    }
}