/* web.css - Web Design page styles (luxury tech look) */

.hero-gradient{
  background: linear-gradient(90deg,#fff,#bfefff,#00bfff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  font-weight:800;
}

/* Promo banner */
#promo-countdown{
  font-family: monospace;
  letter-spacing: 1px;
  color: #a8f0ff;
}

/* Portfolio tile */
.portfolio-tile{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.25));
  border: 1px solid rgba(0,191,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  min-height: 160px;
  display:flex;
  flex-direction:column;
}
.portfolio-thumb{
  height:120px;
  background-size:cover;
  background-position:center;
  transition: transform .35s ease, filter .35s ease;
}
.portfolio-tile:hover .portfolio-thumb{
  transform: scale(1.03);
  filter: brightness(0.95);
}
.portfolio-meta{ padding:10px; }

/* WhatsApp CTA */
.whatsapp-cta{
  background: #25D366; color:#fff; font-weight:700;
  padding: 8px 12px; border-radius:8px; display:inline-flex; align-items:center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.12);
}
.whatsapp-cta svg{ filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }

/* Small animations */
.glass-card{ background: rgba(10,12,18,0.5); border-radius:10px; border:1px solid rgba(255,255,255,0.03); padding:12px; }
.sample-fade{ opacity:0; transform: translateY(6px); transition: all .45s ease; }
.sample-fade.show{ opacity:1; transform:none; }

/* Testimonials */
.testimonial{
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.18));
  border:1px solid rgba(255,255,255,0.03);
  padding:10px; border-radius:8px;
}

/* Pagination or load more */
#load-more-portfolio{ background: transparent; border:1px solid rgba(255,255,255,0.04); padding:8px 12px; border-radius:8px; color:#e6eef8; }

@media (max-width:640px){
  .portfolio-thumb{ height:100px; }
}
