


/* General Styling */
#projects {
  width: 100%;
  float: left;
  background: url(../images/05-Events-&-Exhibitions-BG.jpg)  no-repeat bottom;

    background-repeat: no-repeat;
    background-size: cover;
  padding: 20px;

}



.project-wrapper {
width: 100%;
    max-width: 1705px;
    margin: 40px auto;
    text-align: center;
}

/* Tabs Styling */
.tabs {
  display: flex;
  /* justify-content: center; */
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: none;
  font-size: 16px;

  cursor: pointer;
  margin: 0 !important;
  padding: 12px 15px;
  transition: all 0.3sease-in-out;
  color: #333;
  position: relative;
}

.tab:hover {
  color: black;
}

.tab.active {
    color: #273d87;
    font-weight: bold;
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 3px;
  background: #273d87;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0rem 0;
}

.divider span {
  flex: 1;
  height: 2px;
  background: #0a2240;
}


/* Project Card Layout */
.project-list {
  display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 4fr));
    gap: 30px;
  justify-content: center;
    padding: 0px;
}

/* Individual Card */
.project-card {
  position: relative;
  overflow: hidden;

  /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}

/* Image inside Card */
.project-card img {
  width: 100%;

  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}



/* Overlay on hover */
.overlayy {

    padding: 15px 0px;

/* background: rgba(0, 0, 0, 0.5); */

color: #000000;

transition: background 0.3s ease-in-out;
}

.overlayy h3 {
  margin: 0;
  font-size: 18px;
  text-align: start;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .project-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
