@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
ul {
    padding-left: 0;
}
li{
  list-style: none;
}
  .content li {
    list-style: auto !important;
}
a{
    text-decoration: none;
}
p{
  text-align: justify;
}
nav {
    position: sticky;
    z-index: 99;
    width: 100%;
    background: #fe9108;
    top: 0;
}
nav .wrapper {
    position: relative;
    max-width: 1400px;
    padding: 0px 30px;
    height: 85px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #111111e0;
    border-radius: 0 0 25px 25px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.logo a img{
    height: 70px;
    width: 100%;
}
.wrapper .nav-links{
  display: inline-flex;
  margin-bottom: 0;
}
.nav-links li{
  list-style: none;
}
.nav-links li a {
	color: #f2f2f2;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	padding: 9px 14px;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  z-index: 999;
  padding: 0 15px;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 0px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }

  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    /* padding-left: 20px; */
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
.mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

/* about section start */

  .about__perfil {
    position: relative;
   
  }
  .about__img {
    width: 100%;
    border-radius: 10px;
  }
  
.about-section{
    background-image: url(../images/aboutbg.png);
    padding: 60px 0;
    background-repeat: no-repeat;
    width: 100%;
    background-size: 100% 100%;
    background-size: cover;
}
.about-content span{
    font-size: 20px;
    color: #fe9108;
    position: relative;
}
.about-content span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100px;
    color: #578f05;
    background-color: #259100;
    top: 100%;
    left: 50%;
}
.about-content h3{
    font-size: 30px;
    margin-top: 2%;
}

 .about-btn{
    color: #fff;
    position: relative;
  transition: all .3s;
  padding: 15px 25px;
  border: 0;
  /* border-radius: 90px; */
  display: inline-flex;
 }
 .about-btn::before {
    content: '';
    padding: 22px 65px;
    border: 0;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scaleX(1.05) scaleY(1.1);
    background: linear-gradient(0deg, rgb(254 145 8) 0%, rgb(247 147 24 / 83%) 25%, rgb(181 151 101) 51%, rgb(114 90 59) 100%);
    z-index: -1;
}
.about-pdg-icon{
    height: 80px;
}

/* about section end */

/*  */

.Kendriya-Bhandar-metting{
  padding: 60px 0;
}
.Kendriya-list img{
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  
}
.Kendriya-list{
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  height: 100%;
}


/*  */

/* notice board start*/

.news span.txt{
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  width: 73%;
}
.notice-bord {
  background-color: #1a202c; 
  padding: 3rem 0;
}

.notice-bord .title {
  color: #ebf4ff; 
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
}

.news {
  background-color: #2a4365;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.badge {
  background-color: #38a169; 
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin: 0.5rem;
  display: inline-block;
}
.txt a{
  color: #ebf4ff; 
  font-size: 17px;
  
}
.notice-date {
  color: #5edb13;
  margin-left: 4%;
  position: absolute;
  right: 16px;
}

@media (max-width: 640px) {
  .txt {
    width: 100%;
  }
}
@keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}

.blink {
  animation-name: blinker;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}
/* notice board end*/

/* latest news start */

.latestnews{
  padding: 60px 0;
}
.latestnews h3{
  text-align: center;
  font-size: 30px;
  position: relative;
}
.latestnews h3::after{
  content: "";
  position: absolute;
  color: #259100;
  background-color: #259100;
  height: 2px;
  width: 100px;
  bottom: 0;
}
.latestnews h3::before{
  content: "";
  position: absolute;
  color: #259100;
  background-color: #259100;
  height: 2px;
  width: 100px;
  left: 36%;
}
.newsCard {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  min-height: 100%;
}
.newsCard:hover {
  box-shadow: 0 8px 25px rgba(88, 0, 0, 0.2);
}
.newsThumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.newsContent {
  padding: 20px;
  position: relative;
}
.newsMeta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}
.newsTitle {
  color: #580000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}
.newsSummary {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.readMore {
  color: #580000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.readMore:hover {
  color: #7a0000;
}
.readMore::after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
  font-size: 30px;
}
.readMore:hover::after {
  transform: translateX(5px);
}
.corner {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background-color: #fe9108;
  transform: rotate(45deg);
}
.newsMeta span{
  font-size: 16px;
  color: #fe9108;
}
.corner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotate(45deg);
}
.newsCard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #580000;
}
.latestnews-btn {
  margin: 20px auto 0;
  display: table;
}

/* latest news end*/


/* Footer start */

footer {
  background: linear-gradient(135deg, #0f0f1b, #1a1a2e);
  color: #fff;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fe9108, #2e2110);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-column {
  position: relative;
  z-index: 1;
}
.footer-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background: #fe9108;
  border-radius: 3px;
}
.footer-column p {
  color: #adb5bd;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #fe9108;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 1.5rem;
}
.footer-links a:hover::before {
  left: 0;
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #adb5bd;
  column-gap: 10px;
}

.contact-item i {
  margin-right: 0.75rem;
  color: #6c63ff;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}
.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6c63ff, var(--primary-dark));
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-link:hover::after {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}
.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #adb5bd;
  font-size: 0.85rem;
}

.copyright a {
  color: #fe9108;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.copyright a:hover {
  color: #6c63ff;
  text-decoration: underline;
}

/* Footer End */



/* sub banner start */

.p-relative {
  position: relative;
}
.breadcrumb-area {
  background-size: cover;
  position: relative;
  min-height: 410px;
  background-repeat: no-repeat;
  background-color: #000;
}
.breadcrumb-wrap2 {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: -25px;
  z-index: 1;
}
.breadcrumb {
  display: inline-block;
  -ms-flex-wrap: wrap;
  flex-wrap: unset;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: unset;
  border-radius: 30px;
  background: #ff7350;
  padding: 15px 35px;
  position: relative;
}
.breadcrumb li {
  display: inline-block;
}
.breadcrumb li a {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.breadcrumb > .active {
  color: #fffc !important;
  font-weight: 500;
}
.contents ol {
        list-style-type: decimal !important;
        margin-left: 20px !important;
        padding-left: 20px !important;
       }
    .contents ul {
        list-style-type: disc !important;
        margin-left: 20px !important;
        padding-left: 20px !important;
    }
    .contents li {
        display: list-item !important;
    }

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 15px;
  padding-left: 10px;
  color: #ddd;
  content: "|";
}
.breadcrumb-title h2 {
  font-size: 50px;
  margin-bottom: 25px;
  line-height: 1;
  /* color: #fff; */
  letter-spacing: 1px;
  color: #ffffff;
  /* text-shadow: 0 1px #808d93,
      -1px 0 #cdd2d5,
      -1px 2px #808d93,
      -2px 1px #cdd2d5,
      -2px 3px #808d93,
      -3px 2px #cdd2d5,
      -3px 4px #808d93,
      -4px 3px #cdd2d5,
      -4px 5px #808d93,
      -5px 4px #cdd2d5,
      -5px 6px #808d93,
      -6px 5px #cdd2d5,
      -6px 7px #808d93,
      -7px 6px #cdd2d5,
      -7px 8px #808d93,
      -8px 7px #cdd2d5; */
}

/* sub banner end */

/* Objective page start */
.objective-page ul li{
  display: flex;
  column-gap: 15px;
  margin-bottom: 6px;
}
.objective-page ul li svg{
  color: #fe9108;
  font-size: 20px;
}
.objective-page p{
  margin: 0;
}
/* Objective page end */

/* teams start */

.teams{
  padding: 60px;
}
.boxs{
  background: #181717d4;
  border-radius: 10px;
}
.boxs img{
  width:100%;
  height: 300px;
}

.boxs .text{
  text-align: center;
  color:#fff;
  padding: 15px 0;
}
.text p{
  color: #fe9108;
  margin-bottom: 0;
}
.text h3{
  font-size: 20px;
}

/* teams end */

/* by laws start */

.bye-laws{
  padding: 100px 0;
}
.bye-laws-content h3{
  text-align: center;
}
.bye-laws-content .bye-laws-content-p{
  text-align: center;
}

/* by laws end */

/* network of offices start */

.network-store{
  padding: 60px 0;
}
.network-store table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.network-store th, td {
  padding: 10px;
  text-align: left;
  border: 1px solid #ddd;
}

.network-store th {
  background-color: #d1d1d1;
  color: #333;
}

.network-store td {
  background-color: #fff;
  color: #555;
}

/* Responsive Table */
.network-store .overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .network-store table {
      width: 100%;
      display: block;
      overflow-x: auto;
      white-space: nowrap;
  }

  .network-store th, td {
      padding: 8px;
      font-size: 12px;
  }

  .network-store .table-fixed {
      table-layout: fixed;
  }

  .network-store th, td {
      white-space: normal;
      text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .network-store th, td {
      padding: 5px;
      font-size: 10px;
  }
  .network-store th {
      font-size: 11px;
  }
}
/* network of offices end */

/* grocery consumer start */

.Consumer-product{
  padding: 60px 0;
}
.Consumer-product-img img{
  height: 400px;
  /* width: 100%; */
}
.product{
  padding: 60px 0;
}
.products-img img{
  width: 100%;
  height: 400px;
}
.products-list ul li{
  margin-bottom: 7px;
  display: flex;
  column-gap: 10px;
}
.product .row{
  row-gap: 20px;
}
.Stationery-img img{
  width: 100%;
}
/* grocery consumer end */

.solar{
  padding: 60px 0;
}
.solar-img-list img{
  height: 250px;
  width: 100%;
  border-radius: 10px;
}
.solar-img .row{
  width: 100%;
}
.solar-img{
  padding: 60px 0;
}

/* gallery page start */

.gallery_container {
  padding: 60px 0;
  margin: 0 auto;
}

@media (min-width: 1300px) and (max-width: 2560px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (min-width: 700px) and (max-width: 1299px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (min-width: 300px) and (max-width: 699px) {
  .popup-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

.gallery_item {
      margin-bottom: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
}
.popup-gallery a {
  display: block;
  width: 100%;
  border: 1px solid #fff;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.popup-gallery a:hover {
  transform: scale(1.05);
  border-color: #fff;
}
.popup-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
  min-height: 250px;
  max-height: 250px;
}

@media only screen and (max-width: 1000px) {
  .popup-gallery img {
    min-height: 150px;
    max-height: 150px;
  }
}
.singicon_btn_nlf {
  position: absolute;
  top: 44%;
  bottom: 56%;
  left: 44%;
  right: 56%;
  opacity: 0;
}
.singicon_btn_nlf svg {
  color: #fff;
}
.popup-gallery a:hover .singicon_btn_nlf {
  opacity: 1;
}
.hover_affect_nlf:hover img {
  opacity: 0.5;
}


/* gallery page end */

/* Contact us Start */

.contact-page-sec{
  padding: 60px 0;
}
.contact-infos {
  display: inline-block;
  width: 100%;
  text-align: center;
  min-height: 100%;
  background: #071c34;
  border-radius: 6px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-icon svg {
  color: #febb41;
  font-size: 35px;
}
.contact-info-item {
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fda40b;
}
.contact-info-text p{
  margin-bottom:0px;
}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #999999;
  font-size: 16px;
  display: inline-block;
  width: 100%;
}
.contact-page-form input {
  background: #dfdfdf none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
  border-radius: 4px;
}
.contact-page-form .message-input {
display: inline-block;
width: 100%;
}
.single-input-field textarea {
  background: #dfdfdf none repeat scroll 0 0;
  border: 1px solid #f9f9f9;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 4px;
}
.single-input-fieldsbtn .submit {
  background: #fda40b none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 6px;
}
.single-input-fieldsbtn .submit:hover{
  background:#071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color:#071c34;
}
.single-input-field  h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}
.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
  padding: 20px 15px 0;
}
.form-input {
  background-color: #FFFFFF;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 15px;
  border-radius: 6px;
}


/* Contact us end */

/* career details start */

.career-details{
  padding: 60px 0;
  background-image: url(../images/pattern-20.png);
}
.career-list {
  padding: 30px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: #fff;
}
.career-list ul li svg{
  color: #007bff;
  font-size: 10px !important;
}
.info p{
  margin-bottom: 0;
}
.career-list h2 , .career-list h5{
  color: #0056b3;
}
.mail-send{
  font-size: 25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin-top: 20px;
}
.email{
  color: #007bff;
}

/* career details end */


/* Tender start */

.tender{
  padding: 60px 0;
}
.table-wrapper {
  overflow: hidden;
}
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 15px;
}
.responsive-table th {
  background-color: #0f2f66;
  color: white;
  font-weight: 600;
}
.responsive-table a {
  color: #1d4ed8;
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
}
.responsive-table span {
  font-size: 15px;
}
.publish {
  color: #1d4ed8;
  font-weight: 600;
}
.closing {
  color: #ea580c;
  font-weight: 600;
}
.corrigendum {
  color: #b91c1c;
  font-weight: 700;
}
.addendum {
  color: #ea580c;
  font-weight: 600;
}
.view-btn {
  background-color: #d87e0a;
  color: white;
  font-size: 12px;
  padding: 6px 12px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.view-btn i {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table, 
  .responsive-table tbody, 
  .responsive-table tr, 
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tr {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
  }
  .responsive-table td {
    border: none;
    padding: 8px 12px;
    position: relative;
  }
  .responsive-table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
  }
  .view-btn {
    width: 100%;
    justify-content: center;
  }
}
.tender-page{
  padding: 60px 0;
}
.tender-page-list {
  box-shadow: 0 10px 10px #d6d6e8;
  min-height: 100%;
}
.tender-page-list img {
  width: 100%;
  height: 280px;
}
.tender-page-list .category {
  font-size: 0.875rem;
  color: #fe9108;
  max-width: 107px;
  width: 100%;
  background-color: #e6e6f1;
}
.tender-page-list .date {
  color: #7676b3;
}
.tender-page-list p {
  font-size: 16px;
}
.tender-page-list h3{
  font-size: 20px;
}

/* Tender end */

/* Tender-details page start */

.tender-details{
  padding: 60px 0;
}
.notification-container img{
  width: 100%;
  height: 300px;
}
.notification-container {
  max-width: 1000px;
  margin: auto;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.notification-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}
.notification-title {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 600px;
}
.notification-meta {
  text-align: right;
  font-size: 1rem;
}
.time {
  margin-top: 0.3rem;
  font-size: 0.875rem;
  color: #555;
}
.bold {
  font-weight: 600;
}
.button-group {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background-color 0.3s ease;
}
.btn-sky {
  background-color: #38bdf8;
}
.btn-sky:hover {
  background-color: #0ea5e9;
}
.btn-green {
  background-color: #16a34a;
}
.btn-green:hover {
  background-color: #15803d;
}
.main-title {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.small {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.text-muted {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.terms-list {
  list-style: none;
  padding-left: 0;
  color: #4b5563;
  font-size: 0.875rem;
}
.terms-list li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.icon-check {
  color: #ef4444;
  margin-top: 0.2rem;
}
@media (min-width: 640px) {
  .notification-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .notification-meta {
    text-align: right;
    max-width: 300px;
  }
  .notification-title {
    max-width: none;
  }
}
/* Tender-details page end */

/* Notice page start */

.notice{
  padding: 60px 0;
}

/* Notice page end */

/* Vacancy page start */

#jobs {
  background: #f8f8fa;
  padding: 50px 0;
}
.company-details {
  box-shadow: 0 2px 70px 0 rgba(110, 130, 208, 0.18);
  border-radius: 5px;
  margin-bottom: 20px;
}
.job-update {
  background: white;
  padding: 10px 20px;
  border-radius: 5px;
}
.job-update h4 strong {
  font-size: 30px;
  font-family: "Oswald", sans-serif;
}
.job-update .fa {
  margin-top: 5px;
  margin-right: 10px;
  color: #77d1b1;
}
.price {
  color: #018f62;
}
.location {
  color: #fe9108;
}
.bookmark{
  color: #000 !important;
  float: right;
  display: inline-flex;
  font-size: 20px;
  cursor: pointer;
}
.bookmark p{
  margin-left: 5px;
    font-size: 20px;
    cursor: pointer;
}
.job-update small {
  background: #efefef;
  padding: 1px 5px;
  margin: 0 5px;
}
.job-update small:hover {
  cursor: pointer;
  background: #23c0e9;
  z-index: 2;
  transition: all 200ms ease-in;
  transform: scale(1.1);
  color: white;
}
.job-update p {
  margin-bottom: 0 !important;
}
.job-update a {
  text-decoration: none !important;
  color: #b6bed2;
  float: right;
}
.job-update a:hover {
  text-decoration: none !important;
  color: rgb(0, 95, 238);
  float: right;
}
.apply-btn {
  height: 40px;
  background-image: linear-gradient(to right, #6db9ef, #111136);
  padding: 5px;
  border-bottom-left-radius: 5px;
}
.apply-btn .btn-primary {
  padding: 0 30px;
  float: right;
  box-shadow: none !important;
  background: transparent;
  border: 1px solid #fff;
  height: 30px;
  line-height: 30px;
  background: #f36969;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
}
.pagelink li {
  height: 25px;
  list-style: none;
  width: 25px;
  display: inline-block;
  cursor: pointer;
}
.job-submit {
  background: #2e2110;
  padding: 10px 15px;
  color: #fff;
  border-radius: 6px;
}
.pagelink li:hover,
.activa {
  color: #fff;
  background-image: linear-gradient(to right, #6db9ef, #7ce08a);
}
.left-arrow {
  color: #999;
}
.right-arrow {
  color: #29b929;
}


/* vacancy page end */
/* Job Apply page start*/

.jobs-apply{
  padding: 60px 0;
}
.form_container .row{
  row-gap: 20px;
}
.apply-box .form_control {
  display:flex;
  flex-direction:column;
}
.apply-box .textarea_control {
  grid-column: 1 / span 2;
}
.apply-box .textarea_control textarea {
  width: 100%;
}
.apply-box label {
  font-size: 15px;
  margin-bottom: 5px;
}
.apply-box input,select,textarea{
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}
.apply-box input:focus, textarea:focus,select:focus {
  outline-color:red;
}
.apply-box .button_container {
  display:flex;
  justify-content:center;
  margin-top:20px;
}
.apply-box .button_container button {
  background:orangered;
  border:transparent solid 2px;
  padding: 5px 10px;
  color:#fff;
  border-radius: 10px;
  transition: 0.3s ease-in;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .apply-box .textarea_control {
    grid-column: 1 / span 1;
  }
}

/* Job Apply page end*/


/* Responsive all page start */

@media screen and (max-width: 1400px){
  nav .wrapper {
    max-width: 1200px;
  }
  .breadcrumb-area {
    min-height: 305px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.news span.txt {
  width: 70%;
}

}


@media screen and (max-width: 1199px){
  nav .wrapper {
    max-width: 1060px;
}
.nav-links li a {
  padding: 9px 0px;
}
.wrapper .nav-links {
  column-gap: 20px;
}
.logo a img {
  height: 45px;
}
.breadcrumb-area {
  min-height: 266px;
}
.badge {
  font-size: 10px;
}
.news span.txt {
  width: 60%;
}
.txt a {
  font-size: 13px;
}
.notice-date {
  font-size: 14px;
}
.breadcrumb-title h2 {
  font-size: 45px;
}
.tender-page-list h3 {
  font-size: 16px;
}
.main-title {
  font-size: 20px;
}
.footer-column h3 {
  font-size: 20px;
}
}

@media screen and (max-width: 970px){
  nav .wrapper {
    max-width: 875px;
}
.logo a img {
  height: 60px;
}
.about-content h3 {
  font-size: 24px;
}
 .row{
  row-gap: 30px;
}
.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 2rem;
}

}

/* Responsive all page end */

.business-activites-header h1 {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.business-activites-content {
    font-size: 1.2rem;
}
.business-activites-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.business-activites-content li svg {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ff5722; 
}
.business-activites-note  {
    color: #c23207; 
    font-weight: 500;
}
.business-activites {
    background: aliceblue;
    padding: 50px 0;
}
.Customer-Satisfaction-header h1{
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.Customer-Satisfaction{
  padding: 50px 0;
}
.Customer-Satisfaction-table-responsive table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.Customer-Satisfaction-table-responsive table th, table td {
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    border: 1px solid #ddd;
    text-align: center;
}
.Customer-Satisfaction-table-responsive table th {
    background-color: #007bff;
    color: white;
}
.Customer-Satisfaction-table-responsive table tr:nth-child(even) {
    background-color: #f2f2f2;
}
@media (max-width: 768px) {
    .Customer-Satisfaction-table-responsive table, th, td {
        font-size: 0.9rem;
    }
    .header h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .Customer-Satisfaction-table-responsive table th, table td {
        padding: 10px;
    }
    .header h1 {
        font-size: 1.2rem;
    }
}

.new-view{
  background-color: #16a34a;
  color: #fff;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 6px;
}
.store{
  padding: 50px 0;
}
.store-lists {
    display: flex;
    /* flex-direction: column; */
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
}
.store-lists .info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0077b6;
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.store-lists .arrow-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.store-lists .arrow {
    width: 20px;
    height: 20px;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
    transform: rotate(45deg);
}
.store-lists .text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.store-lists .text p {
  font-size: 17px;
}

/* Number styles */
.store-lists .number {
  font-size: 24px;
  font-weight: bold;
}

.numbers {
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 10px;
}


/* Responsive styles */
@media (max-width: 768px) {
    .store-lists .info-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .store-lists .number {
        font-size: 20px;
    }

    .store-lists .text h3 {
        font-size: 16px;
    }

    .store-lists .text p {
        font-size: 12px;
    }

    .store-lists .arrow {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .store-lists .number {
        font-size: 18px;
    }

    .store-lists .text h3 {
        font-size: 14px;
    }

    .store-lists .text p {
        font-size: 10px;
    }

    .store-lists .arrow {
        width: 12px;
        height: 12px;
    }
}
.initiative h3{
  text-align: center;
}
.initiative{
  padding: 50px 0;
}