#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
body {
overflow-x: hidden;
}
:root {
  --color-primary: #0f4c5c;
  --color-secondary: #392A98;  
  --color-default: #0a0d13;
  --cz-primary-rgb: #FE696A;
  --bs-primary: #0f4c5c; /* your new primary color */
  --bs-primary-rgb: 15, 76, 92; /* optional for components using rgba */
}
.btn-primary{
    background: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
}
.btn-primary:hover, 
  .btn-primary:focus {
    background-color: var(--bs-primary); /* slightly darker for hover */
    border-color: var(--bs-primary);
  }
  /* Optional: links */
  a.text-primary {
    color: var(--bs-primary)   !important;
  }
  a.text-primary:hover {
    color: var(--bs-primary) !important;
  }
.bg-light{
    background: #e8edf5 !important;
}
.top-bar{background: linear-gradient(90deg, #0f4c5c, #1b6f82);font-weight: 500;}
.navbar-nav .nav-link {
    position: relative;
    margin: 0 12px;
    font-weight: 500;
    color: black !important;
    transition: 0.3s;
}
.navbar-nav .nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f5c542;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,.navbar-nav .nav-link.active::after {width: 100%;}
.navbar-nav .nav-link:hover {color: #f5c542 !important;}
.btn-warning {
    background: linear-gradient(135deg, #f5c542, #ffb703);
    border: none;
    color: #0a1f44;
    transition: 0.3s;
}
.btn-warning:hover {
    background: linear-gradient(135deg, #ffb703, #f5c542);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.navbar-brand img {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--color-primary) !important;
    background: var(--color-primary) !important;
    color: #ffffff !important;
}
.ui-menu .ui-menu-item{
  padding-bottom: 20px;
}
.ui-menu .ui-menu-item-wrapper{
  position: ABSOLUTE !important;
  WIDTH: 100% !important;
  padding: 8px 1em 8px .4em !important;
  text-decoration: auto !important;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(13,110,253,0.85), rgba(102,16,242,0.85)),
        url('../img/banner.jpg') center/cover no-repeat;
    color: #fff;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.hero-title span {
    color: #ffc107;
}
.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
}
.hero-search {
    max-width: 700px;
    margin: auto;
}
.hero-search .form-control {
    border-radius: 50px 0 0 50px;
}
.hero-search .btn {
    border-radius: 0 50px 50px 0;
}
.creative-services {
  background: linear-gradient(135deg, #0d6efd, #0a58ca);
}
.creative-card {
  position: relative;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 40px 25px;
  text-align: left;
  color: #fff;
  overflow: hidden;
  transition: all 0.5s ease;
  min-height: 260px;
}
.creative-card i {
  font-size: 44px;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.5s ease;
}
.creative-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.creative-card p {
  font-size: 14px;
  opacity: 0.85;
}
.creative-card a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}



.bg-shape {

  position: absolute;

  width: 140px;

  height: 140px;

  background: rgba(255,255,255,0.25);

  border-radius: 50%;

  top: -40px;

  right: -40px;

  transition: all 0.6s ease;

}



.creative-card:hover {

  transform: translateY(-15px) rotate(-1deg);

}



.creative-card:hover i {

  transform: rotate(10deg) scale(1.2);

}



.creative-card:hover .bg-shape {

  transform: scale(1.3);

  opacity: 0.6;

}



/* floating animation */

.creative-card {

  animation: float 5s ease-in-out infinite;

}



@keyframes float {

  0% { transform: translateY(0); }

  50% { transform: translateY(-8px); }

  100% { transform: translateY(0); }

}

.tender-services {

    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);

}

.bg-gradiant{

    background: linear-gradient(rgba(13,110,253,0.85), rgba(102,16,242,0.85)) center/cover no-repeat;

}

.bg-inquiry-section{

    background: linear-gradient(rgb(59 19 123 / 80%), rgb(123 67 19 / 80%)), url('https://tenderbidalert.com/asset/img/inquiry-background.jpg') no-repeat center center;

    background-size: cover;

    color: #fff;

}

.glass-card {

    position: relative;

    height: 100%;

    padding: 30px 22px;

    border-radius: 18px;

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    color: #fff;

    box-shadow: 0 20px 40px rgba(0,0,0,0.25);

    transition: all 0.4s ease;

    overflow: hidden;

}



.glass-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 18px;

    padding: 1px;

    background: linear-gradient(135deg, rgba(255,255,255,.4), transparent);

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

}



.glass-card:hover {

    transform: translateY(-12px) scale(1.02);

}



.glass-card .icon {

    width: 70px;

    height: 70px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 30px;

    margin-bottom: 18px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

}



.glass-card h5 {

    font-weight: 600;

    margin-bottom: 10px;

}



.glass-card p {

    font-size: 14px;

    opacity: .85;

    min-height: 60px;

}



.glass-card a {

    color: #fff;

    text-decoration: none;

    font-weight: 500;

    display: inline-block;

    margin-top: 10px;

    opacity: .9;

}



.glass-card a:hover {

    opacity: 1;

    text-decoration: underline;

}

.services-modern {

    background: #f8f9fa;

}



.service-item {

    display: flex;

    gap: 20px;

    padding: 22px;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.06);

    transition: all 0.3s ease;

    height: auto;

}



.service-item:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0,0,0,0.12);

}



.service-item .icon {

    width: 65px;

    height: 65px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

    flex-shrink: 0;

}



.service-item h5 {

    font-weight: 600;

    margin-bottom: 6px;

}



.service-item p {

    font-size: 14px;

    color: #6c757d;

    margin: 0;

}

.footer-main {

    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);

    color: #fff;

    padding: 70px 0 30px;

}



.footer-title {

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 20px;

    position: relative;

}



.footer-title::after {

    content: "";

    width: 40px;

    height: 2px;

    background: #ffc107;

    position: absolute;

    left: 0;

    bottom: -8px;

}



.footer-text {

    font-size: 14px;

    opacity: 0.85;

    line-height: 1.7;

}



.footer-links,

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 10px;

}



.footer-links a {

    color: #fff;

    font-size: 14px;

    opacity: 0.8;

    text-decoration: none;

    transition: all 0.3s ease;

}



.footer-links a:hover {

    opacity: 1;

    padding-left: 6px;

}



.footer-contact li {

    font-size: 14px;

    margin-bottom: 12px;

    opacity: 0.85;

}



.footer-contact i {

    margin-right: 8px;

    color: #ffc107;

}

.social-icons {

    margin-top: 20px;

    display: flex;

    gap: 10px;

}



.social-icons a {

    width: 30px;

    height: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.15); /* subtle glass effect */

    color: #fff;

    border-radius: 50%;

    font-size: 16px;

    transition: all 0.3s ease;

    text-decoration: none;

}



.social-icons a:hover {

    background: #ffc107; /* golden highlight */

    color: #0a1f44;      /* dark icon color on hover */

    transform: translateY(-3px) scale(1.1);

}

.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;

}
.back-to-top-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 14;
}
.search-hero {

  background: linear-gradient(135deg, #0d6efd, #0b5ed7);

}

.filter-card {

  position: sticky;

  top: 90px;

}

.accordion-button {

  font-ize: 14px;

  font-: #fff;

}

.form-check {

  padding: 0px 25px;

  border-radius: 6px;

}

.form-check:hover {

  background: #f1f3f5;

}

.tender-card {

  transition: .25s ease;

}

.tender-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 12px 30px rgba(0,0,0,.08);

}

.badge-deadline {

  background: #fff3cd;

  color: #856404;

}

.list-scroll{

  overflow-y: scroll;

  overflow-x: hidden;

  transition: var(--color-primary);

  height: 130px;

}

@media(max-width:768px){

  .filter-card {

    position: static;

  }

}

.tender-card-2 {

  border-left: 5px solid var(--bs-primary);

  transition: 0.2s;

}

.tender-card-2:hover {

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

}

@media (max-width: 991px) {

    .navbar-nav {

        padding: 15px;

        border-radius: 12px;

    }

}

@media (max-width: 768px) {

    .hero{

        min-height: 50vh;

    }

    .hero-title {

        font-size: 1.2rem;

    }



    .input-group-lg>.btn, .input-group-lg>.form-control, .input-group-lg>.form-select, .input-group-lg>.input-group-text{

        font-size: 0.75rem;

        width: 100%;

    }   

}

@media (min-width: 768px) {

    .hero-search .search-type {

        flex: 0 0 185px;     /* FIXED dropdown width */

        max-width: 185px;

    }



    .hero-search .search-input {

        flex: 1 1 auto;     /* take remaining space */

        min-width: 0;

    }



    .hero-search .search-btn {

        flex: 0 0 160px;

    }



    .rounded-md-start {

        border-radius: 50px 0 0 50px !important;

    }



    .rounded-md-end {

        border-radius: 0 50px 50px 0 !important;

    }

}



/* Mobile stacked */

@media (max-width: 767px) {

    .hero-search select,

    .hero-search input,

    .hero-search button {

        width: 100%;

        border-radius: 12px !important;

        margin-bottom: 10px;

    }

}

@media (max-width: 576px) {
    .social-icons a {
    width: 12px;
    height: 12px;
}