/* styles/work.css */

/* Page Hero */
.page-hero {
  background-color: var(--brand-accent);
}

/* Filter Bar */
.filter-bar .btn {
  margin: 0 5px;
  border-radius: 20px;
  padding: 8px 20px;
}

.filter-bar .btn.active {
  background-color: #F87B1B;
  color: #fff;
  border-color: #F87B1B;
}

/* Portfolio Grid */
.portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-text {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-text {
  transform: translateY(0);
}

.portfolio-text h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.portfolio-text p {
  margin: 0;
  font-size: 0.9rem;
  background-color: rgba(248, 123, 27, 0.8);
  padding: 3px 10px;
  border-radius: 15px;
  display: inline-block;
}



/* Featured Case Study */
.metric h3 {
  font-weight: 700;
}

/* Process Mini-Section */
.process-step .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F87B1B;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.process-step:hover .icon-circle {
  background-color: #F87B1B;
  color: #fff;
}

/* Testimonials */
.testimonial-card {
  padding: 2rem;
  max-width: 700px;
    /* Adjust as needed */
    margin-left: auto;
    margin-right: auto;
    min-height: 200px;
    /* Example height, adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .star-rating {
    color: #ffc107;
    /* A gold color */
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Band */
.cta-band {
    background: var(--brand-accent);
}

/* Contact Strip */
.contact-strip {
  background-color: #343a40;
  color: #fff;
}

.contact-strip a {
  color: #fff;
  text-decoration: none;
}

.contact-strip a:hover {
  text-decoration: underline;
}
