:root {
--color-primary: #0F2746;
--color-secondary: #E6CD79;
--color-goldan: #9E8A32;
--color-default: #2b2a29;
--color-warning: #8e6737;
--cz-primary-rgb: #FE696A;
}
 body, html{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.list-scroll{
  overflow-y: scroll;
  overflow-x: hidden;
  transition: var(--color-primary);
  height: 130px;
}
.accordion-button{color: var(--color-primary);}
#spinner {opacity: 0;visibility: hidden;transition: opacity .5s ease-out, visibility 0s linear .5s;z-index: 99999;}
#spinner.show {transition: opacity .5s ease-out, visibility 0s linear 0s;visibility: visible;opacity: 1;}
.bg-primary {background-color: var(--color-primary) !important;}
.text-primary{color: var(--color-primary) !important;}
.bg-success {
  background-color: var(--color-secondary) !important;
}
.text-warning{color: var(--color-warning) !important;}
.btn-primary {
    background-color: var(--color-primary);   /* Your new color */
    border-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.bg-goldan{
  background: var(--color-goldan);
}
.text-goldan{
  color: var(--color-goldan);
}
.btn-goldan, .btn-goldan:hover,.btn-goldan:active,.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background: var(--color-goldan);
  color: var(--color-primary);
}
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: var(--color-primary) !important;  /* Your active color */
    border-color: var(--color-primary) !important;
    color: #fff !important;
    box-shadow: none;
}

.text-success{color:var(--color-secondary) !important; }
.bg-light{background: #eae9e9 !important;}
.bg-inquiry-gradiant{background: linear-gradient(135deg, #67bc45, #feb47b);}
.btn-success {
    color: #fff;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}
.btn-check:checked+.btn-success, .btn-check:active+.btn-success, .btn-success:active, .btn-success.active, .show>.btn-success.dropdown-toggle {
    color: #fff !important;
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}
.bg-secondary{background-color: var(--color-primary) !important;}
.btn-primary {color: #fff;background-color: var(--color-primary);border-color: var(--color-primary); }
.bg-footer{background: #072034;}
.back-to-top {position: fixed;right: 30px;bottom: 30px;display: flex;width: 45px;height: 45px;align-items: center;justify-content: center;
transition: 0.5s;z-index: 14;}
.sticky-top { position: fixed;background: var(--bs-white);width: 100%;z-index: 10 !important;}
.hero{
  background: linear-gradient(140.03deg, #E59327 18.18%, rgb(78 76 77 / 80%) 98.97%);
}
.text-bottom-border{height: 3px; width:60px;background: var(--color-primary);}
.ui-menu .ui-menu-item{
padding-bottom: 20px !important;
}
.ui-menu .ui-menu-item-wrapper{
position: ABSOLUTE !important;
WIDTH: 100% !important;
padding: 8px 1em 8px .4em !important;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--color-secondary)  !important;
    background:var(--color-secondary)  !important;
    color: white !important;
}

.ui-state-active{
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
}
.search-type-sm {
  max-width: 190px;   /* adjust: 150 / 160 / 180 */
  flex: 0 0 190px;
}
/*.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, .9);
    font-weight: 600;
    border-bottom: 3px solid var(--color-primary) !important;
}*/

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 3px solid var(--color-primary) !important;
}
.dropdown-item.active, .dropdown-item:active{
    background: var(--color-primary);
}

.service-item {
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.service-item .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #E59327, #69BD48);
    border-radius: 50%;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-item p {
    font-size: 0.95rem;
}

/* hero Section */
.hero-tender {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background: #9E8A32;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /*background: url('/asset/img/hero-img.jpeg') center/cover no-repeat;*/
  /*background: linear-gradient(258deg, var(--color-warning), #cdd9ea);*/
  background: #FFD700;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(223 207 207 / 80%), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-tender .container {
  z-index: 2;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.bg-white {
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.custom-tab {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-primary) !important;
  color: black !important;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  background-color: #fff;
}

.custom-tab.active {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

.custom-tab:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}
/* hero Section */

.inquiry-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-warning));
}

.inquiry-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
}

.inquiry-card:hover {
  transform: translateY(-8px);
}

.inquiry-section .form-control,.inquiry-section .form-select {
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #ddd;
}

.inquiry-section .form-control:focus, .inquiry-section .form-select:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 12px rgba(106, 17, 203, 0.3);
}

.inquiry-section .btn-accent {
  background: #ff4d6d;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.inquiry-section .btn-accent:hover {
  background: #e63e5c;
}
.who-we-are {
  background: linear-gradient(135deg, #f8f9fa, #eef3ff);
}

.who-we-are h2 {
  font-size: 34px;
}
.services-section {
    background: #e6e6e7;
} 
.experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-warning);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card .icon i {
  transition: 0.3s;
}

.service-card:hover .icon i {
  transform: scale(1.1);
}
body::-webkit-scrollbar {
  width: 6px; /* vertical scrollbar width */
  height: 6px; /* horizontal scrollbar height */
}

body::-webkit-scrollbar-track {
  background: #f1f1f1; /* track color */
}

body::-webkit-scrollbar-thumb {
  background-color: #888; /* thumb color */
  border-radius: 3px; /* rounded edges */
  border: 1px solid #f1f1f1; /* optional border */
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* hover effect */
}
@media (max-width: 768px) {
  .sticky-top{
    position: fixed;
    background: var(--bs-white);
    width: 100%;
    z-index: 10 !important;
  }
}

.vertical-button-left {
  position: fixed;
  top: 65%;
  left: 10px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  background: var(--color-primary);
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-align: center;
  letter-spacing: 3px;
}

.step-number {
  width: 55px;
  height: 55px;
  /*background: var(--color-primary);*/
  color: white;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(13,110,253,0.3);
}
.icon-box {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
}
#category-section .CaardBox:hover {box-shadow: 0px 0px 20px rgb(0 0 0 / 12%);border: 1px solid lightgray;}
#category-section .CaardBox {margin-bottom: 25px;text-align: center;border-radius: 6px;padding: 20px 20px;}
#Category h6, #Department h6, #Location h6 {padding: 10px !important;}
.service .nav .nav-link.active {border-color: var(--color-primary) !important;background: var(--color-primary);font-weight: 600;
color: white;}
.service .nav .nav-link {transition: .5s;font-weight: 600;color: #265285;}
#Category h6:hover, #Department h6:hover, #Location h6:hover {background: var(--color-primary);box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    color: #fff !important;padding: 10px;border-radius: 30px;}
#Category h6:hover,
#Department h6:hover,
#Location h6:hover {
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    padding: 10px;
    border-radius: 30px;
}

#Category h6:hover a,
#Department h6:hover a,
#Location h6:hover a {
    color: #fff !important;
}

.tender-card-modern {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

.tender-card-modern::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
}

.tender-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.tender-location {
  font-size: 13px;
  color: #6c757d;
}

.tender-desc {
  font-size: 14px;
  color: #444;
}

.deadline-badge {
  background: #e9f7ef;
  color: #198754;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.tender-amount-box {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.tender-amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.view-btn {
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
