/* Global reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6; color: #333; overflow-x: hidden;
}

/* Nav */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.logo {
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color .3s; }
.nav-links a:hover, .nav-links a.active { color: #ff6b9d; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  position: relative; overflow: hidden; padding: 1rem 5% 1rem;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  color: #fff; z-index: 2; max-width: 1200px; width: 100%;
}
.hero-text { text-align: left; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; animation: fadeInUp 1s ease-out; }
.hero p  { font-size: 1.5rem; margin-bottom: 2.5rem; opacity: .95; animation: fadeInUp 1s ease-out .2s backwards; }
.hero-media { position: relative; animation: fadeInUp 1s ease-out .3s backwards; }

/* Media */
.media-container {
  width: 100%; height: 500px; background: rgba(255,255,255,.1);
  border-radius: 20px; backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: transform .3s;
}
.media-container:hover { transform: scale(1.02); }
.media-container img, .media-container video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
}
.media-placeholder { color: rgba(255,255,255,.7); font-size: 1.2rem; text-align: center; padding: 2rem; }

/* Buttons */
.cta-button {
  display: inline-block; padding: 1.2rem 3rem; background: #fff; color: #ff6b9d; text-decoration: none;
  border-radius: 50px; font-weight: 600; font-size: 1.1rem;
  transition: transform .3s, box-shadow .3s; animation: fadeInUp 1s ease-out .4s backwards;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* Floating shapes */
.floating-shapes { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.shape { position: absolute; opacity: .1; animation: float 20s infinite ease-in-out; }
.shape:nth-child(1){
  width: 80px; height: 80px; background: #fff; border-radius: 50%;
  top: 20%; left: 10%;
}
.shape:nth-child(2){
  width: 120px; height: 120px; background: #fff;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; top: 60%; right: 15%; animation-delay: 3s;
}
.shape:nth-child(3){
  width: 100px; height: 100px; background: #fff; border-radius: 50%;
  bottom: 15%; left: 20%; animation-delay: 6s;
}

/* Services (grid overview) */
.services { padding: 2rem 5%; background: #f8f9fa; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 1rem; color: #333; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 5rem; }
.section-subtitle a { color: #ff751f; }
.section-subtitle a:hover { color: #ff17cc; }

/* Services (detailed blocks) */
.services-detail { padding: 1rem 5%; max-width: 1400px; margin: 0 auto; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 0;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; color: #333; }
.service-number {
  display: inline-block; font-size: 1rem; font-weight: 600; padding: .5rem 1.5rem;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color: #fff; border-radius: 50px; margin-bottom: 1rem;
}
.service-content p { font-size: 1.15rem; color: #666; margin-bottom: 2rem; line-height: 1.8; }
.service-features { list-style: none; margin-top: 2rem; }
.service-features li {
  padding: 1rem 0 1rem 2rem; position: relative; font-size: 1.05rem; color: #555;
}
.service-features li:before { content: "✓"; position: absolute; left: 0; color: #ff6b9d; font-weight: bold; font-size: 1.3rem; }

.service-image { position: relative; }
.image-container {
  width: 100%; height: 450px;
  background: linear-gradient(135deg, rgba(255,107,157,.1) 0%, rgba(255,167,38,.1) 100%);
  border-radius: 30px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 20px 60px rgba(255,107,157,.15); transition: transform .3s;
}
.image-container:hover { transform: scale(1.02); }
.image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.image-placeholder { text-align: center; color: #999; font-size: 3rem; }

/* CTA band (optional per page) */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color: #fff; text-align: center;
}
.cta-section h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.cta-section p  { font-size: 1.3rem; margin-bottom: 3rem; opacity: .95; }

/* Process */
.process-section { padding: 3rem 5%; background: #f8f9fa; text-align: center; }
.process-section h2 { font-size: 3rem; margin-bottom: 1rem; color: #333; }
.process-section > p { font-size: 1.2rem; color: #666; margin-bottom: 5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 3rem; max-width: 1200px; margin: 0 auto;
}
.process-step {
  background: #fff; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,.05);
  transition: transform .3s;
}
.process-step:hover { transform: translateY(-5px); }
.step-number {
  width: 60px; height: 60px; background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: bold; margin: 0 auto 1.5rem;
}
.process-step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }
.process-step p { color: #666; font-size: 1rem; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 3rem 5%; text-align: cent

/* === Services, About, Process, Work page heroes === */
.page-hero,
.about-hero,
.process-hero,
.portfolio-hero {
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color:#fff; position:relative; overflow:hidden;
}
.page-hero { padding: 12rem 5% 6rem; text-align:center; }
.about-hero { min-height:80vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }
.process-hero { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }
.portfolio-hero { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }

.hero-container,
.hero-content { max-width:1200px; width:100%; z-index:2; }
.hero-container { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero-content { text-align:center; }

/* About page sections */
.story-section { padding:8rem 5%; max-width:1000px; margin:0 auto; }
.story-section h2 { font-size:2.8rem; margin-bottom:2rem; color:#333; text-align:center; }
.story-section p { font-size:1.2rem; color:#666; line-height:1.9; margin-bottom:1.5rem; }

.values-section { padding:6rem 5%; background:#f8f9fa; }
.values-section h2 { font-size:2.8rem; text-align:center; margin-bottom:1rem; color:#333; }
.values-section > p { text-align:center; font-size:1.2rem; color:#666; margin-bottom:4rem; }
.values-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:3rem; }
.value-card { background:#fff; padding:3rem 2rem; border-radius:20px; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,.05); transition:.3s; }
.value-card:hover { transform:translateY(-10px); box-shadow:0 15px 40px rgba(255,107,157,.15); }
.value-icon { width:70px; height:70px; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:2rem; margin:0 auto 1.5rem; color:#fff; }

.team-section { padding:6rem 5%; max-width:1200px; margin:0 auto; }
.team-section h2 { font-size:2.8rem; text-align:center; margin-bottom:1rem; color:#333; }
.team-section > p { text-align:center; font-size:1.2rem; color:#666; margin-bottom:4rem; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:3rem; }
.team-member { text-align:center; transition:.3s; }
.team-member:hover { transform:translateY(-10px); }
.member-photo { width:100%; height:320px; background:linear-gradient(135deg,rgba(255,107,157,.1) 0%,rgba(255,167,38,.1) 100%); border-radius:20px; margin-bottom:1.5rem; overflow:hidden; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(0,0,0,.08); }
.member-photo img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.photo-placeholder { font-size:4rem; color:#ddd; }
.team-member h3 { font-size:1.5rem; margin-bottom:.5rem; color:#333; }
.team-member .role { font-size:1rem; color:#ff6b9d; font-weight:600; margin-bottom:1rem; }
.team-member p { color:#666; font-size:.95rem; line-height:1.6; }

.stats-section { padding:6rem 5%; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color:#fff; }
.stats-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:4rem; text-align:center; }
.stat-item { padding:2rem; }
.stat-number { font-size:4rem; font-weight:700; margin-bottom:.5rem; line-height:1; }
.stat-label { font-size:1.2rem; opacity:.95; font-weight:500; }

/* Our Process timeline */
.intro-section { padding:8rem 5%; max-width:1000px; margin:0 auto; text-align:center; }
.intro-section h2 { font-size:2.5rem; margin-bottom:1.5rem; color:#333; }
.intro-section p { font-size:1.2rem; color:#666; line-height:1.8; }

.process-timeline { padding:6rem 5%; background:#f8f9fa; position:relative; }
.timeline-container { max-width:1200px; margin:0 auto; position:relative; }
.timeline-line { position:absolute; left:50%; top:0; bottom:0; width:4px; background:linear-gradient(180deg,#ff6b9d 0%,#ffa726 100%); transform:translateX(-50%); }
.timeline-item { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-bottom:6rem; position:relative; }
.timeline-item:nth-child(even) .timeline-content { order:2; }
.timeline-item:nth-child(even) .timeline-image { order:1; }
.timeline-dot { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:60px; height:60px; background:#fff; border:4px solid #ff6b9d; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:bold; color:#ff6b9d; z-index:10; box-shadow:0 0 0 10px #f8f9fa; }

.timeline-content { background:#fff; padding:3rem; border-radius:20px; box-shadow:0 10px 40px rgba(0,0,0,.08); transition:.3s; }
.timeline-content:hover { transform:translateY(-5px); box-shadow:0 15px 50px rgba(255,107,157,.15); }
.timeline-content h3 { font-size:2rem; margin-bottom:1rem; color:#333; }
.phase-label { display:inline-block; font-size:.85rem; font-weight:600; padding:.4rem 1.2rem; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color:#fff; border-radius:50px; margin-bottom:1rem; text-transform:uppercase; letter-spacing:.5px; }
.timeline-content p { color:#666; font-size:1.05rem; line-height:1.8; margin-bottom:1.5rem; }
.timeline-features { list-style:none; margin-top:1.5rem; }
.timeline-features li { paddin
