/* --- Premium Navbar for Portfolio Page --- */
.navbar {
  background: var(--light, #fff);
  color: var(--secondary, #23272f);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-bottom: 1px solid #f8f9fa;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .navbar-brand img {
  filter: drop-shadow(0 2px 8px rgba(13,110,253,.12));
}
.navbar .navbar-nav {
  gap: 18px;
}
.navbar .nav-link {
  color: var(--secondary, #23272f) !important;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #fff !important;
  background: var(--primary, #FF6600);
}
.navbar .btn-outline-primary {
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 12px 28px;
  border-width: 2px;
  color: var(--primary, #FF6600);
  background: none;
  border-color: var(--primary, #FF6600);
  transition: background .18s, color .18s;
}
.navbar .btn-outline-primary:hover {
  background: var(--primary, #FF6600);
  color: #fff;
}
@media (max-width: 991px) {
  .navbar {
    padding: 14px 0;
  }
  .navbar .nav-link {
    font-size: 1rem;
    padding: 8px 12px;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 8px 0;
  }
  .navbar .nav-link {
    font-size: 0.95rem;
    padding: 6px 8px;
  }
}
/* Portfolio section for Construction Websites (premium, conversion-focused)
   Additions: card grid, FOMO strip, animated counters, CTA polish, responsive tweaks */

.construction-portfolio-section {
  background: var(--light, #fff);
  color: var(--secondary, #23272f);
  padding: 0 0 80px 0;
  position: relative;
  overflow: hidden;
}
.construction-portfolio-hero {
  padding: 120px 0 40px 0;
  text-align: center;
  background: var(--light, #fff);
}
.construction-portfolio-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--secondary, #23272f);
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.construction-portfolio-hero p {
  font-size: 1.18rem;
  color: #cfd8e3;
  margin-bottom: 28px;
  font-weight: 500;
}
.construction-portfolio-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}
.construction-portfolio-bullets li {
  background: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1.05rem;
  color: var(--secondary, #23272f);
  font-weight: 500;
  list-style: none;
}
.construction-portfolio-cta {
  margin-top: 18px;
}
.construction-portfolio-cta .btn-primary {
  background: var(--primary, #FF6600);
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 14px 38px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(13,110,253,.13);
  transition: box-shadow .22s, transform .22s;
}
.construction-portfolio-cta .btn-primary:hover {
  box-shadow: 0 12px 36px rgba(13,110,253,.22);
  transform: translateY(-2px) scale(1.03);
}

/* FOMO / Social Proof Strip */
.construction-fomo-strip {
  background: #fff;
  color: var(--primary, #FF6600);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 1.08rem;
  font-weight: 600;
  border-bottom: 2px solid var(--primary, #FF6600);
}
.construction-fomo-strip .fomo-text {
  color: var(--primary, #FF6600);
  font-weight: 700;
  margin-right: 18px;
}
.construction-fomo-strip .counter {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary, #FF6600);
  margin: 0 8px;
}

/* Portfolio Grid */
.construction-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 38px;
  margin: 60px auto 0 auto;
  max-width: 1200px;
  padding: 0 18px;
}

/* --- Premium Card & CTA Animations --- */
.construction-portfolio-card {
  background: #fff;
  color: var(--secondary, #23272f);
  border-radius: 18px;
  border: 2px solid var(--primary, #FF6600);
  box-shadow: 0 8px 32px rgba(255,102,0,0.08);
  padding: 32px 24px 24px 24px;
  margin-bottom: 32px;
  transition: box-shadow .22s, transform .22s;
  position: relative;
  overflow: hidden;
}
.construction-portfolio-card:hover {
  box-shadow: 0 16px 48px rgba(255,102,0,0.18);
  transform: translateY(-6px) scale(1.03);
}
@keyframes cardFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(.98); }
  100% { opacity: 1; transform: none; }
}
.construction-portfolio-card .mockup {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 16/9;
  background: #1a1d23;
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.construction-portfolio-card .mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.08) saturate(1.08);
  transition: filter .3s;
}
.construction-portfolio-card:hover .mockup img {
  filter: brightness(1.13) contrast(1.13) saturate(1.13);
}
/* Online green dot */
.construction-portfolio-card .online-dot {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 16px;
  height: 16px;
  background: #19e05c;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #19e05c;
  animation: onlinePulse 1.4s infinite cubic-bezier(.66,0,0,1);
  z-index: 2;
}
@keyframes onlinePulse {
  0% { box-shadow: 0 0 0 0 #19e05c88; }
  70% { box-shadow: 0 0 0 10px #19e05c00; }
  100% { box-shadow: 0 0 0 0 #19e05c00; }
}
.construction-portfolio-card .company {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  margin: 22px 0 4px 0;
  text-align: center;
  letter-spacing: -0.5px;
}
.construction-portfolio-card .industry {
  font-size: 1.01rem;
  color: #7ec6ff;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.2px;
}
.construction-portfolio-card .positioning {
  font-size: 1.07rem;
  color: #cfd8e3;
  margin-bottom: 18px;
  text-align: center;
  min-height: 44px;
  font-weight: 500;
}
.construction-portfolio-card .card-cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
}
/* --- Animated LIVE Button --- */
.construction-portfolio-card .btn-live {
  background: linear-gradient(90deg, #0d6efd 60%, #0a58ca 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.09rem;
  padding: 13px 34px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(13,110,253,.13);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  transition: box-shadow .18s, transform .18s, filter .18s;
  z-index: 1;
}
.construction-portfolio-card .btn-live .shimmer {
  position: absolute;
  top: 0; left: -75%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.12) 100%);
  transform: skewX(-18deg);
  animation: shimmerMove 2.2s infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmerMove {
  0% { left: -75%; }
  100% { left: 110%; }
}
.construction-portfolio-card .btn-live .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  background: rgba(25,224,92,0.18);
  pointer-events: none;
  z-index: 3;
}
@keyframes rippleEffect {
  to { transform: scale(2.5); opacity: 0; }
}
.construction-portfolio-card .btn-live:hover {
  box-shadow: 0 12px 36px rgba(13,110,253,.22);
  transform: translateY(-2px) scale(1.06);
  filter: brightness(1.10);
}
.construction-portfolio-card .btn-live:active {
  filter: brightness(0.98);
}

/* Psychological Reinforcement */
.construction-psychology-section {
  background: #181c23;
  color: #fff;
  padding: 80px 0 40px 0;
  text-align: center;
}
.construction-psychology-section h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}
.construction-psychology-section p {
  font-size: 1.13rem;
  color: #cfd8e3;
  margin-bottom: 0;
  font-weight: 500;
}

/* Comparison Trigger Section */
.construction-comparison-section {
  background: #23272f;
  color: #fff;
  padding: 70px 0 70px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
.comparison-col {
  flex: 1 1 320px;
  max-width: 420px;
  background: #181c23;
  border-radius: 14px;
  padding: 38px 28px;
  min-width: 280px;
  box-shadow: 0 4px 18px rgba(13,110,253,.07);
}
.comparison-col h4 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffb300;
}
.comparison-col ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.comparison-col li {
  font-size: 1.05rem;
  color: #cfd8e3;
  margin-bottom: 10px;
  font-weight: 500;
}
.comparison-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}
.comparison-cta .btn-primary, .comparison-cta .btn-outline {
  padding: 13px 32px;
  font-size: 1.09rem;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 0;
}
.comparison-cta .btn-outline {
  background: none;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  transition: background .18s, color .18s;
}
.comparison-cta .btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}

/* Final Conversion CTA */
.construction-final-cta-section {
  background: #181c23;
  color: #fff;
  padding: 80px 0 80px 0;
  text-align: center;
}
.construction-final-cta-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}
.construction-final-cta-section p {
  font-size: 1.15rem;
  color: #cfd8e3;
  margin-bottom: 32px;
  font-weight: 500;
}
.construction-final-cta-section .cta-group {
  justify-content: center;
  gap: 18px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .construction-portfolio-hero h2 { font-size: 2.1rem; }
  .construction-final-cta-section h2 { font-size: 1.7rem; }
  .construction-portfolio-grid { gap: 22px; }
}
@media (max-width: 767px) {
  .construction-portfolio-section, .construction-psychology-section, .construction-final-cta-section { padding-left: 0; padding-right: 0; }
  .construction-portfolio-hero { padding: 70px 0 30px 0; }
  .construction-portfolio-grid { grid-template-columns: 1fr; }
  .construction-comparison-section { flex-direction: column; gap: 22px; padding: 40px 0; }
  .comparison-col { max-width: 100%; }
}
@media (max-width: 576px) {
  .construction-portfolio-hero h2 { font-size: 1.3rem; }
  .construction-portfolio-card .company { font-size: 1.01rem; }
  .construction-portfolio-card .industry { font-size: 0.91rem; }
  .construction-portfolio-card .positioning { font-size: 0.93rem; }
  .construction-final-cta-section h2 { font-size: 1.1rem; }
}
