
@font-face {
  font-family: "Matter";
  src: url("fonts/Matter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Matter";
  src: url("fonts/Matter-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Matter";
  src: url("fonts/Matter-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Matter", sans-serif;
  font-weight: 400;
}

/* Navbar */
.navbar {
  padding: 10px 40px;
  box-shadow: 0px 4px 15px rgba(4, 4, 4, 0.182);
}

/* ✅ Logo fix */
.navbar-brand img {
  max-height: 50px;
  width: auto;
  display: block;
}

.navbar-nav .nav-link {
  margin-right: 20px;
  font-weight: 600;
  color: #4C39DD;
}

.navbar-nav .nav-link:hover {
  color: #8c6fc1;
}

.btn-login {
  background: #4C39DD;
  color: #fff;
  border-radius: 5px;
  padding: 3px 15px;
  font-weight: 500;
}

.btn-login:hover {
  background: #5a32a3;
}

.dropdown-toggle::after {
  display: none;
}
.nav-link.dropdown-toggle i {
  margin-left: 6px;
  font-size: 0.7rem;
  color: #4C39DD;
}

.navbar-toggler {
  background-color: transparent;
  border: none; /* subtle purple border */
  color: #4C39DD !important;             /* purple text/icon color */
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: #f3e9ff; /* soft purple tint on hover */

  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon{
   color: #4C39DD !important; 
}
/* Breadcrumb styling */
.breadcrumb {
  background: transparent;         /* removes default gray background */
  padding: 0;                      /* remove extra padding */
  margin-bottom: 30px;             /* spacing below breadcrumb */
  font-size: 1.15rem;              /* slightly smaller text */
}

.breadcrumb-item a {
  color:#000;                  /* purple link color */
  text-decoration: none;           /* remove underline */
  font-weight: 400;
}

.breadcrumb-item a:hover {
  text-decoration: underline;      /* underline on hover */
  color:  #4C39DD;                  /* darker purple */
}

.breadcrumb-item.active {
   color:#000;                  /* purple link color */
  text-decoration: none;           /* remove underline */
  font-weight: 400;
}


 
  .footer {
    background:linear-gradient(90deg, #2b1ca0, #4d3bd5);
    color: #fff;
    padding: 60px 0 0;
  }

  .footer .container-fluid {
    padding: 0 60px;
  }

  /* Logo */
  .footer img {
    max-width: 180px;
    margin-bottom: 20px;
  }

  /* Columns uniform alignment */
  .footer .footer-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* Headings */
  .footer h5 {
   font-size: 20px;
    font-weight:700px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
  }

  .footer h5::after {
    content: "";
    display: block;
    width: 130px;
    height: 1px;
    background: #fff;
    margin-top: 8px;
  }

  .footer p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* Links */
  .footer a {
    position: relative;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
    transition: 0.3s;
    width: fit-content;
  }

  .footer a:hover {
    color: #fff;
    /* text-decoration: underline; */
  }

  .footer .Quick-Links-col a:hover::after {
    opacity: 1;
    transform: translate3d(0, 0, 0);;
  }
  .footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #fff;
    opacity: 0;
    transition: opacity 300ms, transform 300ms;
  }

  .Quick-Links-col{
 padding-left: 100px !important;
  }

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

  .footer .social-icons a:hover {
    background: #fff;
    color: #6a11cb;
  }

  /* Contact icons aligned */
  .footer .contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .footer .contact-info i {
    margin-right: 10px;
    min-width: 20px; /* keeps icons aligned */
    text-align: center;
    padding-top: 8px;
  }

  /* Bottom full-width */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 60px;
    /* margin-top: 40px; */
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .footer-bottom-text{
    color: #fff;
    font-size: 15px !important;
    font-weight: 300;
  }

 
  
    /* Main container */
    .tender9-section {
      border-top: 2px solid #4C39DD;
      padding: 60px 60px;
    }

    /* Titles */
    .tender9-title {
      font-weight:600;
      font-size: 25px;
      color: #4C39DD;
      margin-bottom: 10px;
      position: relative;
      text-transform: uppercase;
    }

    .tender9-title::after {
      content: "";
      display: block;
      width: 150px;
      height: 1.5px;
      background: #4C39DD;
      margin-top: 5px;
    }

    /* Lists */
    .tender9-list {
      font-size: 1.1rem;
      line-height: 1.6;
         color: #000;
    }
    
    .tender9-list a {
      color: #000;
      text-decoration: none;
      margin-right: 5px;
    }

    .tender9-list a:hover {
      color: #4C39DD;
      text-decoration: underline;
    }

    .tender9-list .tender9-view-all {
      font-weight: bold;
    }
 
/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .navbar-nav .nav-link {
    margin-right: 10px;
    font-size: 0.95rem;
  }

  .navbar {
  z-index: 9999;
  padding: 10px 20px;

}

   .navbar-collapse {
        background: #fff;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 15px 0;
        display: flex;
    flex-direction: column;
    align-items: center;
      }
  .btn-login {
    padding: 3px 10px;
    font-size: 0.9rem;
    align-self: center;
  }
  .tender9-title {
    font-size: 22px;
  }
  .tender9-section {
    padding: 40px 20px;
  }
  .Quick-Links-col {
    padding-left:20px !important;
  }
 .footer .container-fluid {
    padding: 0 30px;
  }
   /* Footer main row */
  .footer .row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 0;      /* remove extra top spacing */
    margin-bottom: 0;   /* remove extra bottom spacing */
  }
  /* Reduce footer column padding */
  .footer .footer-col {
    padding: 5px 20px !important;
  }

  .Quick-Links-col {
    padding-left: 15px !important;
  }

  /* Footer bottom section tighter */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    padding: 10px 15px;
  }
 


 
  .footer .social-icons {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .footer h5 {
    font-size: 18px;
  }
  .footer p,
  .footer a {
    font-size: 1rem;
  }
.breadcrumb{
  margin-bottom: 15px;
}
  

}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav .nav-link {
    margin: 8px 0;
  }
  .breadcrumb {
    font-size: 1rem;
  }
  .tender9-title {
    font-size: 20px;
  }
  .tender9-section {
    padding: 30px 15px;
  }
 .footer {
    padding-top: 25px;   /* less top padding */
  }

  .footer .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;            /* smaller gap */
    margin-top: 0;
    margin-bottom: 0;
   
  }

  .footer .footer-col {
    padding: 5px 0 !important;
  }

  .footer-bottom {
    padding: 8px 10px;
    gap: 5px;
  }

  /* Adjust font sizes for readability */
  .footer h5 {
    font-size: 16px;
  }

  .footer p,
  .footer a {
    font-size: 1rem;
  }

  /* Social icons smaller */
   .footer .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 0;
    background: transparent;
  }
}


@media (max-width: 576px) {
  .navbar-brand img {
    max-height: 40px;
  }
  .btn-login {
    padding: 2px 8px;
    font-size: 0.85rem;
  }

  .breadcrumb{
  margin-bottom: 10px;
}
  
.tender9-section {
   padding-top: 50px;
  }
  .tender9-title {
    font-size: 18px;
     margin-top: -20px;
  }
  .tender9-title::after {
    width: 80px;
  }
  .tender9-list {
    font-size: 1rem;
  }


  .footer  {
    padding-top: 30px;           /* very tight spacing */
  }

  .footer .row {
    gap: 1px;            /* very tight spacing */
  }

  .footer .footer-col {
    padding: 1px 0 !important;
  }

  .Quick-Links-col {
    padding-left: 10px !important;
  }

  .footer-bottom {
    padding: 6px 8px;
    gap: 4px;
  }
  .footer h5 {
    font-size: 15px;
  }
  .footer .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
}

/* Dropdown Menu Customization header*/
.dropdown-menu{
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
  border-radius: 0px;
  border: none;
  /* padding-top: 0px;
  padding-bottom: 0px; */
  padding: 0;
}
.dropdown-menu li{
  border-bottom: 1px solid #ddd;
  margin-left: 15px ;
  margin-right:  15px;
  padding: 8px 0;
}
.dropdown-menu li:last-child{
  border-bottom: none;
}
.dropdown-menu li a{
  padding: 0;
  transition:  .3s ease-out;
  &:hover {
    color: #4C39DD;
  }
}

.dropdown-item.active, .dropdown-item:active {
      color: #4C39DD;
    text-decoration: none;
    background-color: transparent;

}
.dropdown-item:focus, .dropdown-item:hover{
  /* color: #4C39DD; */
  background-color: transparent;
}

/* ==================== sticky header ==================== */
#header {
    position: sticky;
    top: 0;
    z-index: 1002;
    background: #fff;
}

/* general animation logic  */
/* General scroll animation class */
/* Hidden state before scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
}

/* Triggered on scroll */
.animate-on-scroll.in-view {
  animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Staggered delays using CSS variable */
.animate-on-scroll.in-view {
  animation-delay: var(--delay, 0s);
}

.animate-on-scroll-about {
  opacity: 0;
  transform: translateY(60px);
}

.animate-on-scroll-about.in-view {
  animation: fadeUp 0s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tender9-title{
  opacity: 0;
  transform: translateY(60px);
  animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.tender9-list{
  opacity: 0;
  transform: translateY(60px);
  animation: heroFadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 

