/* =========================
   GLOBAL
========================= */
body {
  font-family:
    Inter,
    Inter Fallback,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

/* =========================
   FIXED HEADER - STICKY AT TOP
========================= */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Add padding to body to prevent content from hiding behind fixed header */
/* body {
  padding-top: 72px;
} */

/* Adjust padding for mobile screens */
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

/* =========================
   HEADER
========================= */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* =========================
   NAVBAR
========================= */
.navbar-expand-lg .navbar-nav .nav-link {
  padding-inline: 0.75rem;
  font-weight: 500;
  color: #777;
  transition: 0.3s ease;
}

.nav-link {
  margin-right: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: #1e88d8;
}

/* Active Nav Link */
.nav-link.active {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff !important;
  padding: 6px 15px;
  border-radius: 6px;
}

/* =========================
   BUTTONS
========================= */
.btn-signin,
.mega-btn {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-signin {
  padding: 6px 15px;
  border-radius: 6px;
}

.btn-signin:hover,
.mega-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.mega-btn {
  padding: 12px 30px;
  display: inline-block;
}

/* =========================
   OFFERINGS DROPDOWN
========================= */
.custom-dropdown {
  width: 402px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dropdown-title {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

/* =========================
   TABS
========================= */
.tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.tabs button {
  flex: 1;
  padding: 9px 10px;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.tabs button.active {
  color: #1e88d8;
}

.tabs button.active::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 0;
  width: 70%;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
}

/* =========================
   TAB CONTENT
========================= */
.tab-box {
  padding: 0.75rem;
  background: #fff;
}

/* =========================
   DROPDOWN ITEMS
========================= */
.dropdown-item {
  padding: 0.625rem 0.75rem;
  margin-bottom: 8px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  transform: translateX(4px);
}

.dropdown-item strong {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111;
}

.dropdown-item p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* =========================
   MEGA MENU
========================= */
.navbar .dropdown.position-static .dropdown-menu {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px 20px;
  border: none;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Hover Open */
@media (min-width: 992px) {
  /* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  } */
}

/* =========================
   MEGA MENU HEADINGS
========================= */
.dropdown-header {
  font-size: 15px;
  font-weight: 700;
  color: #1e88d8 !important;
  padding-bottom: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  border-bottom: 2px solid #1e88d8;
}

/* =========================
   MEGA MENU ITEMS
========================= */
.mega-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s ease;
  break-inside: avoid;
}

.mega-item:hover {
  color: #1e88d8;
  padding-left: 8px;
}

.mega-count {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

/* =========================
   SCROLLABLE LIST
========================= */
.mega-list {
  max-height: 15rem;
  overflow-y: auto;
  padding-right: 6px;
}

.mega-list::-webkit-scrollbar {
  width: 6px;
}

.mega-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
}

/* =========================
   MISC
========================= */
.border-start {
  border-left: 1px solid #efefef !important;
}

.mega-footer-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family:
    Inter,
    Inter Fallback,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
  background: #f9fafc;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}

/* =========================
   HEADER
========================= */
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* =========================
   NAVBAR (DESKTOP - UNCHANGED)
========================= */
.navbar-expand-lg .navbar-nav .nav-link {
  padding-inline: 0.75rem;
  font-weight: 500;
  color: #777;
  transition: 0.3s ease;
}

.nav-link {
  margin-right: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: #1e88d8;
}

/* Active Nav Link */
.nav-link.active {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff !important;
  padding: 6px 15px;
  border-radius: 6px;
}

/* =========================
   BUTTONS
========================= */
.btn-signin,
.mega-btn {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-signin {
  padding: 6px 15px;
  border-radius: 6px;
}

.btn-signin:hover,
.mega-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.mega-btn {
  padding: 12px 30px;
  display: inline-block;
}

/* =========================
   OFFERINGS DROPDOWN (DESKTOP)
========================= */
.custom-dropdown {
  width: 402px;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.dropdown-title {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

/* =========================
   TABS
========================= */
.tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.tabs button {
  flex: 1;
  padding: 9px 10px;
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: 0.3s ease;
}

.tabs button.active {
  color: #1e88d8;
}

.tabs button.active::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 0;
  width: 70%;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
}

/* =========================
   TAB CONTENT
========================= */
.tab-box {
  padding: 0.75rem;
  background: #fff;
}

/* =========================
   DROPDOWN ITEMS
========================= */
.dropdown-item {
  padding: 0.625rem 0.75rem;
  margin-bottom: 8px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  transform: translateX(4px);
}

.dropdown-item strong {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #111;
}

.dropdown-item p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* =========================
   MEGA MENU (DESKTOP)
========================= */
.navbar .dropdown.position-static .dropdown-menu {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  padding: 30px 20px;
  border: none;
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Hover Open for desktop */
@media (min-width: 992px) {
  /* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  } */
}

/* =========================
   MEGA MENU HEADINGS
========================= */
.dropdown-header {
  font-size: 15px;
  font-weight: 700;
  color: #1e88d8 !important;
  padding-bottom: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  border-bottom: 2px solid #1e88d8;
}

/* =========================
   MEGA MENU ITEMS
========================= */
.mega-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s ease;
  break-inside: avoid;
}

.mega-item:hover {
  color: #1e88d8;
  padding-left: 8px;
}

.mega-count {
  font-size: 13px;
  font-weight: 500;
  color: #888;
}

/* =========================
   SCROLLABLE LIST
========================= */
.mega-list {
  max-height: 15rem;
  overflow-y: auto;
  padding-right: 6px;
}

.mega-list::-webkit-scrollbar {
  width: 6px;
}

.mega-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.mega-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  border-color: #0a4ea3;
}

/* =========================
   MISC
========================= */
.border-start {
  border-left: 1px solid #efefef !important;
}

.mega-footer-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

/* ==============================================
   FULLY RESPONSIVE MOBILE VIEW (NO DESKTOP CHANGE)
   - All changes apply only below 992px
   - Desktop (>=992px) remains pixel-perfect as original
============================================== */
@media (max-width: 991.98px) {
  /* Reset container padding for better mobile spacing */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Make navbar toggler visible and styled */
  .navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10, 78, 163, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* Collapse menu background & spacing */
  .navbar-collapse {
    background: #fff;
    border-radius: 20px;
    margin-top: 16px;
    padding: 16px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Nav items stack vertically */
  .navbar-nav {
    width: 100%;
    gap: 8px;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
  }

  /* Nav links: full width, consistent padding */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 16px;
    margin-right: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link.active {
    background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
    color: #fff !important;
    padding: 10px 16px;
  }

  /* dropdown-toggle icon on mobile */
  .dropdown-toggle::after {
    float: right;
    margin-top: 8px;
  }

  /* ========== OFFERINGS & SERVICES DROPDOWN (MOBILE) ========== */
  .nav-item.dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 8px !important;
    border: none !important;
    box-shadow: none !important;
    background: #f8f9fc;
    border-radius: 20px;
    padding: 0;
    transition: none;
  }

  /* Ensure custom-dropdown fits mobile */
  .custom-dropdown {
    width: 100% !important;
    margin-top: 0 !important;
    box-shadow: none;
    border-radius: 20px;
  }

  .dropdown-title {
    font-size: 14px;
    padding: 12px 16px;
  }

  .tabs button {
    font-size: 13px;
    padding: 12px 8px;
  }

  .tab-box {
    padding: 12px;
  }

  .dropdown-item {
    padding: 12px 16px;
    margin-bottom: 6px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  }

  /* ========== BROWSE TENDERS MEGA MENU (MOBILE) ========== */
  /* Make mega menu full width, scrollable, and stacked columns */
  .nav-item.dropdown.position-static .dropdown-menu {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    padding: 16px !important;
    margin-top: 10px !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    background: #f8f9fc;
    max-height: 70vh;
    overflow-y: auto;
  }

  /* Remove the hover effect on mobile */
  .nav-item.dropdown:hover .dropdown-menu {
    display: none;
  }

  /* When .show class is added by bootstrap, display block */
  .nav-item.dropdown .dropdown-menu.show {
    display: block !important;
  }

  /* Reorganize mega menu rows into single column on mobile */
  .navbar .dropdown.position-static .dropdown-menu .row {
    flex-direction: column;
    gap: 20px;
  }

  .navbar .dropdown.position-static .dropdown-menu .col-md-3 {
    width: 100%;
    border-left: none !important;
    border-top: 1px solid #eef2f6;
    padding-top: 16px;
    margin-top: 8px;
  }

  .navbar .dropdown.position-static .dropdown-menu .col-md-3:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .dropdown-header {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .mega-list {
    max-height: 200px;
    overflow-y: auto;
  }

  .mega-item {
    padding: 10px 8px;
    background: white;
    border-radius: 14px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  }

  .mega-item:hover {
    padding-left: 12px;
  }

  /* View All buttons */
  .text-primary.small.mt-2 {
    display: inline-block;
    margin-top: 12px !important;
    margin-bottom: 8px;
    font-weight: 600;
  }

  /* Center button for View All Tenders */
  .text-center.mt-4 {
    margin-top: 24px !important;
  }

  .btn-danger {
    width: 100%;
    border-radius: 40px;
    padding: 12px;
    font-weight: 600;
  }

  /* Sign In button mobile styling */
  .btn-signin {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
    border-radius: 40px;
  }

  /* Bell icon styling on mobile */
  .fa-bell {
    font-size: 20px;
    margin: 10px 0 0 16px;
    display: inline-block;
  }

  .navbar-nav .fa-bell {
    background: #f8f9fc;
    padding: 10px 16px;
    border-radius: 40px;
    width: fit-content;
    font-size: 18px;
    margin-left: 16px;
    margin-right: auto;
  }
}

/* Extra small devices polish */
@media (max-width: 480px) {
  .dropdown-title {
    font-size: 14px;
  }

  .mega-item {
    font-size: 13px;
  }

  .tab-box .dropdown-item strong {
    font-size: 14px;
  }

  .tab-box .dropdown-item p {
    font-size: 11px;
  }
}

/* Keep desktop mega menu column layout intact (>=992px) */
@media (min-width: 992px) {
  /* ensure original row and column behavior */
  .navbar .dropdown.position-static .dropdown-menu .row {
    display: flex;
    flex-wrap: wrap;
  }

  .navbar .dropdown.position-static .dropdown-menu .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .border-start {
    border-left: 1px solid #efefef !important;
  }
}

/* =====================Modal ==================================== */
  /* Wrapper - sab kuch iske andar hi apply hoga */
.auth-wrapper {
    font-family: 'Segoe UI', sans-serif;
}

/* --- Main Open Button --- */

/* --- Overlay --- */
.auth-wrapper .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* --- Popup Box --- */
.auth-wrapper .auth-container {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    animation: authFadeIn 0.3s ease-out;
}

/* Animation */
@keyframes authFadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Close button */
.auth-wrapper .close-x {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

/* --- Tabs --- */
.auth-wrapper .tabs {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.auth-wrapper .tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    color: #666;
    font-weight: 500;
}

.auth-wrapper .tab.active {
    background: #fff;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Form --- */
.auth-wrapper .form-group {
    margin-bottom: 15px;
}

.auth-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.auth-wrapper input {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}


/* Phone input */
.auth-wrapper .phone-input {
    display: flex;
    gap: 5px;
}

.auth-wrapper .country-code {
    width: 60px;
    background: #f9f9f9;
    text-align: center;
    color: #666;
}

/* Text */
.auth-wrapper .sub-text {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.auth-wrapper .forgot-password {
    text-align: right;
    font-size: 13px;
    margin-bottom: 15px;
}

.auth-wrapper .forgot-password a {
   background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Captcha */
.auth-wrapper .captcha-box {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    font-size: 13px;
}

/* Submit button */
.auth-wrapper .submit-btn {
    width: 100%;
    padding: 14px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

/* Hide class */
.auth-wrapper .hidden {
    display: none;
}






/* ================= HERO SECTION ================= */
/* ========================================= */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #faf7f3;
}

/* Content */
.hero-section .hero-content h1 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  font-size: 3.75rem;
  line-height: 1;
}

.hero-section .hero-content h1 span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section .hero-content p {
  font-size: 1.25rem;
  max-width: 850px;
  margin: auto;
  color: #475569;
  line-height: 1.6;
}

.hero-section .hero-content p strong {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SEARCH BAR */
.hero-section .search-wrapper {
  margin: 20px auto 0;
  max-width: 780px;
  background: #fff;
  border-radius: 20px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.12);
}

.hero-section .search-tabs {
  position: relative;
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 4px;
}

.hero-section .search-tabs button {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 8px 13px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
}

.hero-section .tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 50%;
  height: calc(100% - 8px);
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 10px;
  transition: 0.3s;
  z-index: 1;
}

.hero-section .search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 0.5rem 0;
}

.hero-section .search-btn {
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  font-weight: 700;
}

/* STATS */
.hero-section .stats-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .stat-card {
  padding: 1.5rem;
  border-radius: 22px;
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

.hero-section .stat-card h3 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section .stat-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

/* COLORS (scoped) */
.hero-section .stat-card.orange {
  background: #fff7f0;
  border-color: #ffd8c2;
}

.hero-section .stat-card.orange h3,
.hero-section .stat-card.orange p {
  color: #ff5a00;
}

.hero-section .stat-card.purple {
  background: #faf5ff;
  border-color: #e9d5ff;
}

.hero-section .stat-card.purple h3,
.hero-section .stat-card.purple p {
  color: #7c3aed;
}

.hero-section .stat-card.blue {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.hero-section .stat-card.blue h3,
.hero-section .stat-card.blue p {
  color: #2563eb;
}

.hero-section .stat-card.green {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.hero-section .stat-card.green h3,
.hero-section .stat-card.green p {
  color: #059669;
}

/* Hover */
.hero-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}
/* Default (Desktop) */
.search-text {
  display: inline-block;
}

.search-icon {
  display: none;
}

/* 📱 Mobile View */
@media (max-width: 768px) {
  .search-text {
    display: none;
  }

  .search-icon {
    display: inline-block;
    font-size: 16px;
  }
  .hero-section .stat-card h3 {
    font-size: 21px !important;
  }
  .hero-section .stat-card p {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
  }

  .hero-section .hero-content p {
    font-size: 18px;
  }

  .hero-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section .search-wrapper {
    /* flex-direction: column; */
    padding: 16px;
  }

  .hero-section .search-wrapper input,
  .hero-section .search-btn {
    width: 10%;
            display: flex;
        justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section .hero-content h1 {
    font-size: 25px;
  }
}

/* ========================================= */
/* ========================================= */
section.premium-services {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

/* Container */
/* .premium-services .container {
  max-width: 1200px;
} */

/* Header */
.premium-services .header-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
}

.premium-services .section-badge {
  background: #eef2ff;
  color: #4f46e5;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.premium-services .section-title {
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.premium-services .highlight {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-services .view-all {
  color: #475569;
  font-weight: 600;
  text-decoration: none;
}

/* Cards */
.premium-services .service-card {
  background: white;
  border-radius: 22px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover */
.premium-services .service-card:hover {
  transform: translateY(-6px);
}

/* 🔵 Blue */
.premium-services .shadow-blue:hover {
  box-shadow:
    rgba(79, 70, 229, 0.15) 0px 1px 0px,
    rgba(79, 70, 229, 0.15) 0px 8px 24px,
    rgba(79, 70, 229, 0.15) 0px 16px 48px;
}

/* 🟠 Orange */
.premium-services .shadow-orange:hover {
  box-shadow:
    rgba(234, 88, 12, 0.15) 0px 1px 0px,
    rgba(234, 88, 12, 0.15) 0px 8px 24px,
    rgba(234, 88, 12, 0.15) 0px 16px 48px;
}

/* 🟢 Green */
.premium-services .shadow-green:hover {
  box-shadow:
    rgba(22, 163, 74, 0.15) 0px 1px 0px,
    rgba(22, 163, 74, 0.15) 0px 8px 24px,
    rgba(22, 163, 74, 0.15) 0px 16px 48px;
}

/* 🟢 Light Green */
.premium-services .shadow-light-green:hover {
  box-shadow:
    rgba(5, 150, 105, 0.15) 0px 1px 0px,
    rgba(5, 150, 105, 0.15) 0px 8px 24px,
    rgba(5, 150, 105, 0.15) 0px 16px 48px;
}

/* 🟣 Purple */
.premium-services .shadow-purple:hover {
  box-shadow:
    rgba(124, 58, 237, 0.15) 0px 1px 0px,
    rgba(124, 58, 237, 0.15) 0px 8px 24px,
    rgba(124, 58, 237, 0.15) 0px 16px 48px;
}

/* 💗 Pink */
.premium-services .shadow-pink:hover {
  box-shadow:
    rgba(219, 39, 119, 0.15) 0px 1px 0px,
    rgba(219, 39, 119, 0.15) 0px 8px 24px,
    rgba(219, 39, 119, 0.15) 0px 16px 48px;
}

/* Top badge */
.premium-services .top-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 9px;
  border-radius: 20px;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
}

/* Badge colors */
.premium-services .blue {
  background: #e0e7ff;
  color: #4f46e5;
}

.premium-services .orange {
  background: #ffedd5;
  color: #ea580c;
}

.premium-services .green {
  background: #dcfce7;
  color: #16a34a;
}

.premium-services .light-green {
  background: #d1fae5;
  color: #059669;
}

.premium-services .purple {
  background: #ede9fe;
  color: #7c3aed;
}

.premium-services .pink {
  background: #ffe4e6;
  color: #db2777;
}

/* Icon */
.premium-services .service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 15px;
}

/* Icon backgrounds */
.premium-services .gem-bg {
  background: #eef2ff;
}

.premium-services .orange-bg {
  background: #ffedd5;
}

.premium-services .green-bg {
  background: #dcfce7;
}

.premium-services .green2-bg {
  background: #d1fae5;
}

.premium-services .purple-bg {
  background: #ede9fe;
}

.premium-services .pink-bg {
  background: #ffe4e6;
}

/* Text */
.premium-services .service-card h3 {
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.premium-services .service-card p {
  font-size: 11px;
  color: #64748b;
  margin: 10px 0 15px;
  line-height: 1.625;
  height: 52px;
}

.premium-services .service-card a {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.premium-services .service-card1 {
  padding: 0px 4px;
}

@media (max-width: 768px) {
  .premium-services .section-title {
    font-size: 23px;
    
}
.premium-services .view-all {
        font-weight: 600;
        text-decoration: none;
        width: 100%;
        position: absolute;
        bottom: 10px;
        /* right: 50%; */
        display: flex;
        justify-content: center;
        color: #0d6efd;
    }


}
/* ==========tender-section  ================ */

/* Section only */
.tender-section {
  background: #fff;
  position: relative;
}

/* Badge */
.tender-section .badge-custom {
  background: #fff3eb;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* Heading */
.tender-section .main-heading {
  font-size: 28px;
  font-weight: 700;
}

.tender-section .main-heading span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Link */
.tender-section .view-link {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 500;
}

/* Card */

.tender-section .city-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.875rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  transition: 0.3s;
  cursor: pointer;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* Hover effect */
.tender-section .city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #0a4ea3, #1e88d8, #4ccbea) border-box;
  border-radius: 14px;
  /* same as normal */
}

/* Left side */
.tender-section .city-card .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon */
.tender-section .icon {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Colors */
.tender-section .orange {
  background: #ffe8db;
  color: #ea580c;
}

.tender-section .green {
  background: #e3f7ef;
  color: #059669;
}

.tender-section .purple {
  background: #efe6ff;
  color: #7c3aed;
}

.tender-section .blue {
  background: #e6f4ff;
  color: #2563eb;
}

.tender-section .pink {
  background: #ffe6f0;
  color: #db2777;
}

.tender-section .yellow {
  background: #fff6d9;
  color: #ca8a04;
}

/* Text */
.tender-section .city-card h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.tender-section .city-card p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Arrow */
.tender-section .arrow {
  font-size: 22px;
  color: #ccc;
  transition: 0.3s;
}

.tender-section .city-card:hover .arrow {
  color: #ff6b00;
}


@media (max-width: 768px) {
  .tender-section .view-link {
    
    position: absolute;
    bottom: 10px;
    left: 33%;
}
}
/* ======================SECTION============================= */

#chartdiv {
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
  

  /* Legend text small */
  .amcharts-legend-label {
    font-size: 8px !important;
  }

  /* Legend box width adjust */
  .amcharts-legend-div {
    width: 110px !important;
  }
}
/* ================= SECTION ================= */
.tender-distribution-section {
  font-family: Arial, sans-serif;
  background: #f5f6f8;
  padding: 60px 20px;
}

/* CONTAINER */
.tender-distribution-section .tender-container {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* HEADER */
.tender-distribution-section .tender-header {
  text-align: center;
  margin-bottom: 35px;
}

.tender-distribution-section .tender-header h1 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 700;
}
section.tender-distribution-section i.fa-solid.fa-location-dot {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* height: 1.25rem; */
  font-size: 21px;
}
.tender-distribution-section h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

section.tender-distribution-section i.fa-solid.fa-arrow-trend-up {
  position: absolute;
  right: 13px;
  font-size: 12px;
  color: gray;
}
.tender-distribution-section .tender-header span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tender-distribution-section .tender-header p {
  color: #777;
  margin-top: 10px;
  font-size: 15px;
}

/* CONTENT */
.tender-distribution-section .tender-content {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

/* MAP */
.tender-distribution-section .tender-map {
  flex: 1;
  min-width: 320px;
  background: #eef1f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
}

.tender-distribution-section .tender-map img {
  max-width: 100%;
}

/* RIGHT */
.tender-distribution-section .tender-right {
  flex: 1;
  min-width: 320px;
}

.tender-distribution-section .tender-right h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

/* LIST */
.tender-distribution-section .tender-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 327px;
  overflow-y: auto;
  padding-right: 5px;
}

/* SCROLLBAR */
.tender-distribution-section .tender-list::-webkit-scrollbar {
  width: 6px;
}
.tender-distribution-section .tender-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

/* ITEM */
.tender-distribution-section .tender-item {
  display: flex;
  align-items: center;
  background: #f8f9fb;
  padding: 14px;
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
}

.tender-distribution-section .tender-item:hover {
  transform: translateX(4px);
  background: #f1f5f9;
}

/* RANK */
.tender-distribution-section .tender-rank {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: white;
  font-weight: bold;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 12px;
  font-size: 14px;
}

/* INFO */
.tender-distribution-section .tender-info strong {
  display: block;
  font-size: 14px;
}

.tender-distribution-section .tender-info span {
  color: #777;
  font-size: 13px;
}

/* CARDS */
.tender-distribution-section .tender-cards {
  display: flex;
  gap: 15px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.tender-distribution-section .tender-card {
  flex: 1;
  padding: 1rem;
  border-radius: 12px;
  color: white;
}

.tender-distribution-section .tender-card div {
  font-size: 1.5rem;
}

.tender-distribution-section .tender-card small {
  font-size: 12px;
  opacity: 0.9;
}

/* COLORS */
.tender-distribution-section .tender-card.orange {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
}

.tender-distribution-section .tender-card.purple {
  background: linear-gradient(135deg, #5f6fff, #9c42ff);
}

/* BUTTON */
.tender-distribution-section .tender-btn {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.tender-distribution-section .tender-btn a {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.tender-distribution-section .tender-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tender-distribution-section .tender-container {
    padding: 25px;
  }

  .tender-distribution-section .tender-header h1 {
    font-size: 26px;
  }

  
.tender-distribution-section .tender-map {
    
    padding: 5px;
}
      #chartdiv {
        width: 100%;
        height: 463px;
    }

  .tender-distribution-section .tender-map {
    min-width: unset;
  }
  .tender-card.purple {
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .tender-card.purple {
    margin-top: 10px;
  }
}


/* ================================================= */
/* Section bg */
.ci-hero {
      background: rgb(250, 247, 243);
}
.ci-hero-container {
    border-radius: 18px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Tablet */
@media (max-width: 992px) {
    .ci-hero-container {
        padding: 14px;
        border-radius: 14px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .ci-hero-container {
        padding: 12px;
        border-radius: 10px;
    }
}
/* Main box */
.ci-hero-box {
  background: linear-gradient(135deg, #fff7ef, #fdf3e8);
  border-radius: 20px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

/* Badge */
.ci-badge-pill {
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-block;
  border-color: #fed7aab3;
  border-radius: 0.75rem;
  border-width: 1px;
  background: #fef3c7;
  /* badge background */
  color: #0a4ea3;
  /* normal text color */
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.ci-sub-badges1 {
  margin-top: 1.25rem;
}

.ci-sub-badges {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-color: #fed7aab3;
  border-radius: 0.75rem;
  border-width: 1px;
  background: #fef3c7;
  /* badge background */
  color: #0a4ea3;
  /* normal text color */
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Sub badges */

/* Title */
.ci-hero-title {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
}

.ci-hero-title span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.ci-hero-desc {
  color: #555;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 20px;
}

.ci-hero-desc strong {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Features */
.ci-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.ci-features span {
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}

/* Button */
.ci-hero-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
}

.ci-hero-btn i {
  font-size: 1rem;
  line-height: 1.75rem;
}

a.ci-hero-btn:hover {
  color: white;
}

span.ci-more {
  background: transparent;
  color: red;
  font-style: italic;
}

/* Right side */
.ci-right-cards {
  position: relative;
}

/* Mini card */
.ci-mini-card img {
  width: 100%;
}

/* Mobile view */
@media (max-width: 768px) {
  .ci-hero-box {
    padding: 10px;
    /* 🔥 padding remove */
  }

  .ci-sub-badges {
    font-size: 12px;
  }
}

/* ================================== */
/* Section */
.custom-cat {
  background: #f8f9fb;
}

/* Badge */
.custom-cat .cat-badge {
  background: #f1eaff;
  color: #7b61ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Heading */
.custom-cat .cat-heading {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.custom-cat .cat-heading span {
  color: #7b61ff;
}

/* Link */
.custom-cat .cat-link {
  color: #7b61ff;
  text-decoration: none;
  font-weight: 500;
}

/* Card */
.custom-cat .cat-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.3s;
  cursor: pointer;
}

.custom-cat .cat-card:hover {
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  transform: translateY(-2px);
}

/* Left */
.custom-cat .cat-card .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon */
.custom-cat .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Colors */
.custom-cat .peach {
  background: #ffe8db;
  color: #ff6b00;
}

.custom-cat .green {
  background: #e3f7ef;
  color: #00a86b;
}

.custom-cat .purple {
  background: #efe6ff;
  color: #7b61ff;
}

.custom-cat .blue {
  background: #e6f4ff;
  color: #1e88d8;
}

.custom-cat .pink {
  background: #ffe6f0;
  color: #e91e63;
}

.custom-cat .yellow {
  background: #fff6d9;
  color: #f4b400;
}

/* Text */
.custom-cat .cat-card h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  max-width: 290px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-cat .cat-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #888;
}

/* Arrow */
.custom-cat .arrow {
  font-size: 27px;
  color: #ccc;
  transition: 0.3s;
}

.custom-cat .cat-card:hover .arrow {
  color: #7b61ff;
}

.custom-cat .cat-card:hover {
  color: #7b61ff;
}

/* Mobile view */
@media (max-width: 768px) {
  section.category-section.py-5.custom-cat {
    position: relative;
}
  .custom-cat .cat-card h6 {
    max-width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .custom-cat .cat-link {
    color: #7b61ff;
    text-decoration: none;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    display: flex;
    left: 33%;
}
}

/* ============  TenderDekho -section START========== */
/* Section */
.custom-why {
  background: #f8f9fb;
}

.custom-why .why-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;

  background: #fed7aa;
  color: #0a4ea3;
  border: 1px solid #fbbf24;
}

/* Heading */
.custom-why .why-heading {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 1rem !important;
}

.custom-why .why-heading span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
.custom-why .why-subtext {
  color: #777;
  max-width: 600px;
  margin: auto;
  font-size: 0.875rem;
}

/* Card */
.custom-why .why-card {
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: 0.3s;
  height: 100%;
}

/* Backgrounds */
.custom-why .why-card.peach {
  background: #f9efe7;
}

.custom-why .why-card.green {
  background: #eaf6f1;
}

.custom-why .why-card.purple {
  background: #f0ecf9;
}

/* Icon */
.custom-why .icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
}

/* Icon Colors */
.custom-why .orange {
  background: #ff6b00;
}

.custom-why .why-card:hover .icon {
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.custom-why .green-icon {
  background: #1abc9c;
}

.custom-why .purple-icon {
  background: #7b61ff;
}

/* Text */
.custom-why .why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* Peach card hover */
.custom-why .why-card.peach:hover h5 {
  color: #ff6b00;
}

/* Green card hover */
.custom-why .why-card.green:hover h5 {
  color: #1abc9c;
}

/* Purple card hover */
.custom-why .why-card.purple:hover h5 {
  color: #7b61ff;
}

.custom-why .why-card p {
  color: #666;
  font-size: 14px;
}

/* Hover */
.custom-why .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ================================ */
/* Section */
.cta-section {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute; /* 🔥 enable karo */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  background-image: url(../images/download.svg);
  background-size: 70px 70px;

  opacity: 0.1; /* 🔥 light pattern */
  pointer-events: none; /* click block na kare */
}

/* Left content */
.cta-section .cta-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.cta-section .cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .cta-title span {
  color: #ffd54f;
}

.cta-section .cta-desc {
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Stats */
.cta-section .cta-stats {
  display: flex;
  gap: 40px;
}

.cta-section .cta-stats h4 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}

.cta-section .cta-stats p {
  font-size: 0.75rem;
  line-height: 1rem;
  opacity: 0.9;
}

/* Form box */
.cta-section .form-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .form-box h5 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0px;
}
.cta-section .small-text {
  color: #777;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Inputs */
.cta-section .form-control {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ddd;
}

/* Button */
.cta-section .cta-btn {
  width: 100%;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 5px;
}

/* Note */
.cta-section .note {
  font-size: 12px;
  text-align: center;
  color: #888;
  margin-top: 10px;
}

.w-px.h-8.bg-white\/30 {
  height: 3rem;
  background-color: #ffffff4d;
  width: 1px;
}
.container.setaziz {
 
}

@media (min-width: 992px) {
    .container.setaziz, .container-lg, .container-md, .container-sm {
         max-width: 72rem;
    }
}
/* ===================footer=============================== */
.footer-wrapper {
  font-family: Arial, sans-serif;
}

/* ===== STATS ===== */
.footer-wrapper .stats-bar {
  background: #f5efe8;
  padding: 20px 0;
}

.footer-wrapper .stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wrapper .stat-item {
  text-align: center;
}

.footer-wrapper .stat-item h4 {
  font-weight: 700;
  margin: 0;
}

.footer-wrapper .stat-item p {
  font-size: 12px;
  color: #777;
  margin: 0px;
}

.footer-wrapper .c-orange {
  color: #ff6b00;
}

.footer-wrapper .c-blue {
  color: #1e88d8;
}

.footer-wrapper .c-green {
  color: #00a86b;
}

.footer-wrapper .c-purple {
  color: #7b61ff;
}

.footer-wrapper .info i {
  margin-right: 8px;
}
/* ===== FOOTER ===== */
.footer-wrapper .main-footer {
  background: #f8f9fb;
  padding: 50px 0;
}

.footer-wrapper .logo {
  font-weight: 700;
}

.footer-wrapper .desc {
  font-size: 0.875rem;
  color: #666;
  margin-top: 1.25rem;
}

.footer-wrapper .info {
  font-size: 0.875rem;
  color: #777;
}

.footer-wrapper ul {
  list-style: none;
  padding: 0;
}

.footer-wrapper li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
  cursor: pointer;
}

.footer-wrapper li:hover {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Social */
.footer-wrapper .social span {
  display: inline-block;
  background: #eee;
  padding: 6px 10px;
  border-radius: 50%;
  margin-right: 5px;
}
/* ===== SERVICES ===== */

.footer-wrapper .service-cards {
  display: flex;
  gap: 20px;
  margin-top: 2.5rem;
}

.footer-wrapper .service {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 14px;
  border-radius: 14px;
  background: #f5f5f5;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Icon */
.footer-wrapper .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-right: 12px;
}

/* Content */
.footer-wrapper .service .content {
  flex: 1;
  margin-left: 10px;
}

.footer-wrapper .service strong {
  display: block;
  font-size: 15px;
}

.footer-wrapper .service p {
  margin: 0;
  font-size: 0.75rem;
  color: #666;
}

/* Arrow */
.footer-wrapper .arrow {
  font-size: 20px;
  color: #999;
}

/* Colors */
.footer-wrapper .service.blue {
  background: #eaf2ff;
  border: 1px solid transparent;
}
.footer-wrapper .service.blue .icon-box {
  background: #2f6fed;
}

.footer-wrapper .service.purple {
  background: #f1ecff;
  border: 1px solid transparent;
}
.footer-wrapper .service.purple .icon-box {
  background: #7b61ff;
}

.footer-wrapper .service.green {
  background: #e9f8f2;
  border: 1px solid transparent;
}
.footer-wrapper .service.green .icon-box {
  background: #1abc9c;
}

/* Hover */
.footer-wrapper .service:hover {
  transform: translateY(-4px);
}

.footer-wrapper .service.blue:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #2f6fed;
  background: #2f6fed2e;
}

.footer-wrapper .service.purple:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #b774ff;
  background: #d8b4fe;
}

.footer-wrapper .service.green:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #4fffdc;
  background: #1abc9c46;
}
/* ================= TABLET ================= */
@media (max-width: 992px) {
  .footer-wrapper .service-cards {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-wrapper .service {
    flex: 1 1 calc(50% - 10px); /* 2 cards per row */
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-wrapper .service-cards {
    flex-direction: column;
  }

  .footer-wrapper .service {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .footer-wrapper .service {
    padding: 12px;
  }
.main-footer .social {
    margin: 20px 1px;
}
  .footer-wrapper .icon-box {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-wrapper .service strong {
    font-size: 14px;
  }

  .footer-wrapper .service p {
    font-size: 11px;
  }

  .footer-wrapper .arrow {
    font-size: 16px;
  }
}
/* Footer links fix */
.footer-wrapper .footer-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-wrapper .link-box h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-wrapper .link-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-wrapper .link-box ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}
/* ===== CATEGORY ===== */
.footer-wrapper .category-section {
  background: #fff;
  padding: 20px 0;
}

.footer-wrapper .cat-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer-wrapper .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-head a {
  text-decoration: none;
}

.footer-wrapper .tags span {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  border: 0.1px solid #e5e7eb;
  color: #6b7280;
}
/* Flex container */
.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Each column */
.link-box h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.link-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-box ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #555;
}
/* ===== COPYRIGHT ===== */
.footer-wrapper .copyright {
  font-size: 13px;
  color: #777;
  padding: 15px;
  background: #fff;
}







/* ============================================ */
/* TENDER SECTION CSS - COMPLETE DESIGN SYSTEM  */
/* SCOPED: Only applies within .tsr */
/* ============================================ */

.tsr {
  /* ---------- GLOBAL RESETS & VARIABLES ---------- */
  --tsr-primary: #1e5c8b;
  --tsr-primary-dark: #154a6e;
  --tsr-accent: #f4a261;
  --tsr-success: #2a9d8f;
  --tsr-text-dark: #1a2c3e;
  --tsr-text-gray: #5a6e7c;
  --tsr-text-light: #8ba0ae;
  --tsr-border: #e2e8f0;
  --tsr-bg-light: #f8fafc;
  --tsr-white: #ffffff;
  --tsr-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --tsr-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
  --tsr-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
  --tsr-radius-sm: 6px;
  --tsr-radius-md: 10px;
  --tsr-radius-lg: 14px;
      padding-top: 3rem;
}

/* ---------- MAIN SECTION ---------- */
 /* .tsr {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2rem;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background: var(--tsr-bg-light);
} */

@media (max-width: 768px) {
  .tsr .tsr { 
    padding: 1.5rem; 
  }
}

/* ---------- SECTION HEADER ---------- */
.tsr .tsr__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.tsr .wcu__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--tsr-primary);
  background: rgba(30, 92, 139, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
}

.tsr .wcu__badge-diamond {
  width: 8px;
  height: 8px;
  background: var(--tsr-primary);
  transform: rotate(45deg);
  display: inline-block;
  border-radius: 1px;
}

.tsr .tsr__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tsr-text-dark);
  margin: 0.5rem 0 0.75rem 0;
}

.tsr .tsr__title span {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.tsr .tsr__title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--tsr-accent);
  border-radius: 3px;
}

.tsr .tsr__desc {
  color: var(--tsr-text-gray);
  max-width: 500px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.tsr .tsr__btn {
  background: var(--tsr-white);
  border: 1px solid var(--tsr-border);
  padding: 0.7rem 1.3rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--tsr-text-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.tsr .tsr__btn:hover {
  background: var(--tsr-primary);
  border-color: var(--tsr-primary);
  color: white;
  transform: translateY(-1px);
}

/* ---------- TOOLBAR ---------- */
.tsr .tsr__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--tsr-border);
}

.tsr .tsr__count {
  font-size: 0.85rem;
  color: var(--tsr-text-gray);
}

.tsr .tsr__count strong {
  color: var(--tsr-text-dark);
  font-weight: 600;
}

.tsr .tsr__toolbar-right {
  display: flex;
  gap: 0.75rem;
}

.tsr .tsr__btn-sm {
  background: transparent;
  border: none;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--tsr-text-gray);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 30px;
  transition: all 0.2s;
}

.tsr .tsr__btn-sm:hover {
  background: var(--tsr-white);
  color: var(--tsr-primary);
  box-shadow: var(--tsr-shadow-sm);
}

.tsr .tsr__refresh-ico {
  display: inline-flex;
  align-items: center;
}

/* ---------- LAYOUT: SIDEBAR + MAIN ---------- */
.tsr .page-body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .tsr .page-body {
    flex-direction: column;
  }
}

/* ---------- SIDEBAR (FILTERS) ---------- */
.tsr .sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--tsr-white);
  border-radius: var(--tsr-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--tsr-shadow-sm);
  border: 1px solid var(--tsr-border);
  position: sticky;
  top: 130px;
}

@media (max-width: 992px) {
  .tsr .sidebar {
    width: 100%;
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .tsr .filter-group {
    flex: 1;
    min-width: 150px;
  }
}

.tsr .filter-group {
  margin-bottom: 1.25rem;
}

.tsr .filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tsr-text-light);
  margin-bottom: 0.5rem;
}

.tsr .filter-trigger {
  width: 100%;
  background: var(--tsr-white);
  border: 1px solid var(--tsr-border);
  border-radius: var(--tsr-radius-md);
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  color: var(--tsr-text-dark);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.tsr .filter-trigger:hover {
  border-color: var(--tsr-primary);
  background: #fefcf5;
}

.tsr .filter-text {
  color: var(--tsr-text-gray);
}

/* ---------- MAIN CONTENT ---------- */
.tsr .main {
  flex: 1;
  min-width: 0;
}

/* ---------- TENDER CARDS ---------- */
.tsr .tender-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tsr .tender-card {
  background: var(--tsr-white);
  border-radius: var(--tsr-radius-lg);
  border: 1px solid var(--tsr-border);
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: var(--tsr-shadow-sm);
}

.tsr .tender-card:hover {
  box-shadow: var(--tsr-shadow-md);
  border-color: #d4e0ec;
}

@media (max-width: 768px) {
  .tsr .tender-card {
    flex-direction: column;
  }
  .w-px.h-8.sd\/30 {
    border: 1px solid #8256ff;
    margin-top: 1rem;
}
}

/* Card Left Side */
.tsr .card-left {
  flex: 2;
}

.tsr .card-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.tsr .ref-id {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--tsr-text-light);
  background: #f1f5f9;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.tsr .badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tsr .badge-eproc {
  background: #e6f7f4;
  color: #1e6f5c;
}

.tsr .badge-works {
  background: #fff0e6;
  color: #c45c1a;
}

.tsr .card-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.tsr .card-title a {
  color: var(--tsr-text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.tsr .card-title a:hover {
  color: var(--tsr-primary);
  text-decoration: underline;
}

.tsr .card-desc {
  font-size: 0.8rem;
  color: var(--tsr-text-gray);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tsr .card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tsr .org-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--tsr-text-gray);
  background: #f8fafc;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
}

.tsr .org-dot {
  width: 6px;
  height: 6px;
  background: var(--tsr-accent);
  border-radius: 50%;
  display: inline-block;
}

.tsr .org-sep {
  width: 2px;
  height: 12px;
  background: var(--tsr-border);
}

/* Card Right Side */
.tsr .card-right {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tsr .card-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.tsr .icon-btn {
  background: transparent;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  color: var(--tsr-text-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.tsr .icon-btn:hover {
  background: #f1f5f9;
  color: var(--tsr-primary);
}

.tsr .card-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  background: #fafcff;
  padding: 0.6rem;
  border-radius: var(--tsr-radius-md);
  border: 1px solid #eef3fa;
}

.tsr .meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tsr .meta-lbl {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tsr-text-light);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  letter-spacing: 0.3px;
}

.tsr .meta-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tsr-text-dark);
}

.tsr .meta-val.refer {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--tsr-accent);
}

.tsr .status-pill {
  display: inline-block;
  background: #fff3e0;
  color: #c45c1a;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.tsr .card-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.tsr .btn-docs,
.tsr .btn-view {
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tsr .btn-docs {
  background: transparent;
  border: 1px solid var(--tsr-border);
  color: var(--tsr-text-dark);
}

.tsr .btn-docs:hover {
  background: #f1f5f9;
  border-color: var(--tsr-primary);
}

.tsr .btn-view {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  
  border: none;
  color: white;
}

.tsr .btn-view:hover {
  background: var(--tsr-primary-dark);
  transform: translateY(-1px);
}

/* ---------- POPUP MODAL (FILTER DROPDOWN) ---------- */
.tsr .bt-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.tsr .bt-popup.active {
  display: flex;
}

.tsr .bt-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
}

.tsr .bt-popup-wrapper {
  position: relative;
  background: white;
  width: 90%;
  max-width: 480px;
  border-radius: var(--tsr-radius-lg);
  box-shadow: var(--tsr-shadow-lg);
  overflow: hidden;
  animation: popupFadeIn 0.2s ease;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.tsr .bt-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--tsr-border);
  background: white;
}

.tsr .bt-popup-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tsr-text-dark);
  margin: 0;
}

.tsr .bt-popup-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--tsr-text-light);
  transition: color 0.2s;
}

.tsr .bt-popup-close:hover {
  color: #e74c3c;
}

.tsr .bt-popup-search {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f0f2f5;
}

.tsr .bt-popup-search-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--tsr-border);
  border-radius: 40px;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.2s;
}

.tsr .bt-popup-search-input:focus {
  border-color: var(--tsr-primary);
}

.tsr .bt-popup-body {
  max-height: 320px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.tsr .bt-popup-body .option-item {
  padding: 0.6rem 1.25rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--tsr-text-dark);
  transition: background 0.2s;
}

.tsr .bt-popup-body .option-item:hover {
  background: #f8fafc;
}

.tsr .bt-popup-body .option-item.selected {
  background: #eef2ff;
  color: var(--tsr-primary);
  font-weight: 500;
}

.tsr .bt-popup-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--tsr-border);
  background: #fefefe;
}

.tsr .bt-popup-reset,
.tsr .bt-popup-apply {
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tsr .bt-popup-reset {
  background: transparent;
  border: 1px solid var(--tsr-border);
  color: var(--tsr-text-gray);
}

.tsr .bt-popup-reset:hover {
  background: #f1f5f9;
}

.tsr .bt-popup-apply {
  background: var(--tsr-primary);
  border: none;
  color: white;
}

.tsr .bt-popup-apply:hover {
  background: var(--tsr-primary-dark);
}

/* ---------- DOWNLOAD POPUP (TENDER DOCS) ---------- */
.tsr .bt-download-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
}

.tsr .bt-download-popup.active {
  display: flex;
}

.tsr .bt-download-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.tsr .bt-download-modal {
  position: relative;
  background: white;
  width: 90%;
  max-width: 560px;
  border-radius: var(--tsr-radius-lg);
  box-shadow: var(--tsr-shadow-lg);
  overflow: hidden;
  animation: popupFadeIn 0.25s ease;
}

.tsr .bt-download-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, white 100%);
  border-bottom: 1px solid var(--tsr-border);
}

.tsr .bt-download-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tsr-text-dark);
  margin: 0 0 0.25rem 0;
}

.tsr .bt-download-header p {
  font-size: 0.8rem;
  color: var(--tsr-text-gray);
  margin: 0;
}

.tsr .bt-download-close {
  background: #f1f5f9;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--tsr-text-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.tsr .bt-download-close:hover {
  background: #e2e8f0;
  color: #e74c3c;
}

.tsr .bt-download-body {
  padding: 1.5rem;
}

.tsr .bt-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 560px) {
  .tsr .bt-form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.tsr .bt-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tsr .bt-form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tsr-text-light);
  letter-spacing: 0.5px;
}

.tsr .bt-form-group input {
  padding: 0.7rem 1rem;
  border: 1px solid var(--tsr-border);
  border-radius: var(--tsr-radius-md);
  font-size: 0.85rem;
  transition: border 0.2s;
  outline: none;
}

.tsr .bt-form-group input:focus {
  border-color: var(--tsr-primary);
}

.tsr .bt-submit-btn {
  width: 100%;
  background: var(--tsr-primary);
  border: none;
  padding: 0.9rem;
  border-radius: var(--tsr-radius-md);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.tsr .bt-submit-btn:hover {
  background: var(--tsr-primary-dark);
}

/* ---------- UTILITIES ---------- */
.tsr .icon-btn svg,
.tsr .tsr__btn svg,
.tsr .btn-docs svg,
.tsr .meta-lbl svg {
  flex-shrink: 0;
}

/* Scrollbar styling */
.tsr .bt-popup-body::-webkit-scrollbar {
  width: 5px;
}

.tsr .bt-popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.tsr .bt-popup-body::-webkit-scrollbar-thumb {
  background: var(--tsr-border);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .tsr .card-meta-grid {
    grid-template-columns: 1fr;
  }
  .tsr .card-right {
    min-width: auto;
  }
  .tsr .tsr__head {
    flex-direction: column;
    align-items: stretch;
  }
  .tsr .tsr__btn {
    justify-content: center;
  }
}

/* ===== POPUP OVERLAY ===== */
.tsr .dynamic-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.tsr .dynamic-popup-overlay.active {
  display: flex;
}

/* ===== POPUP BOX ===== */
.tsr .dynamic-popup {
  width: 580px;
  max-width: 90%;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  animation: popupSlide 0.2s ease-out;
}

@keyframes popupSlide {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== HEADER ===== */
.tsr .popup-header {
   background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
    color: #fff;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tsr .popup-header h3 {
  font-size: 26px;
  font-weight: 700;
}

.tsr .close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
}

.tsr .close-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: rotate(90deg);
}

/* ===== SEARCH ===== */
.tsr .popup-search-wrap {
  padding: 18px 24px;
  border-bottom: 1px solid #edf2f7;
}

.tsr .popup-search-wrap input {
  width: 100%;
  height: 48px;
  border: 1px solid #e2e8f0;
  border-radius: 40px;
  padding: 0 20px;
  font-size: 15px;
}

.tsr .popup-search-wrap input:focus {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
 color: #fff;
  box-shadow: 0 0 0 3px rgba(69,191,212,0.15);
  outline: none;
}

/* ===== BODY ===== */
.tsr .popup-body {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  max-height: 360px;
  overflow-y: auto;
}

/* OPTIONS */
.tsr .popup-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 0;
  border-radius: 10px;
}

.tsr .popup-option:hover {
  background: #f8fafc;
  padding-left: 6px;
}

.tsr .popup-option input {
  width: 18px;
  height: 18px;
  accent-color:  #0a4ea3 ;
  
}

/* ===== ADVANCED ===== */
.tsr .advanced-section {
  grid-column: span 2;
}

.tsr .advanced-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 18px 0 12px;
  border-left: 3px solid #45bfd4;
  padding-left: 10px;
}

.tsr .advanced-section label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.tsr .range-inputs {
  display: flex;
  gap: 12px;
}

.tsr .range-inputs input {
  flex: 1;
  padding: 10px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
}

/* ===== FOOTER ===== */
.tsr .popup-footer {
  padding: 18px 24px;
  border-top: 1px solid #edf2f7;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.tsr .reset-btn {
  border: 1px solid #cbd5e1;
  padding: 10px 20px;
  border-radius: 40px;
  background: transparent;
  cursor: pointer;
}

.tsr .done-btn {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
}

.tsr .done-btn:hover {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  
}

/* ===== EMPTY ===== */
.tsr .empty-message {
  grid-column: span 2;
  text-align: center;
  padding: 30px;
  color: #8ba0ae;
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
  .tsr .popup-body {
    grid-template-columns: 1fr;
  }

  .tsr .advanced-section {
    grid-column: span 1;
  }
}

/* ================= */

/* Overlay */
.tsr .custom-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

/* Modal */
.tsr .custom-modal-box {
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: popupFade .3s ease;
}

/* Header */
.tsr .modal-header {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
 
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.tsr .modal-header h2 {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.tsr .modal-header p {
  font-size: 14px;
  color: #eafaf8;
  line-height: 1.5;
}

/* Close Button */
.tsr .close-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .3s;
}

.tsr .close-btn:hover {
  background: rgba(255,255,255,.28);
}

/* Body */
.tsr .modal-body {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Form Group */
.tsr .form-group {
  width: 100%;
}

.tsr .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.tsr .form-group input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: .3s;
}

.tsr .form-group input:focus {
  border-color: #2eb7ad;
  box-shadow: 0 0 0 4px rgba(46,183,173,0.12);
}

/* Submit Button */
.tsr .submit-btn {
  width: calc(100% - 60px);
  margin: 0 30px 30px;
  height: 54px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.tsr .submit-btn:hover {
  background: #095b5e;
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tsr .modal-body {
    grid-template-columns: 1fr;
  }

  .tsr .modal-header h2 {
    font-size: 24px;
  }

  .tsr .submit-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
  }

  .tsr .modal-body {
    padding: 20px;
  }

  .tsr .modal-header {
    padding: 22px 20px;
  }
}

.float-icons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 999;
    }

    .float-icons a {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 28px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: 0.3s;
    }

    /* First icon = WhatsApp */
    .float-icons a:nth-child(1) {
      background: #25D366;
    }

    /* Second icon = Chat */
    .float-icons a:nth-child(2) {
      background: linear-gradient(45deg, #6a11cb, #2575fc);
    }

    .float-icons a:hover {
      transform: scale(1.1);
    }

/* =========================
   City
========================= */    
@media (max-width: 576px) {
    .cat-search-bar input {
      font-size: 13px;
    }
    .cat-search-bar button {
      padding: 8px 14px;
      font-size: 13px;
    }
  }
    @media (max-width: 576px) {
      .tender-hero h1 {
        font-size: 22px;
      }

      .tender-hero p {
        font-size: 14px;
      }
    }

    .city-card2 {
      background: #fff;
      border: 1.5px solid #e8edf2;
      border-radius: 14px;
      padding: 20px 20px 16px;
      cursor: pointer;
      transition: box-shadow 0.2s;
    }

    /* Hover border gradient trick */
    .city-card2:hover {
      border: none;
      outline: none;
      background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%) border-box;
      border: 1.5px solid transparent;
      box-shadow: 0 2px 16px rgba(10, 78, 163, 0.12);
    }

    /* Hover title gradient text */
    .city-card2:hover .city-name2 {
      background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .city-name2 {
      font-size: 15px;
      font-weight: 700;
      color: #0d1b2e;
      margin: 0 0 10px;
    }

    .city-badge2 {
      display: inline-block;
      background: #f1f3f5;
      color: #444;
      font-size: 13px;
      font-weight: 500;
      border-radius: 20px;
      padding: 4px 12px;
      margin-bottom: 14px;
    }

    .city-footer2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #f0f0f0;
      padding-top: 12px;
    }

    .city-footer2 span {
      font-size: 13px;
      color: #5a6a7a;
    }

    /* Arrow gradient */
    .city-arrow2 {
      font-size: 16px;
      font-weight: 600;
      background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .breadcrumb-bar {
        padding-top: 70px;
    }

    /* Mobile ke liye (max-width 768px) */
    @media (max-width: 768px) {
        .breadcrumb-bar {
            padding-top: 0;
        }
    }
    .breadcrumb-bar {
        padding-top: 70px;
    }

    /* Mobile ke liye (max-width 768px) */
    @media (max-width: 768px) {
        .breadcrumb-bar {
            padding-top: 0;
        }
    }
    

    /* tender detail */

    .tdh-wrap {
      background: #fff;
     padding: 16px 0;
      border-bottom: 1px solid #eee
    }

    .tdh-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }


    .tdh-badges {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tdh-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      border: 1.5px solid
    }

    .bdg-gem {
      background: #e8f5e9;
      color: #2e7d32;
      border-color: #2e7d32
    }

    .bdg-active {
      background: #fff;
      color: #1565c0;
      border-color: #1565c0
    }

    .bdg-service {
      background: #fff;
      color: #555;
      border-color: #bbb
    }

    .tdh-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .tdh-doc-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      white-space: nowrap;
    }

    .tdh-doc-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 9px 18px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer
    }

    .tdh-title {
      font-size: 17px;
      font-weight: 700;
      color: #0d1b2e;
      margin: 0 0 10px;
    }


    .tdh-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .tdh-org {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #333
    }

    .tdh-actions-mobile { display: none; }
    .tdh-actions-pc { display: flex; }

    .tdh-org-icon {
      width: 28px;
      height: 28px;
      background: #f0f4f8;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .tdh-id {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px
    }

    .tdh-id-badge {
      background: #e8f0fe;
      color: #1565c0;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px
    }

    .tdh-id span {
      color: #0d1b2e;
      font-weight: 600
    }

    /* Mobile */
    @media(max-width:576px) {
      .tdh-actions-pc { display: none !important; }
      .tdh-actions-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        width: 100%;
      }
      .tdh-wrap {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
      }
      .tdh-actions-mobile .tdh-doc-btn {
        flex: 1;
        justify-content: center;
      }

      .tdh-badges {
        width: auto;
      }

       .tdh-title { font-size: 15px; }

       .tdh-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

      .tdh-actions {
        width: auto;
        flex: none;
      }

      .tdh-doc-btn {
        flex: none;
      }

      .tdh-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .tdh-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
      }

      .tdh-doc-btn {
        flex: 1;
        justify-content: center;
      }

      .tdh-title {
        font-size: 15px;
      }

      .tdh-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }


    /* ===== TENDER DETAIL PAGE ===== */
    .tdp {
      background: #f4f6f9;
      padding: 20px 0;
    }

    /* Stats */
    .tdp-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }

    .tdp-stat {
      background: #fff;
      border: 1px solid #e8edf2;
      border-radius: 14px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tdp-stat-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .icon-green {
      background: #e8f5e9;
    }

    .icon-blue {
      background: #e3f2fd;
    }

    .icon-purple {
      background: #f3e5f5;
    }

    .tdp-stat-lbl {
      font-size: 11px;
      color: #999;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .tdp-stat-val {
      font-size: 16px;
      font-weight: 700;
      color: #0d1b2e;
    }

    .tdp-stat-sub {
      font-size: 12px;
      color: #1e88d8;
      font-weight: 500;
      margin-top: 3px;
    }

    .tdp-stat-sub.orange {
      color: #f97316;
    }

    /* Layout */
    .tdp-layout {
      display: grid;
      grid-template-columns: 1fr 310px;
      gap: 16px;
      align-items: start;
    }

    /* Main card */
    .tdp-main {
      background: #fff;
      border: 1px solid #e8edf2;
      border-radius: 14px;
      overflow: hidden;
    }

    .tdp-tabs {
      display: flex;
      border-bottom: 2px solid #f0f0f0;
      padding: 0 4px;
    }

    .tdp-tab {
      padding: 14px 22px;
      font-size: 12px;
      font-weight: 700;
      color: #999;
      cursor: pointer;
      border: none;
      background: none;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      letter-spacing: .5px;
      text-transform: uppercase;
      transition: color .2s;
    }

    .tdp-tab.active {
      color: #1565c0;
      border-bottom-color: #1565c0;
    }

    .tdp-tab-content {
      padding: 24px;
    }

    .tdp-overview-heading {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 17px;
      font-weight: 700;
      color: #0d1b2e;
      margin-bottom: 16px;
    }

    .tdp-desc-box {
      background: #f8fafc;
      border: 1px solid #e4eaf0;
      border-radius: 10px;
      padding: 18px;
      font-size: 13.5px;
      color: #444;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .tdp-section-title {
      font-size: 16px;
      font-weight: 700;
      color: #0d1b2e;
      margin-bottom: 14px;
    }

    .tdp-info-table {
      width: 100%;
      border-collapse: collapse;
    }

    .tdp-info-table tr {
      border-bottom: 1px solid #f0f4f8;
    }

    .tdp-info-table tr:last-child {
      border-bottom: none;
    }

    .tdp-info-table td {
      padding: 11px 6px;
      font-size: 13px;
      vertical-align: top;
    }

    .tdp-info-table .lbl {
      font-size: 10.5px;
      font-weight: 700;
      color: #999;
      text-transform: uppercase;
      letter-spacing: .4px;
      width: 140px;
      padding-top: 13px;
    }

    .tdp-info-table .val {
      color: #0d1b2e;
      font-weight: 500;
    }

    .tdp-info-table .lbl2 {
      font-size: 10.5px;
      font-weight: 700;
      color: #999;
      text-transform: uppercase;
      letter-spacing: .4px;
      width: 160px;
      padding-top: 13px;
      padding-left: 24px;
    }

    .tdp-info-table .val2 {
      color: #0d1b2e;
      font-weight: 500;
    }

    /* Sidebar */
    .tdp-sidebar {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .tdp-scard {
      background: #fff;
      border: 1px solid #e8edf2;
      border-radius: 14px;
      padding: 18px;
    }

    .tdp-scard-title {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 700;
      color: #666;
      text-transform: uppercase;
      letter-spacing: .6px;
      margin-bottom: 16px;
    }

    .tl-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }

    .tl-item:last-child {
      margin-bottom: 0;
    }

    .tl-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #ddd;
      background: #fff;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .tl-dot.on {
      background: #1565c0;
      border-color: #1565c0;
    }

    .tl-lbl {
      font-size: 10.5px;
      color: #999;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .4px;
      margin-bottom: 2px;
    }

    .tl-date {
      font-size: 14px;
      font-weight: 700;
      color: #0d1b2e;
    }

    .tdp-authority {
      background: #0d1b2e;
      border-radius: 14px;
      padding: 18px;
    }

    .tdp-authority .tdp-scard-title {
      color: #8899aa;
    }

    .auth-lbl {
      font-size: 10.5px;
      color: #7a8fa0;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .4px;
      margin-bottom: 4px;
    }

    .auth-val {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 14px;
      line-height: 1.4;
    }

    .auth-tag {
      display: inline-block;
      background: #1a2d40;
      color: #8899aa;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 6px;
      margin-top: 2px;
    }

    .fees-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid #f0f4f8;
      font-size: 13px;
    }

    .fees-row:last-child {
      border-bottom: none;
    }

    .fees-lbl {
      font-size: 11px;
      color: #999;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: .3px;
    }

    .fees-val {
      font-weight: 700;
      color: #0d1b2e;
    }

    /* Mobile */
    @media (max-width: 768px) {
      .tdp-stats {
        grid-template-columns: 1fr;
      }

      .tdp-layout {
        grid-template-columns: 1fr;
      }

      .tdp-tab {
        padding: 12px 14px;
        font-size: 11px;
      }

      .tdp-info-table .lbl2,
      .tdp-info-table .val2 {
        padding-left: 0;
      }

      .tdp-info-table tr {
        display: flex;
        flex-wrap: wrap;
      }

      .tdp-info-table td {
        width: 50%;
      }
    }


    /* dashboard */

    :root {
      --grad: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      --blue-dark: #0a4ea3;
      --blue-mid: #1e88d8;
      --blue-light: #4ccbea;
      --bg: #f0f4fa;
      --card-bg: #ffffff;
      --sidebar-bg: #ffffff;
      --text: #1a2340;
      --muted: #7a8aab;
      --border: #e2e8f5;
      --pill-bg: #eaf2ff;
      --pill-text: #1e88d8;
      --success: #0fc47a;
      --warning: #f59e0b;
      --danger: #ef4444;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #fff;
      border-bottom: 1px solid #ececec;
      border-top: 1px solid #ececec;
    }
    .breadcrumb-bar nav {
      display: flex; align-items: center; gap: 6px;
      font-size: 13px; padding: 8px 0;
    }
    .breadcrumb-bar a {
      text-decoration: none; font-weight: 500;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .breadcrumb-bar span { color: #888; }

    /* ── MAIN LAYOUT ── */
    .dashboard-wrapper {
      max-width: 1280px;
      margin: 32px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 24px;
      align-items: start;
    }

    /* ── SIDEBAR ── */
    .profile-sidebar {
      background: var(--sidebar-bg);
      border-radius: 16px;
      border: 1px solid var(--border);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(10,78,163,0.07);
      position: sticky;
      top: 88px;
    }

    .sidebar-header {
      background: var(--grad);
      padding: 28px 24px 20px;
      text-align: center;
      position: relative;
    }
    .avatar-wrap {
      width: 72px; height: 72px;
      background: rgba(255,255,255,0.25);
      border: 3px solid rgba(255,255,255,0.6);
      border-radius: 50%;
      margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 800; color: #fff;
    }
    .sidebar-header h4 {
      font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 2px;
    }
    .sidebar-header p {
      font-size: 12px; color: rgba(255,255,255,0.8);
    }
    .plan-badge {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(255,255,255,0.4);
      color: #fff;
      font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: 20px;
      margin-top: 8px;
    }

    .sidebar-body { padding: 0; }

    .info-block {
      padding: 18px 20px;
      border-bottom: 1px solid var(--border);
    }
    .info-block:last-child { border-bottom: none; }
    .info-block-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 14px;
    }

    .info-row {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    .info-row:last-child { margin-bottom: 0; }
    .info-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      background: var(--pill-bg);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--blue-mid);
      font-size: 13px;
    }
    .info-label { font-size: 11px; color: var(--muted); margin-bottom: 1px; }
    .info-val { font-size: 13px; font-weight: 600; color: var(--text); }

    /* client info tags */
    .tag-group { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
    .tag {
      background: var(--pill-bg);
      color: var(--pill-text);
      border-radius: 6px;
      font-size: 11px; font-weight: 600;
      padding: 4px 10px;
      cursor: default;
    }
    .tag.dept { background: #f0fdf4; color: #16a34a; }
    .tag.city { background: #fef3c7; color: #b45309; }
    .tag.state { background: #fdf4ff; color: #9333ea; }
    .tag-empty {
      font-size: 12px; color: var(--muted); font-style: italic;
    }

    .edit-profile-btn {
      display: block; width: calc(100% - 32px);
      margin: 16px 16px 16px;
      background: var(--grad);
      color: #fff; border: none; border-radius: 8px;
      padding: 10px; font-size: 13px; font-weight: 600;
      cursor: pointer; text-align: center;
      transition: opacity .2s;
    }
    .edit-profile-btn:hover { opacity: 0.88; }

    /* ── MAIN CONTENT ── */
    .dashboard-main { min-width: 0; }

    .dash-welcome {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
    }
    .dash-welcome h2 {
      font-size: 22px; font-weight: 800; color: var(--text);
    }
    .dash-welcome p { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .dash-date {
      font-size: 12px; color: var(--muted);
      background: #fff; border: 1px solid var(--border);
      border-radius: 8px; padding: 6px 14px;
    }

    /* ── STATS CARDS ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }
    .stat-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 18px 14px;
      box-shadow: 0 2px 12px rgba(10,78,163,0.05);
      cursor: pointer;
      transition: box-shadow .2s, transform .2s;
      position: relative; overflow: hidden;
    }
    .stat-card:hover { box-shadow: 0 6px 24px rgba(10,78,163,0.12); transform: translateY(-2px); }
    .stat-card.active-card { border-color: var(--blue-mid); }
    .stat-card .sc-label {
      font-size: 11px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: .06em;
      margin-bottom: 8px;
    }
    .stat-card .sc-count {
      font-size: 32px; font-weight: 800;
      background: var(--grad); -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; background-clip: text;
      line-height: 1;
    }
    .stat-card .sc-sub {
      font-size: 11px; color: var(--muted); margin-top: 4px;
    }
    .stat-card .sc-icon {
      position: absolute; right: 16px; top: 16px;
      font-size: 22px; opacity: .1;
      background: var(--grad); -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-card.active-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--grad);
    }

    /* ── TENDER TABS ── */
    .tender-section-head {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px; flex-wrap: wrap; gap: 10px;
    }
    .tender-section-head h5 {
      font-size: 15px; font-weight: 700; color: var(--text);
    }
    .tsr__tabs {
      display: flex; align-items: center;
      background: #f1f3f5; border-radius: 8px;
      padding: 3px; gap: 2px;
    }
    .tsr__tab {
      background: transparent; border: none; border-radius: 6px;
      padding: 6px 16px; font-size: 12px; font-weight: 600;
      color: #555; cursor: pointer;
      transition: background .2s, color .2s;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .tsr__tab.active {
      background: var(--grad); color: #fff;
    }
    .tsr__tab:hover:not(.active) { background: #e2e6ea; color: #333; }

    /* ── TENDER CARDS ── */
    .tender-list { display: flex; flex-direction: column; gap: 12px; }

    .tender-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 16px 18px;
      display: flex; gap: 16px;
      box-shadow: 0 2px 10px rgba(10,78,163,0.04);
      transition: box-shadow .2s, border-color .2s;
    }
    .tender-card:hover {
      box-shadow: 0 6px 24px rgba(10,78,163,0.1);
      border-color: #c0d4ef;
    }

    .card-left { flex: 1; min-width: 0; }
    .card-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; min-width: 200px; }

    .card-meta-top {
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 6px;
    }
    .ref-id {
      font-family: 'DM Mono', monospace;
      font-size: 11px; color: var(--muted);
      background: #f4f6fa; border-radius: 5px;
      padding: 2px 7px;
    }
    .badge {
      font-size: 10px; font-weight: 700;
      padding: 2px 7px; border-radius: 5px;
    }
    .badge-eproc { background: #eaf2ff; color: var(--blue-mid); }
    .badge-works { background: #f0fdf4; color: #16a34a; }

    .card-title {
      font-size: 13px; font-weight: 700; color: var(--text);
      margin-bottom: 4px; line-height: 1.4;
    }
    .card-title a { color: inherit; text-decoration: none; }
    .card-title a:hover { color: var(--blue-mid); }

    .card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }

    .card-footer-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .org-chip {
      display: flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 600; color: #555;
      background: #f4f6fa; border-radius: 6px; padding: 3px 9px;
    }
    .org-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-mid); }

    .card-actions { display: flex; gap: 6px; justify-content: flex-end; }
    .icon-btn {
      width: 30px; height: 30px; background: #f4f6fa;
      border: 1px solid var(--border); border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--muted);
      transition: background .15s, color .15s;
    }
    .icon-btn:hover { background: var(--pill-bg); color: var(--blue-mid); }
    .icon-btn.bookmarked { background: var(--pill-bg); color: var(--blue-mid); }

    .card-meta-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .meta-item {}
    .meta-lbl {
      font-size: 10px; color: var(--muted);
      text-transform: uppercase; letter-spacing: .05em;
      font-weight: 600; margin-bottom: 2px;
      display: flex; align-items: center; gap: 4px;
    }
    .meta-val { font-size: 12px; font-weight: 700; color: var(--text); }
    .meta-val.refer { font-size: 10px; color: var(--warning); }

    .status-pill {
      display: inline-block;
      background: #fff7ed;
      color: var(--warning);
      font-size: 10px; font-weight: 700;
      padding: 2px 8px; border-radius: 20px;
      border: 1px solid #fde68a;
    }
    .status-pill.urgent { background: #fef2f2; color: var(--danger); border-color: #fca5a5; }
    .status-pill.safe { background: #f0fdf4; color: var(--success); border-color: #86efac; }
    .status-pill.done { background: #f4f6fa; color: var(--muted); border-color: var(--border); }

    .card-btns { display: flex; gap: 8px; }
    .btn-docs {
      flex: 1; background: #f4f6fa; border: 1px solid var(--border);
      border-radius: 7px; padding: 7px 10px; font-size: 11px;
      font-weight: 600; color: #555; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 4px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: background .15s;
    }
    .btn-docs:hover { background: var(--pill-bg); color: var(--blue-mid); }

    .btn-view {
      flex: 1; background: var(--grad); border: none;
      border-radius: 7px; padding: 7px 10px;
      font-size: 11px; font-weight: 700; color: #fff;
      cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
      transition: opacity .15s;
    }
    .btn-view:hover { opacity: .88; }

    /* result tag on tender-result */
    .result-tag {
      display: inline-block;
      font-size: 10px; font-weight: 700;
      padding: 2px 8px; border-radius: 20px;
    }
    .result-won { background: #f0fdf4; color: var(--success); border: 1px solid #86efac; }
    .result-lost { background: #fef2f2; color: var(--danger); border: 1px solid #fca5a5; }
    .result-pending { background: #fff7ed; color: var(--warning); border: 1px solid #fde68a; }

    /* ── FOOTER ── */
    .footer-wrapper { border-top: 1px solid #e0e0e0; margin-top: 60px; }
    .main-footer { padding: 50px 0 30px; background: #fff; }
    .main-footer h5.logo { margin-bottom: 14px; }
    .main-footer .desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
    .main-footer .info { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
    .main-footer .info i { margin-right: 8px; color: var(--blue-mid); }
    .main-footer .social { display: flex; gap: 8px; margin-top: 14px; }
    .main-footer .social span {
      width: 30px; height: 30px; background: var(--pill-bg);
      border-radius: 7px; display: flex; align-items: center;
      justify-content: center; font-size: 12px; font-weight: 700;
      color: var(--blue-mid); cursor: pointer;
    }
    .main-footer h6 { font-size: 11px; font-weight: 700; color: #999; letter-spacing: .08em; margin-bottom: 14px; }
    .main-footer ul { list-style: none; padding: 0; }
    .main-footer ul li { font-size: 13px; color: var(--muted); margin-bottom: 8px; cursor: pointer; }
    .main-footer ul li:hover { color: var(--blue-mid); }
    .service-cards { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .service {
      flex: 1; min-width: 140px; border-radius: 12px; padding: 12px 14px;
      display: flex; align-items: center; gap: 10px; cursor: pointer;
    }
    .service.blue { background: #eaf2ff; }
    .service.purple { background: #f5f3ff; }
    .service.green { background: #f0fdf4; }
    .service .icon-box { font-size: 18px; }
    .service .content strong { font-size: 12px; font-weight: 700; display: block; }
    .service .content p { font-size: 10px; color: var(--muted); margin: 0; }
    .service .arrow { margin-left: auto; color: var(--muted); }
    .category-section { background: #f8fafd; border-top: 1px solid var(--border); padding: 24px 0 16px; }
    .cat-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
    .cat-head h6 { font-size: 13px; font-weight: 700; color: var(--text); }
    .cat-head a { font-size: 12px; color: var(--blue-mid); text-decoration: none; }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tags span {
      background: #fff; border: 1px solid var(--border);
      border-radius: 6px; padding: 4px 12px;
      font-size: 11px; font-weight: 600; color: var(--muted);
      cursor: pointer;
    }
    .tags span:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
    .copyright { text-align: center; font-size: 12px; color: var(--muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }

    /* float icons */
    .float-icons {
      position: fixed; bottom: 28px; right: 20px;
      display: flex; flex-direction: column; gap: 10px; z-index: 99;
    }
    .float-icons a {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--grad); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; text-decoration: none;
      box-shadow: 0 4px 16px rgba(10,78,163,0.25);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .dashboard-wrapper { grid-template-columns: 1fr; }
      .profile-sidebar { position: static; }
      .stats-row { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .stats-row { grid-template-columns: 1fr; }
      .card-right { min-width: 0; }
      .tender-card { flex-direction: column; }
      .card-meta-grid { grid-template-columns: 1fr 1fr; }
    }
    .breadcrumb-bar {
        padding-top: 70px;
    }

    /* Mobile ke liye (max-width 768px) */
    @media (max-width: 768px) {
        .breadcrumb-bar {
            padding-top: 0;
        }
    }

    /* index */
    .tender-search {
          padding-top: 100px;
      }

      /* Mobile ke liye (max-width 768px) */
      @media (max-width: 768px) {
          .tender-search {
              padding-top: 60px;
          }
      }

      /* ═══════════════════════════════
   TENDER PAGINATION
═══════════════════════════════ */
.tender-pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 0 8px;
    width: 100%;
}

.tender-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

/* Each item */
.tp-item {}

/* Link / Span */
.tp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 6px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.18s ease;
    line-height: 1;
    user-select: none;
}

/* Hover */
.tp-item:not(.disabled):not(.active) .tp-link:hover {
    background: #f0f4ff;
    border-color: #4f6ef7;
    color: #4f6ef7;
}

/* Active page */
.tp-item.active .tp-link {
    background: #4f6ef7;
    border-color: #4f6ef7;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(79, 110, 247, 0.35);
    cursor: default;
}

/* Disabled */
.tp-item.disabled .tp-link {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #cbd5e1;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dots */
.tp-dots {
    border: none;
    background: transparent;
    color: #94a3b8;
    letter-spacing: 1px;
    cursor: default;
    min-width: 28px;
}

/* Page info text */
.tp-info {
    font-size: 12.5px;
    color: #64748b;
}

.tp-info strong {
    color: #374151;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 480px) {
    .tp-link {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        border-radius: 6px;
    }

    .tender-pagination {
        gap: 3px;
    }
}
/* SweetAlert2 ko sabse upar rakho */
.swal2-container {
    z-index: 999999 !important;
}

.swal2-overlay {
    z-index: 999998 !important;
}
/* CSS me */
.swal-on-top {
    z-index: 999999 !important;
}


/* tender */


     .tsr__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.tsr__tabs {
  display: flex;
  align-items: center;
  background: #f1f3f5;
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}

.tsr__tab {
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.tsr__tab.active {
  background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
  color: #fff;
}

.tsr__tab:hover:not(.active) {
  background: #e2e6ea;
  color: #333;
}

@media (max-width: 576px) {
  .tsr__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
    .footer-wrapper {
      border-top: 1px solid #e0e0e0;
      margin-top: 40px;
    }
    .tsr__head {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1.5px solid #d0d0d0;
      border-radius: 10px;
      padding: 5px 5px 5px 14px;
      gap: 8px;
      transition: border-color 0.2s;
      /* Gradient shadow */
      box-shadow: 0 4px 24px rgba(10, 78, 163, 0.13), 
                  0 1.5px 8px rgba(76, 203, 234, 0.13);
    }

    .tsr__head:focus-within {
      border-color: #1e88d8;
      box-shadow: 0 4px 24px rgba(10, 78, 163, 0.18), 
                  0 1.5px 8px rgba(76, 203, 234, 0.18);
    }

    .tsr__head:focus-within {
      border-color: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      ;
      box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    }

    .search-icon {
      flex-shrink: 0;
      color: #aaa;
    }

    .input-search-tndr {
      flex: 1 !important;
      border: none !important;
      outline: none !important;
      box-shadow: none !important;
      background: transparent !important;
      font-size: 15px !important;
      color: #333 !important;
      min-width: 0 !important;
      border-radius: 0 !important;
      padding: 6px 0 !important;
    }

    .input-search-tndr::placeholder {
      color: #aaa;
    }

    .btn-search-tndr {
      background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%);
      color: #fff;
      border: none;
      border-radius: 7px;
      padding: 9px 26px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
      flex-shrink: 0;
      transition: opacity 0.2s;
    }

    .btn-search-tndr:hover {
      opacity: 0.9;
    }


  
    /* Mobile fix */
    @media (max-width: 576px) {
       .tsr__head {
          flex-wrap: wrap;
          border-radius: 10px;
          padding: 8px 10px;
          gap: 6px;
          background: #fff !important;
          border: 1.5px solid #d0d0d0 !important;
          /* Gradient shadow mobile */
          box-shadow: 0 4px 24px rgba(10, 78, 163, 0.13), 
                      0 1.5px 8px rgba(76, 203, 234, 0.13) !important;
        }

        .tsr__head:focus-within {
        border-color: #1e88d8 !important;
        box-shadow: 0 4px 24px rgba(10, 78, 163, 0.18), 
                    0 1.5px 8px rgba(76, 203, 234, 0.18) !important;
      }
      .tsr__head .search-icon {
        order: 1;
        flex-shrink: 0;
      }

      .tsr__head .input-search-tndr {
    order: 2;
    flex: 1 !important;
    font-size: 14px !important;
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 4px 0 !important;
    border-radius: 0 !important;
    color: #333 !important;
  }

.tsr__head .btn-search-tndr {
    order: 3;
    width: 100%;
    border-radius: 7px;
    padding: 10px;
    font-size: 14px;
    margin-top: 4px;
    /* Same gradient button */
    background: linear-gradient(90deg, #0a4ea3 0%, #1e88d8 40%, #4ccbea 100%) !important;
    color: #fff !important;
    border: none !important;
  }
    }

.btn-view:hover{
  color:#fff !important;
}    