/* ============================================
   PROJECTS PAGE - BANNER
   ============================================ */

.prj-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.prj-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.prj-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 140, 62, 0.82) 100%);
  z-index: 1;
}

.prj-banner-title {
  font-size: 2.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CATEGORY NAV CARDS
   ============================================ */

.prj-nav-card {
  background: #fff;
  border: 2px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.prj-nav-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: height 0.4s ease;
}

.prj-nav-1::before {
  background: #0d6efd;
}

.prj-nav-2::before {
  background: #198754;
}

.prj-nav-3::before {
  background: #dc3545;
}

.prj-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
  border-color: transparent;
}

.prj-nav-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.prj-nav-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.prj-nav-1 .prj-nav-icon {
  background: rgba(13, 110, 253, 0.1);
}

.prj-nav-2 .prj-nav-icon {
  background: rgba(25, 135, 84, 0.1);
}

.prj-nav-3 .prj-nav-icon {
  background: rgba(220, 53, 69, 0.1);
}

.prj-nav-icon i {
  font-size: 1.8rem;
}

.prj-nav-1 .prj-nav-icon i {
  color: #0d6efd;
}

.prj-nav-2 .prj-nav-icon i {
  color: #198754;
}

.prj-nav-3 .prj-nav-icon i {
  color: #dc3545;
}

.prj-nav-card:hover .prj-nav-icon {
  transform: scale(1.15);
}

.prj-nav-label {
  color: #333;
  font-size: 0.9rem;
}

/* ============================================
   SECTION NUMBERS & TITLES
   ============================================ */

.prj-section-number {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 140, 62, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.prj-number-light {
  color: rgba(255, 255, 255, 0.15);
}

.prj-section-title {
  color: var(--dark-blue);
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.prj-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.prj-section-alt {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

/* ============================================
   PROJECT IMAGE WRAPPER
   ============================================ */

.prj-img-wrapper {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.prj-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prj-img-wrapper:hover .prj-img {
  transform: scale(1.05);
}

/* ============================================
   CLIENT BADGES
   ============================================ */

.prj-client-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.prj-client-success {
  background: linear-gradient(135deg, #198754, #157347);
}

.prj-client-info {
  background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
}

/* ============================================
   PROJECT ITEM LIST
   ============================================ */

.prj-detail-title {
  color: var(--dark-blue);
  position: relative;
  padding-bottom: 12px;
}

.prj-detail-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.prj-item-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prj-item {
  display: flex;
  align-items: flex-start;
  padding: 14px 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prj-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.prj-item-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  margin-right: 14px;
  margin-top: 6px;
}

/* ============================================
   DARK SECTION (INFRA)
   ============================================ */

.prj-dark-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.prj-dark-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.prj-infra-card {
  border-radius: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.prj-infra-card:hover {
  transform: translateY(-8px);
}

.prj-infra-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prj-infra-icon i {
  font-size: 1.5rem;
}

.prj-infra-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prj-infra-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.prj-infra-item i {
  margin-top: 3px;
  flex-shrink: 0;
}

.prj-client-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.prj-client-tag:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   EVENT CARDS
   ============================================ */

.prj-event-card {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.prj-event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

.prj-event-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.prj-event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.prj-event-card:hover .prj-event-img {
  transform: scale(1.08);
}

.prj-event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.prj-event-overlay i {
  font-size: 2rem;
  color: #fff;
}

.prj-event-card:hover .prj-event-overlay {
  opacity: 1;
}

.prj-event-icon-sm {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 140, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prj-event-icon-sm i {
  font-size: 1.3rem;
  color: var(--primary-green);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.prj-why-section {
  background: linear-gradient(135deg, #1a5c3e 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.prj-why-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.prj-why-section .section-title::after {
  background: #fff;
}

.prj-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.prj-why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.prj-why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.prj-why-card:hover .prj-why-icon {
  transform: scale(1.15);
  background: rgba(255,255,255,0.2);
}

.prj-why-icon i {
  font-size: 1.8rem;
  color: #fff;
}

/* ============================================
   CTA SECTION
   ============================================ */

.prj-cta-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.prj-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.prj-contact-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.prj-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
  .prj-img-wrapper {
    height: 260px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 991.98px) {
  .prj-event-img-wrapper {
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .prj-banner {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .prj-banner-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .prj-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .prj-section-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .prj-section-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .prj-event-img-wrapper {
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .prj-nav-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767.98px) {
  .prj-nav-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .prj-contact-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .prj-banner-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .prj-nav-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .prj-nav-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .prj-nav-label {
    font-size: 0.75rem;
  }
}

