*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f5f0e8;
  --blue: #1a3de8;
  --lime: #b8f000;
  --white: #ffffff;
  --dark: #111111;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: center;
  padding: 28px 20px 0;
  position: sticky;
  top: 16px;
  z-index: 100;
}

.nav-pill {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(26,61,232,0.12), 0 1.5px 0 rgba(255,255,255,0.6) inset;
}

.nav-pill a {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-pill a.active,
.nav-pill a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 48px 20px 0;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 10vw, 7rem);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -2px;
}

.hero .subtitle {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--blue);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.cta-btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 16px 52px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(26,61,232,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26,61,232,0.35);
}

.scroll-hint {
  text-align: center;
  padding: 20px 0 0;
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.05em;
}

.scroll-hint .arrow {
  display: inline-block;
  animation: bounce 1.6s infinite;
  font-size: 1.1rem;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ════════════════════════════════════════
   WORK SECTION – dual infinite marquee
════════════════════════════════════════ */
.work-section {
  padding: 72px 0 80px;
}

.work-header {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 52px;
}

.work-header .eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 10px;
}

.work-header h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--blue);
  letter-spacing: -0.5px;
}

/* ── Marquee container ── */
.marquee-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each row: viewport-wide, clips overflow, shows fade masks */
.marquee-row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Gradient fade on left/right edges */
.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 3;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

/* The moving strip – contains items duplicated for seamless loop */
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0;
}

/* Row 1 scrolls left → right-to-left (normal) */
.marquee-track--ltr {
  animation: scroll-left 38s linear infinite;
}

/* Row 2 scrolls right → left-to-right (reverse) */
.marquee-track--rtl {
  animation: scroll-right 42s linear infinite;
}

/* Pause row on hover */
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── Individual thumbnail card ── */
.thumb-card {
  flex-shrink: 0;
  width: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(26,61,232,0.12);
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), box-shadow 0.32s;
  cursor: pointer;
}

.thumb-card:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 20px 48px rgba(26,61,232,0.22);
}

.thumb-preview {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── ABOUT ── */
.about-section {
  background: var(--white);
  padding: 0 0 0 0;
  overflow: hidden;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px 0;
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 480px;
}

/* LEFT */
.about-left {
  flex: 1;
  min-width: 0;
}

.about-aka {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  font-style: italic;
  opacity: 0.75;
}

.about-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-arrow {
  color: var(--blue);
}

.about-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}

.about-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-btn-primary {
  background: var(--blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(26,61,232,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26,61,232,0.35);
}

.about-btn-secondary {
  background: transparent;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #ddd;
  transition: border-color 0.18s, color 0.18s;
}

.about-btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* RIGHT – photo */
.about-right {
  flex: 0 0 380px;
  position: relative;
}

.about-photo-wrap {
  position: relative;
  width: 340px;
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  display: block;
}

/* Floating icon badges */
.float-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  overflow: hidden;
  animation: floatY 3s ease-in-out infinite;
}

.float-badge svg { width: 100%; height: 100%; }

.float-ps    { top: 16px; left: -20px; animation-delay: 0s; }
.float-yt    { top: 50%; left: -28px; transform: translateY(-50%); animation-delay: 0.8s; }
.float-chart { bottom: 60px; right: -16px; animation-delay: 1.4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.float-yt { animation: floatY2 3s ease-in-out infinite; }
@keyframes floatY2 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

/* Years experience circle badge */
.about-exp-circle {
  position: absolute;
  top: -20px;
  right: -24px;
  width: 88px;
  height: 88px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(26,61,232,0.35);
}

.exp-ring { width: 88px; height: 88px; }

/* Stats bar */
.about-stats {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 36px 40px;
  margin-top: 48px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .about-inner { flex-direction: column-reverse; padding: 48px 24px 0; gap: 32px; }
  .about-right { flex: none; width: 100%; }
  .about-photo-wrap { width: 240px; }
  .about-stats { flex-direction: column; gap: 28px; }
  .stat-divider { width: 60px; height: 1px; }
}

/* ── GET IN TOUCH ── */
.contact-section {
  padding: 80px 20px 90px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-section p {
  color: #666;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* Social cards grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.social-card {
  background: var(--white);
  border: 1.5px solid rgba(26,61,232,0.10);
  border-radius: 18px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(26,61,232,0.07);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26,61,232,0.14);
  border-color: rgba(26,61,232,0.22);
}

.social-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg { width: 26px; height: 26px; }

.social-icon--ig   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon--x    { background: #000; }
.social-icon--li   { background: #0a66c2; }
.social-icon--fb   { background: #1877f2; }

.social-handle {
  text-align: left;
}

.social-handle strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}

.social-handle span {
  font-size: 0.78rem;
  color: #888;
  font-weight: 500;
}

.social-view-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(26,61,232,0.18);
  border-radius: 999px;
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 9px 0;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.social-view-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* Bottom row: fb card + email card */
.social-grid-bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
}

/* Email card */
.email-card {
  background: var(--blue);
  border-radius: 18px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 6px 28px rgba(26,61,232,0.25);
  min-height: 90px;
}

.email-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.email-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-icon-wrap svg { width: 22px; height: 22px; }

.email-address {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}

.email-send-btn {
  background: var(--white);
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 28px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}

.email-send-btn:hover {
  background: var(--lime);
  color: var(--blue);
}

@media (max-width: 700px) {
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-grid-bottom { grid-template-columns: 1fr; }
  .email-card { flex-direction: column; padding: 24px 20px; text-align: center; gap: 14px; }
  .email-card-left { flex-direction: column; }
}

@media (max-width: 480px) {
  .social-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #e0d9ce;
}

footer span { color: var(--blue); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .nav-pill { gap: 2px; padding: 8px 10px; }
  .nav-pill a { font-size: 0.82rem; padding: 6px 11px; }
  .thumb-card { width: 220px; }
  .marquee-row::before,
  .marquee-row::after { width: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
/* ── FEATURED RESULTS ── */
.featured-section {
  padding: 64px 20px 72px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.featured-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--blue);
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(26,61,232,0.09);
  box-shadow: 0 6px 28px rgba(26,61,232,0.09);
  transition: transform 0.24s, box-shadow 0.24s;
  cursor: pointer;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(26,61,232,0.16);
}

.feat-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.feat-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.36s;
}

.feat-card:hover .feat-thumb img {
  transform: scale(1.04);
}

.feat-overlay {
  position: absolute;
  bottom: 10px; left: 12px;
}

.feat-channel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.feat-info {
  padding: 14px 16px 16px;
}

.feat-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feat-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-views-badge {
  background: var(--dark);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.feat-category {
  background: rgba(26,61,232,0.08);
  color: var(--blue);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(26,61,232,0.15);
}

@media (max-width: 768px) {
  .featured-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .featured-cards { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #162566;
  padding: 72px 0 64px;
  overflow: hidden;
}

.testimonials-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  text-align: center;
  margin-bottom: 44px;
  padding: 0 20px;
}

.testimonials-track-wrap {
  overflow: hidden;
  padding: 0 60px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
}

.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px 30px;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  box-shadow: 0 8px 36px rgba(0,0,0,0.18);
}

.testi-avatar {
  width: 72px; height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}

.testi-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.testi-subs {
  font-size: 0.72rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.7;
}

/* Carousel controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testi-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  line-height: 1;
}

.testi-btn:hover { background: rgba(255,255,255,0.32); }

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}

.testi-dot.active {
  background: var(--lime);
  transform: scale(1.3);
}