@media
html {
  scroll-behavior: smooth;
}

/* subtle emotional fade-in */
.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* reveal on scroll (simple version) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 1.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* experience cards */
.cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

/* soft pulse button for emotional draw */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}



@media(max-width:768px){

section{
padding:70px 6%;
}

.hero{
padding-top:140px;
gap:40px;
}

.hero-content h1{
font-size:2.2rem;
line-height:1.2;
}

.hero-image img,
.photo-placeholder{
height:400px;
}

.section-title h2{
font-size:2rem;
}

}.logo-box img{
width:100%;
height:100%;
object-fit:cover;
border-radius:50%;
}


