/*---- Sticky Header -----------*/
 #mainNavbar {
        transition: all 0.3s ease;
      }
      .fixed-top {
        position: fixed !important;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      }




/*---- Style -----------*/

.section-title {
  text-align: center;
  color: #7d0202; /* optional red theme */
  font-weight: 600;
}
    .tc-projects {
  background-color: #fff;
}

.post-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.post-card .img {
  position: relative;
}

.post-card .img .date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #7d0202;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
}

/*.img-cover {*/
/*  width: 100%;*/
/*  height: 250px;*/
/*  object-fit: cover;*/
/*}*/

.btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-details {
  background: transparent;
  color: #7d0202;
  border: 1px solid #7d0202;
}

.btn-details:hover {
  background: #7d0202;
  color: #fff;
}

.btn-brochure {
  background: #7d0202;
  color: #fff;
  border: none;
}

.btn-brochure:hover {
  background: #a90303;
}

/*------- About us ---------*/
.tc-innerheader-st6 {
    position: relative;
}

.tc-innerheader-st6::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(211, 211, 211, 0.7)), to(rgba(211, 211, 211, 0)));
       background: linear-gradient(180deg, rgb(154 149 149 / 70%) 0%, rgba(211, 211, 211, 0) 100%);
    z-index: -1;
}