.work-hero {
  background-color: #fcfbf9;
  border-bottom: 1px solid #e5e2da;
}

.work-tabs {
  display: flex;
  gap: 35px;
  margin-top: 20px;
  padding-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.work-tabs::-webkit-scrollbar {
  display: none;
}
.work-tabs a {
  text-decoration: none;
  color: #c5a059;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;

  font-size: 18px;
  padding: 0 0 16px 0;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.work-tabs a:hover {
  color: #111111;
}
.work-tabs a.active {
  color: #111111;
  font-weight: 600;
}
.work-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #111111;
}

/* Content Area Layout */
.work-content-section {
  padding: 60px 0;
  background-color: #ffffff;
  min-height: 400px;
}
.work-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tab-content {
  display: none;
}
.tab-content.active-content {
  display: block;
  animation: premiumFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes premiumFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Two-Column Layout (Image Left, Content Right) */
.tab-split-layout {
  display: grid;
  grid-template-columns: 350px 1fr; /* Image gets fixed elegant width, content takes rest */
  gap: 50px;
  align-items: start;
}

@media (max-width: 992px) {
  .tab-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.tab-image-sidebar {
  width: 100%;
  position: sticky;
  top: 40px;
}
.tab-hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Right Side Content Container */
.tab-main-content {
  width: 100%;
}

/* Modern Grid Layout for Portfolio Records */
.records-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media (max-width: 768px) {
  .records-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.record-card {
  background: #faf9f6;
  border: 1px solid #f0eee9;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.record-card:hover {
  border-color: #ccbba3;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(138, 121, 104, 0.04);
}
.record-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.record-tag {
  background: #eadecc;
  color: #5d5347;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  font-weight: 600;
}
.record-date {
  font-size: 12px;
  color: #8c847c;
  font-weight: 500;
}
.record-card h3 {
  font-size: 20px;
  line-height: 1.45;
  color: #111111;
  margin: 0 0 10px 0;
  font-weight: 400;
}
.record-action {
  display: inline-flex;
  align-items: center;
  color: #111111;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  gap: 6px;
  transition: color 0.3s ease;
}
.record-action:hover {
  color: #8a7968;
}



.record-card p {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    margin-bottom: 0;
    color: #828282;
}
.punjab-work, .gurudarpur-work{
      gap: 16px;
}

.punjab-work .record-card, .gurudarpur-work .record-card{
    background: transparent;
    border:none;
    padding:0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gurudarpur-work .record-card, .punjab-work .record-card {
    border-bottom: solid 1px #d5d5d5;
    padding-bottom: 20px;
}

.record-card h2 {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}



.gurudarpur-work .record-card:last-child, .punjab-work .record-card:last-child{
      border-bottom: none !important;

}


@media screen and (max-width:768px) {
  .tab-image-sidebar {
    width: 100%;
    position: static;
}
}