body {
  font-family: "Inter";
}

.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

.sr.visible {
  opacity: 1;
  transform: translateY(0)
}

.sr-d1 {
  transition-delay: .1s
}

.sr-d2 {
  transition-delay: .2s
}

.sr-d3 {
  transition-delay: .3s
}

.sr-d4 {
  transition-delay: .4s
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 20px
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--teal-bright)
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
}


.hero-bg img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.hero .drukgreen-container {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
  padding: 60px;
}

.hero-content {
  flex: 1;
  max-width: 450px;
}

.hero-tag {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-h1 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 600;
}

.hero-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  font-weight: 400;
  max-width: 380px;
}

/* Stats Card — pinned to right */
.hero-stats-card {
  display: flex;
  flex-direction: column;
  background: #9E9E9E4D;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  min-width: 220px;
  align-self: center;
}

.hero-stat-box {
  padding: 28px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-box:last-child {
  border-bottom: none;
}

.hero-stat-box-num {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}

.hero-stat-box-label {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-stat-box {
    padding: 24px 40px;
  }

  .hero-h1 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {


  .hero-inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px 0;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-desc {
    max-width: 100%;
    text-align: center;
  }

  .hero-tag {
    margin-bottom: 10px;
  }

  .hero-h1 {
    margin-bottom: 10px;
  }

  .hero-stats-card {
    flex-direction: row;
    width: 100%;
    min-width: unset;
    border-radius: 14px;
  }

  .hero-stat-box {
    flex: 1;
    padding: 16px 10px;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-stat-box:last-child {
    border-right: none;
  }

  .hero-stat-box-num {
    font-size: 26px;
  }

  .hero-stat-box-label {
    font-size: 11px;
    white-space: normal;
  }

  .hero-h1 {
    font-size: 28px;
  }
}

/* FILTER BAR */
.filter-section {
  position: relative;
  z-index: 3;
  margin-bottom: 28px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #EFF1F3;
  border-radius: 10px;
}

.filter-tab {
  font-size: 16px;
  font-weight: 400;
  color: #707070;
  border: none;
  border-right: 1px solid #EFF1F3;
  background: transparent;
  padding-right: 20px;
  cursor: pointer;
}

.filter-tab:last-child {
  border: none;
  padding: 0;
}

.filter-tab.active {
  color: #0B9146;
  font-weight: 500;
}

.filter-tab:hover {
  color: #0B9146;
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #ffffff;
}

.filter-search input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  color: #707070;
}

.filter-search input::placeholder {
  color: #9d9d9d;
}

/* TABLE WRAPPER */
.tender-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;
}

/* HEADINGS */
.tender-table thead th {
  font-size: 13px;
  font-weight: 500;
  color: #707070;
  padding: 0 18px 6px;
  text-align: left;
}

.tender-table thead th:last-child {
  text-align: center;
}

/* ROW CARD */
.tender-row td {
  background: #ffffff;
  padding: 18px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  vertical-align: middle;
}

.tender-row td:first-child {
  border-left: 1px solid #efefef;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.tender-row td:last-child {
  border-right: 1px solid #efefef;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  text-align: center;
}

/* DETAILS */
.tender-ref {
  font-size: 11px;
  font-weight: 500;
  color: #0b9146;
  margin-bottom: 10px;
}

.tender-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2f2f2f;
  max-width: 340px;
  margin-bottom: 10px;
}

.tender-org {
  font-size: 12px;
  color: #909090;
  line-height: 18px;
}

/* CATEGORY */
.tender-category {
  font-size: 14px;
  font-weight: 500;
  color: #3d3d3d;
}

/* DATE */
.tender-date-label {
  font-size: 11px;
  color: #a0a0a0;
  margin-bottom: 4px;
}

.tender-date {
  font-size: 14px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 6px;
}

.tender-countdown {
  font-size: 12px;
  font-weight: 400;
  color: #707070;
}

/* STATUS */
.tender-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  border: none;
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  text-wrap: nowrap;
}

.tender-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.tender-status.open {
  color: #0b9146;
}

.tender-status.open .tender-status-dot {
  background: #0b9146;
}

.tender-status.closing,
.tender-status.closing-soon,
.tender-status.closed {
  color: #e0513e;
}

.tender-status.closing .tender-status-dot,
.tender-status.closing-soon .tender-status-dot,
.tender-status.closed .tender-status-dot {
  background: #e0513e;
}

/* DOWNLOAD BUTTON */
.tender-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  background: #0B9146;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: 0.3s ease;
}

.tender-download:hover {
  background: #08753a;
}

.tender-download svg {
  width: 11px;
  height: 11px;
}

.tender-table-wrapper {
  background-color: #FAFAFA;
  padding: 10px 20px;
  border-radius: 20px;
}

.vendor-section {
  background-color: #FAFAFA;
}


.tender-works .power-section-top-box {
  align-items: flex-end;
}



/* RESPONSIVE */
@media (max-width: 1100px) {
  .tender-table {
    min-width: 1000px;
  }


  .tender-table-wrapper {
    overflow-x: auto;
  }

  .drukgreen-heading-primary br {
    display: none;
  }
}

@media (max-width: 1199px) {
  .tender-works .power-section-top-box {
    align-items: flex-start;
  }

}

@media (max-width: 767px) {
  /* .filter-tabs {
    min-width: 600px;
  } */

  .filter-tab {
    text-wrap: nowrap;
  }

  .filter-tabs {
    overflow: auto;
  }


  .filter-tabs-wrapper {
    overflow-x: auto;
  }
}

@media (max-width:620px) {
  .drukgreen-heading-primary.vendor-title {
    font-size: 24px;
  }
}

/* PROCUREMENT PROCESS */
.process-inner {
  margin-top: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

/* Connecting line through the circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #e0e0e0;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

/* Circle */
.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 14;
  font-weight: 500;
  color: #0B9146;
  z-index: 2;
  background: #fff;
}

.process-step-title {
  font-size: 18px;
  font-weight: 500;
  color: #404040;
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 16;
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
}

@media (max-width: 767px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 40px;
    right: auto;
    width: 1px;
    height: calc(100% - 36px);
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    text-align: left;
    align-items: start;
  }

  .process-step-num {
    margin: 0;
    grid-row: 1 / 3;
  }

  .process-step-title {
    align-self: center;
  }
}

/* ── Vendor Section ── */


.vendor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left */
.vendor-title {
  font-weight: 600;
  font-size: 36px;
  color: #404040;
  margin-bottom: 15PX;
  line-height: 1.3;

}

.vendor-left p {
  font-size: 14PX;
  line-height: 1.4;
  font-weight: 400;
  color: #707070;
}

.vendor-requirements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.vendor-req {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  background: #fff;
  border: 1px solid #EFF1F3;
  border-radius: 10px;
}


.vendor-req-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vendor-req-check svg {
  width: 16px;
  height: 16px;
}

.vendor-req-text {
  font-size: 14PX;
  font-weight: 400;
  color: #404040;
}

/* ── Right Contact Card ── */
.vendor-contact {
  background: linear-gradient(90deg, #0B9146 0%, #243F80 93.86%);

  border-radius: 20px;
  padding: 40PX;
  position: sticky;
  top: 120px;
}

.vendor-contact-title {
  font-size: 30PX;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.vendor-contact-subtitle {
  font-size: 14PX;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.4;
}

.vendor-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vendor-contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vendor-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  /* Glass background */
  background: linear-gradient(148deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.02) 100%);

  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
}

.vendor-contact-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1px;

  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.25) 40%,
      rgba(255, 255, 255, 0.08) 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

.vendor-contact-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.08);

  pointer-events: none;
}

.vendor-contact-icon svg {
  width: 18px;
  height: 18px;
}

.vendor-contact-label {
  font-size: 12PX;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}

.vendor-contact-value {
  font-size: 14PX;
  color: #fFFFff;
  font-weight: 500;
  line-height: 1.4;
}

.vendor-contact-value a {
  color: #FFFFFF;
  text-decoration: none;
}

.vendor-contact-value a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* ── Responsive ── */
@media (max-width: 1024px) {

  .vendor-grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {

  .vendor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vendor-contact {
    position: static;
    padding: 20px 30px 40px 30px;
  }
}

/* ARCHIVED TENDERS */
.archive-header-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.archive-year-tabs {
  display: flex;
  gap: 12px;
  align-items: center;
}

.archive-year {
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  background: transparent;
  border: 1px solid #EFF1F3;
  padding: 5px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s;
}

.archive-year.active {
  color: #0B9146;
}

.archive-year:hover:not(.active) {
  color: #0B9146;
}

/* List */

.archive-list {
  display: none;
  flex-direction: column;
}

.archive-list.active {
  display: flex;
}

.archive-item {
  display: grid;
  grid-template-columns: 120px 110px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #EFF1F3;
}

.archive-item:first-child {
  border-top: 1px solid var(--border);
}

.archive-date {
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  white-space: nowrap;
}

.archive-cat {
  font-size: 14px;
  font-weight: 400;
  color: #404040;
  white-space: nowrap;
}

.archive-title {
  font-size: 14px;
  font-weight: 400;
  color: #404040;
}

.archieve-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #CC3929;
}

/* Closed status */
.archive-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #CC3929;
}

.archive-inner-wrapper {
  width: 100%;
}

@media (max-width:1110px) {
  .archive-inner-wrapper {
    overflow-x: auto;
  }

  .archive-list {
    min-width: 1110px;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .archive-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

}


.faq-section {
  background: #fff;
}


.faq-container {
  background-color: #FFFFFF;
}

.faq-heading-wrapper {
  margin-bottom: 50px;
  display: flex;
  gap: 10px;
  flex-direction: column;
}



.faq-wrapper {
  border-top: 1px solid #e8e8e8;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  background-color: #fff;
  cursor: pointer;
}

.faq-question-row {
  display: flex;
  position: relative;

  gap: 24px;
  padding: 28px 40px;
}

.faq-number {
  font-size: 15px;
  position: absolute;
  top: 28px;
  left: 0;
  font-weight: 400;
  color: #999999;
}

.faq-question {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  color: #292929;
  width: 420px;
  max-width: 420px;
}

.faq-answer {
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  color: #707070;
  max-width: 580px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  font-size: 20px;
  font-weight: 500;
}

.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}

.faq-item.active {
  background-color: #F7F7F7;
}

.faq-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 25px;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 6px;
}

.faq-toggle svg {
  width: 18px;
  height: 18px;
}

.closing-header {
  min-width: 320px;
}

@media (max-width: 1200px) {


  .faq-answer {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .faq-question-row {
    flex-direction: column;
  }

  .faq-item.active .faq-question {
    font-size: 16px;
    font-weight: 500;
  }

  .faq-answer {
    max-width: 100%;
  }

  .faq-question {
    max-width: 100%;
  }

  .faq-number {
    left: 10px;
  }

  .faq-toggle {
    right: 10px
  }

}


/* CLOSING */

.closing-inner {
  background: #EFFBF4;
  border-radius: 20px;
  padding: 39px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.closing-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 700px;
  color: #707070;
  text-align: left;
}

.close-btn-primary {
  background: #0B9146;
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: 8px;

  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: 0.3s ease;
}



.btn-primary:hover {
  background: #087838;
}

@media (max-width: 992px) {
  .closing-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .closing-desc {
    max-width: 100%;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .closing-title {
    font-size: 36px;
    line-height: 44px;
  }
}

/* Jatin */
.faq-section a {
  color: #0b9146;
}


/* 17-07-26 */
.tender-download-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  display: none;
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #999 transparent;
}

/* Chrome, Edge, Safari */
.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 999px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  text-align: start;
  border-bottom: 1px solid #cccccc7a;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-menu {
  display: none;
}

.tender-download-dropdown.active .dropdown-menu {
  display: block;
}