/* ═══════════════════════════════════════════════════════════
   PORTFOLIO — Dogbey Mawuli Enoch
   style.css
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --black:        #080808;
  --off-black:    #111111;
  --accent:       #80FF00;
  --white:        #FFFFFF;
  --grey:         #9A9A9A;
  --grey-light:   #CCCCCC;

  /* Typography */
  --font-display: 'Caveat', cursive;           /* big name */
  --font-serif:   'Cormorant Garamond', serif; /* "Hi, I am" */
  --font-body:    'DM Sans', sans-serif;       /* everything else */

  /* Spacing */
  --nav-height:   72px;
}
@font-face {
  font-family: 'Gohdtail';
  src: url(./Gohdtail-BF6a06cc712da48.ttf);
}
@font-face {
  font-family: 'crush mine';
  src: url(./Crush\ Mine.otf);
  font-weight: bold;
}
@font-face {
  font-family: 'delight';
  src: url(./delight-vf.ttf);
  /* font-weight: normal; */
}
@font-face{
  font-family: 'alliance no.1 light';
  src: url(./fonts/Degarism\ Studio\ -\ Alliance\ No.1\ Light.otf);
  /* font-weight: 300; */
}
@font-face{
  font-family: 'alliance no.2 regular';
  src: url(./fonts/Degarism\ Studio\ -\ Alliance\ No.2\ Light.otf);
  /* font-weight: 400; */
}
@font-face {
  font-family: 'Gotham-bold';
  src: url(./fonts/GOTHAM-BOLD.TTF);
}
@font-face {
  font-family: 'Gotham-book';
  src: url(./fonts/Gotham-Book.otf);
}
@font-face {
  font-family: 'Gotham-light';
  src: url(./fonts/Gotham-Light.otf);
}
/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* <burger menu> */

/* <burger menu> */

.burger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  /* background: var(--accent); */
  cursor: pointer;
  flex-shrink: 0;
  z-index: 200;
  position: relative;
  background-color: #00000000;
}

.burger-icon {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.burger-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  /* background: var(--black); */
  background-color: #80FF00;
  border-radius: 2px;
}

.burger-line:nth-child(1) { top: 0; }
.burger-line:nth-child(2) { top: 12px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--off-black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  overflow-y: auto;
  overflow-x: hidden;
 
}

.mobile-menu-inner {
  padding: calc(var(--nav-height) + 40px) 24px 40px;
  max-width: 600px;
}

.mobile-menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-bottom: 18px;
}

.mobile-menu-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-menu-links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(16px);
}

.mobile-link {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  padding: 14px 0;
  text-decoration: none;
}

.mobile-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #80FF00;
  flex-shrink: 0;
}

body.menu-open { overflow: hidden; }

/* Full-screen dark background cover */
/* ═══════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════ */
/* Full-screen dark background cover */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000; /* Match this to your design/video background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Keeps loader on top of everything else */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* Smooth fade-out */
}

/* Size and scaling for your WebM loader */
#loader-video {
  width: 300px; /* Adjust size based on your animation design */
  height: auto;
  pointer-events: none; /* Prevents users from clicking or dragging the video */
}

/* Smooth fade class added by JavaScript */
.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

/* 1. Freeze and hide text/images while the loader overlay is open */
body:not(.start-page-animation) .hero-content .word,
body:not(.start-page-animation) .hero-img {
  animation: none !important;
  opacity: 0 !important;
}
/* Freeze and hide text AND all 3 hero images while the loader overlay is open */
body:not(.start-page-animation) .object-cube img,
body:not(.start-page-animation) .object-worm img,
body:not(.start-page-animation) .hero-character img {
  animation: none !important;
  opacity: 0 !important;
  transform: none !important; /* Prevents any 3D hover/transform glitche layout changes before loading */
}

/* <burger menu> */


/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  /* border: #06B9C6 1px solid; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  /* max-width: 1440px; */
  /* subtle dark glass */
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

   /* ...your existing properties... */
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.5s ease,
    backdrop-filter 0.5s ease;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

/* ── Logo / Name ───────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
 
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  /* overflow: hidden; */
  background: var(--off-black);
  /* border: 1.5px solid rgba(238, 8, 8, 0.89); */
  flex-shrink: 0;
}
.nav-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* placeholder ring shown until real image is added */
.avatar-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); */
}

.nav-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ── Centre Links ──────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 56px;
  flex: 2;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  position: relative;
  transition: font-weight 0.15s ease, color 0.15s ease;
  /* Reserve space so bold doesn't shift layout */
  display: inline-block;
}

/* Invisible bold ghost keeps width stable on hover */
.nav-link::before {
  content: attr(data-text);
  display: block;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.nav-link:hover {
  font-weight: 700;
  color: var(--white);
}

/* active link — always bold */
.nav-link.active {
  font-weight: 700;
}

/* ── CTA Button ─────────────────────────────────────────── */
.nav-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.btn-contact {
  display: inline-block;
  padding: 8px 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.03em;
  background: var(--white);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    border-color     0.25s ease,
    color            0.25s ease,
    font-weight      0.15s ease,
    transform        0.4s ease;
}

.btn-contact:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000000;
  font-weight: 700;
  transform: scale(1.06);
}


/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero-container{
  
  /* max-width: 1440px; */
  /* margin: 0 auto; */
}
.hero {
  /* max-width:1440px;      */
  margin: 0 auto;
  position: relative;
   height: 100vh;
  /* margin-bottom: 0; */
  padding-top: var(--nav-height);
  

  /* display: grid; */
  /* grid-template-columns: 220px 1fr 320px; */
  /* grid-template-columns: 1fr 1fr 1fr ;
  grid-template-rows: 1fr auto; */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* border: yellow 2px solid ; */

}

/* ── Left objects column ───────────────────────────────── */
.hero-objects {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 100px; */
  /* padding-bottom: 60px; */
  /* padding-left: 32px; */
  /* border: #ff8800 1px solid; */
  z-index: 4;
 /* bottom: 190px; */
   /* top:820px; */
   
}

/* ── Centre hero content ───────────────────────────────── */
.hero-content {
  /* grid-column: 2;
  grid-row: 1; */
  text-align: center;
  padding: 0 32px;
  z-index: 2;
  /* border: #ff0000 2px solid; */
  /* margin-bottom: 30%; */
  width: 100%;
  position: relative;
  top: 180px;
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  /* justify-content: center;  */
  /* background-color:blue; */

}
.hover-3d{
transform-style: preserve-3d;
  transition: transform 0.08s ease;
}
.music{
  display: none;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 30%;
  /* border: #06B9C6 2px solid; */
  background-color: #e9e3e3e5;
  border-radius: 20px;
}
.music img{
  width: 200px;
  height: 200px;
  animation: spin 3s linear infinite;
}
.music img {
  display: block;
  transition: transform 0.3s ease;
}

.music:hover img {
  /* transform: scale(1.05) rotate(3deg); */
  /* animation: spin 3s linear infinite; */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.object-cube,
.object-worm {
  /* dimensions sized for the 3-D images that come later */
  position: relative;
  /* overflow: hidden; */
  /* border-radius: 4px; */
}

.object-cube {
 top: 70px;
  bottom: 0px;
  left: 0px;
  /* width: clamp(1080px, 20vw, 720px);
  height: clamp(430px, 25vw, 480px); */
  display: flex;
  justify-content: start;
  transition: 0.4s ease;
}

.object-cube img {
  width: 190%;
  height: 120%;
  object-fit: cover;
  animation: slideInLeft 0.8s ease-out forwards;
  /* border: #00eeff 1px solid; */
}

.object-cube:hover{
  transform: scale(1.055);
  transition: 0.4s ease;
}

.object-worm:hover{
  transform: scale(1.055);
  transition: 0.4s ease;
}
.hero-character:hover{
  transform: scale(1.055);
  transition: 0.4s ease;
}
.object-worm {
    transition: 0.4s ease;
  /* bottom: 100px; */
  position: relative;
  left: 120px;
  top: 120px;
  z-index: 5;
  /* width: clamp(350px, 90vw, 1080px);
  height: clamp(350px, 30vw, 720px); */
  /* display: flex;
  align-items: center;
  justify-content: flex-end; */
  /* border: salmon 1px solid; */
}

.object-worm img {
  width: 200%;
  height: 100%;
  object-fit: contain;
  animation: slideInBottom 0.8s ease-out forwards;
  /* border: #ff0062 1px solid; */
  /* background: salmon; */
}



.hero-greeting {
  font-family: gohdtail, cursive;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 8px;

}

.hero-name {
  font-family: 'crush mine', cursive;
  font-weight: 700;
  font-size: clamp(3.2rem, 7vw, 9rem);
  /* font-size:120px; */
  color: var(--white);
  line-height: 1em;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  /* let it overflow naturally like in the design */
  white-space: nowrap;
}

.hero-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
 font-family: delight, cursive;
  font-style:normal;
  font-size: 2em;

}
.hero-titles .magician{
  color:#80FF00;
  font-family: 'alliance no.1 light';

  /* font-style:light; */
  font-weight: 300;
  font-size: 0.8em;
}

.title-main {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.title-sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.hero-bio {
  font-family: var(delight), cursive;
  /* font-size: clamp(0.85rem, 1.1vw, 0.98rem); */
  font-size: 1.2em;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.5;
  width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ── Right character column ────────────────────────────── */
.hero-character {
 transition: 0.4s ease;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* left: 1290px; */

  /* z-index: 3; */
  /* border: #0080ff 1px solid; */

  /* height: 100%; */
  display: flex;
  justify-content: end;
  bottom: 90px;

}


.hero-character img {
  width: clamp(350px, 30vw, 1080px);
  height: clamp(350px, 50vw, 720px);
  object-fit: cover;
  animation: slideInRight 0.9s ease-out forwards;
  /* width: 100%;
  height: 100%; */
}

/* ── Bottom accent bar ─────────────────────────────────── */
.hero-bar {

  width: 100%;
  height: 60px;
  background-color: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
  /* border: #ec0808 2px solid; */
  /* margin-bottom: 190px; */
}
.container-2{
  background: #000000;

}
.section-2{
 /* max-width: 1440px; */
  margin: 0 auto;
  /* border: #4caf50 3px solid ; */
}
.mini-bio{
  width: 100%;
  height: 250px;
  padding: 32px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* background: blue ; */
  /* border: 1px solid rgb(155, 6, 241); */
  color: white;
  font-size : 2em;
  /* font-family: "inter", sans-serif; */
  line-height: 1.5em;
 /* bottom: 190px; */
position: relative;
/* margin-bottom: 20px; */
}

.btn-about{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-family: "inter", sans-serif;
  font-weight: 400;
  border: 1px solid rgb(247, 247, 247);
  color: white;
  background: black;
  transition: 0.4s  ease-out;
  cursor: pointer;
}

.btn-about:hover{
  background: white;
  color: black;
  border: 1px solid rgb(247, 247, 247);
  transform: scale(0.95);
  transition: 0.6s ease;
  font-weight: 600;
}

.mini-bio p{
  /* font-family:Alliance No.1 Light, cursive; */
  font-family: gotham-light;
  font-weight:300;
  font-style:light;
}
/* .reveal-lines{
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: #57c412 1px solid ;
} */
 .reveal-line {
  display: block;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal-line.in-view {
  transform: translateY(0);
  opacity: 1;
}

.container-3{
 background: #EEEEF0;
 /* border: red 2px solid ; */
 position: relative;
  /* bottom: 190px; */
}
.section-3{
  /* border: #57c412 2px solid ; */
max-width: 1440px;
margin: 0 auto;
}
 .section-wrapper {
    /* background: #EEEEF0; */
    padding: 48px 24px 40px;
    text-align: center;
    max-width: 1440px;
   margin: 0 auto;
   /* border: #57c412 2px solid; */
  }

  .eyebrow {
    font-size: 13px;
    font-weight: 500;
    color: #58af02;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    font-family: Alliance no.2;
  }

  .headline {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    margin-bottom: 4px;
    font-family: "Inter" sans-serif;
  
}

  .subline {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    color: #ABABAF;
    margin-bottom: 36px;
     font-family: "Inter" sans-serif;
  }

  .carousel-viewport {
    overflow: hidden;
    position: relative;
    width: 100%; 
    height: auto;
  }

.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

  .cards-track {
    display: flex;
    justify-content: center;
    gap: 30px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding: 50px;
  }

  .card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 0;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    background: #1a1a1a;
  }
  

  .card:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    z-index: 2;
  }

  .card-thumb-color {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #80ff00de;
    display: flex;
    align-items: center;
    justify-content: center;
    /* pointer-events: none; */
    transition: transform 0.25s ease;
  }

  .card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-btn svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 3px;
  }

  .arrow-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
    /* pointer-events: none; */
  }

  .card:hover .arrow-btn {
    background: #80FF00;
  }

  .arrow-btn svg {
    width: 30px;
    height: 30px;
    stroke: #111;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .avatar-pip {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    background: #ccc;
    display: none;
  }

  .avatar-pip.visible { display: block; }

  .avatar-pip-color {
    width: 100%;
    height: 100%;
    background: #8B7355;
  }

  .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 24px 0 20px;
  }

  .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #C8C8CC;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    border: none;
    padding: 0;
  }

  .dot.active {
    background: #222;
    transform: scale(1.25);
  }

  .more-btn {
    display: inline-block;
    padding: 11px 32px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
  }

  .more-btn:hover { background: #80FF00; transform: scale(1.03); }
  .more-btn:active { transform: scale(0.98); }
  .more-btn:hover{
    color: black;
    font-weight: 600;
  }
/* <modal code > */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.video-modal-content {
  position: relative;
  width: min(90vw, 960px);
  max-height: 85vh;
  aspect-ratio: 16 / 9;
  z-index: 1001;
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 480px) {
  .video-modal-close {
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 32px;
    height: 32px;
  }
}
/* <modal code end > */

   /* ─── Subject container ──────────────────────────────── */
   
   .container4{
   background: #EEEEF0;
   position: relative;
  /* bottom: 190px; */
   }
   .section4{
    margin: 0 auto;
    max-width: 1440px;
   }
    .subject {
      padding: 64px 72px 80px;
    }

    /* ─── Top two-column header ──────────────────────────── */
    .mw-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      margin-bottom: 44px;
      align-items: start;
    }

    .mw-label {
      font-size: 13px;
      font-weight: 500;
      color: #57c412;
      margin-bottom: 16px;
      letter-spacing: 0.01em;
      font-family: Alliance No.2; regular;
      font-style: bold;
      font-weight: 500;

    }

    .mw-headline {
      font-size: clamp(26px, 3.2vw, 44px);
      font-weight: 800;
      color: #1c1c1a;
      line-height: 1.12;
      letter-spacing: -0.02em;
      font-family: "Inter" sans-serif;
      font-style: semi bold;
    }

    .mw-headline-muted {
      color: #b8b6ae;
       font-family: "Inter" sans-serif;
      font-style: semi bold;
    }

    .mw-desc-col {
      padding-top: 36px;
    }

    .mw-desc {
      font-size: 14px;
      line-height: 1.78;
      color: #6e6e68;
      font-family: 'alliance no.2 regular';
      font-style:normal;
      font-weight: 800;
    }

    .mw-desc a {
      color: #57c412;
      text-decoration: none;
      font-weight: 600;
    }

    .mw-desc a:hover {
      text-decoration: underline;
    }

    /* ─── Video card ─────────────────────────────────────── */
    .mw-video-wrap {
       width: 100%;
     height: 100%;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 16 / 9;
      background: #1e2b18;
      transition: transform 0.38s cubic-bezier(0.22, 0.61, 0.36, 1),
                  box-shadow 0.38s cubic-bezier(0.22, 0.61, 0.36, 1);
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
    }
   .mw-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;   /* hidden until JS shows it */
  position: absolute;
  inset: 0;
}
    .mw-video-wrap img{
     width: 100%;
     height: 100%;
    }

    .mw-video-wrap:hover {
      transform: scale(1.022);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.20);
    }

    /* placeholder thumbnail */
    .mw-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: absolute;
      inset: 0;
    }

    /* SVG placeholder fills container absolutely */
    .mw-thumb-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* ─── Play button ────────────────────────────────────── */
    .mw-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: #80ff00d5;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .mw-play svg {
      width: 90px;
      height: 90px;
      fill: #ffffff;
      /* margin-left: 5px; */
    }

    .mw-video-wrap:hover .mw-play {
      transform: translate(-50%, -50%) scale(1.1);
    }

    /* ─── Corner arrow button ────────────────────────────── */
    .mw-corner-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.88);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.25s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .mw-corner-btn svg {
      width: 20px;
      height: 20px;
      stroke: #1c1c1a;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* On video hover → icon background becomes green, arrow stays black */
    .mw-video-wrap:hover .mw-corner-btn {
      background: #80FF00;
    }

    .mw-video-wrap:hover .mw-corner-btn svg {
      stroke: #1c1c1a;
    }
    
    .container5{
   background: #EEEEF0;
    position: relative;
   /* bottom: 240px; */
    }
.section5{
  /* border: grey 2px solid  ; */ */
  /* max-width: 1440px; */
  /* margin: 0 auto; */
}
 
    /* ── Section wrapper ── */
    .logo-section {
      /* border: #4caf50 2px solid; */
      max-width: 1440px;
      margin: 0 auto;
      padding: 60px;
      /* padding: 64px 24px 80px; */

    }

    /* ── Header copy ── */
    .logo-section__header {
      margin-bottom: 40px;
    }

    .logo-section__title {
      font-size: clamp(2rem, 5vw, 2.75rem);
      font-weight: 800;
      color: #111;
      line-height: 1.15;
      letter-spacing: -0.02em;
      font-family: "inter"san serif;
    }

    .logo-section__subtitle {
      margin-top: 8px;
      font-size: 0.9rem;
      color: #4caf50;
      font-weight: 500;
      font-family: Alliance No.2 cursive;
    }

    /* ── Card grid ── */
    .logo-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 16px;
      align-items: start;
      /* border: #1e2b18 3px solid; */
    }
  
 .cardL:nth-of-type(5){
      grid-row: 2 /1 ;
    }

    /* Card 1 spans two rows */
    .cardL--tall {
      grid-row: span 2;
      
    }

    /* ── Shared card base ── */
 .cardL {
      border-radius: 20px;
      overflow: hidden;

      /* scroll-reveal initial state */
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .cardL.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered delays for the 5 cards */
    .cardL:nth-child(1) { transition-delay: 0.05s; }
    .cardL:nth-child(2) { transition-delay: 0.15s; }
    .cardL:nth-child(3) { transition-delay: 0.25s; }
    .cardL:nth-child(4) { transition-delay: 0.35s; }
    .cardL:nth-child(5) { transition-delay: 0.45s; }

    /* ── Card 1: Logo showcase (dark bottom) ── */
    .cardL--logo {
      /* background: #fff; */
      background: #1a1a1a;

      display: flex;
      flex-direction: column;
      /* border: blue 1px solid ; */
      padding: 15px;
    }

    .cardL--logo .cardL__visual {
      background: #F3EBE5;
      border-radius: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px 20px;
      min-height: 320px;
      overflow: hidden;
    }
    
    .cardL--logo .cardL__visual img {
      width: 120%;
      height: 100%;
      /* max-width: 400px; */
      object-fit: contain;
      /* filter: drop-shadow(0 6px 24px rgba(0,0,0,0.18)); */
    }

    .cardL--logo .cardL__body {
      background: #1a1a1a;
      color: #fff;
      padding: 22px 24px 26px;
      font-family: "inter" sans-serif;
      /* font-weight: 400; */
      /* border: #4caf50 1px solid ; */
    }

    .cardL--logo .cardL__label {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 8px;
      color: #fff;
    }

    .cardL--logo .cardL__body p {
      font-size: 0.82rem;
      line-height: 1.55;
      color: #ccc;
      
    }

    /* ── Card 2: 3-D icon (dark full bleed) ── */
    .cardL--icon {
      background: #1a1a1a;
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: center;
      /* min-height: 325px; */
    }

    .cardL--icon img {
      width: 480%;
      /* max-width: 200px; */
      object-fit: contain;
      
    }

    /* 3-D icon placeholder (triangle wireframe) */
    .icon-triangle {
      width: 120px;
      /* height: 120px; */
      position: relative;
      display: flex;
     
      align-items: center;
      justify-content: center;
    }
    


    /* ── Card 3: Stat pill ── */
    .cardL--stat {
      background: #dbdbdb;
      padding: 28px 26px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 200px;
    }

    .cardL--stat .stat__number {
      font-size: 2.4rem;
      font-weight: 900;
      font-family: gotham-bold;
      color: #111;
      line-height: 1;
      margin-bottom: 12px;
      
    }

    .cardL--stat .stat__body {
      font-size: 0.82rem;
      line-height: 1.6;
      color: #333;
      font-family: "inter" sans-serif;
      font-weight: 400;
    }

    .cardL--stat .stat__body strong {
      font-weight: 800;
    }

    /* ── Card 4: Light logo (Agenly) ── */
    .cardL--light-logo {
      background: #e6e5e5;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
      padding: 28px;
       overflow: hidden;
       min-height: 200px;
    }

    .cardL--light-logo .agenly-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      /* gap: 12px; */
      width: 100%;
      height: 100px;
      /* border: #4caf50 1px solid ; */
    }


   .agenly-logo img{
    width: 150%;
    /* height: 100px; */
    object-fit: contain;
    /* border: #abbe05 1px solid ; */
   }
  
    /* ── Card 5: Hair photo (Klassique Tresses) ── */
    .cardL--photo {
      background: #111;
      position: relative;
      /* min-height: 220px; */
      overflow: hidden;
      /* border: #f70303 2px solid; */
    }
    

  /* Dark hair bg fallback */
    .hair-bg {
      width: 100%;
      height: 320px;
      position: relative;
      /* border: #6c0bda 1px solid ; */
      display: flex;
       justify-content: center;
      align-items: center;
    }

    .hair-bg img {
      width: 100%;
      /* height: 100%; */
      object-fit: cover;
      /* border: #57c412 1px solid; */

    }

  
    /* ── Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      .cardL {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /

    /* ── 1024px: large tablet / small laptop ── */
    @media (max-width: 1024px) {
      .logo-section {
        max-width: 960px;
        padding: 56px 28px 72px;
      }

      .logo-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }

      .cardL--tall {
        grid-row: span 2;
      }

      .cardL--logo .cardL__visual {
        min-height: 290px;
        padding: 28px 20px 18px;
      }

      .cardL--icon {
        min-height: 260px;
      }

      .cardL--light-logo .agenly-logo .logo-text {
        font-size: 1.65rem;
      }

      .cardL--stat {
        min-height: 185px;
        padding: 24px 22px;
      }

      .cardL--stat .stat__number {
        font-size: 2.1rem;
      }
       .stat__body{
        
      }

      .cardL--photo {
        min-height: 200px;
      }
    }

    /* ── 768px: tablet portrait ── */
    @media (max-width: 768px) {
      .logo-section {
        padding: 48px 20px 64px;
      }

      .logo-section__grid {
        grid-template-columns: 1fr,1fr;
        grid-template-rows: auto;
        gap: 12px;
      }

      /* tall card full-width row on tablet */
      .cardL--tall {
        min-height: 565px;
        grid-row: 1/3;
        grid-column: span 1;
      }

      /* logo card goes side-by-side (visual | text) */
      .cardL--logo {
        flex-direction: colum;
        align-items: stretch;
      }

      .cardL--logo .cardL__visual {
        min-height: 220px;
        flex: 1;
        padding: 24px 18px;
      }

      .cardL--logo .cardL__body {
        flex: 1;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      
      }

      .cardL--icon {
        min-height: 220px;
      }

      .cardL--light-logo {
        min-height: 230px;
        padding: 20px;
      }

      .cardL--light-logo .agenly-logo .logo-text {
        font-size: 1.5rem;
      }

      .cardL--stat {
        min-height: 160px;
        padding: 20px 18px;
      }

      .cardL--stat .stat__number {
        font-size: 1.9rem;
        margin-bottom: 10px;
      }

      .cardL--photo {
        min-height: 190px;
      }
    }

    /* ── 480px: mobile ── */
    @media (max-width: 480px) {
      .logo-section {
        padding: 36px 14px 56px;
      }

      .logo-section__title {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
      }

      .logo-section__subtitle {
        font-size: 0.8rem;
      }

      .logo-section__grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      /* reset all spanning — single column */
      .cardL--tall {
        grid-row: span 1;
        grid-column: span 1;
      }

      /* logo card stacks back to column on mobile */
      .cardL--logo {
        flex-direction: column;
      }

      .cardL--logo .cardL__visual {
        min-height: 200px;
        padding: 24px 18px 16px;
      }

      .cardL--logo .cardL__body {
        padding: 18px 20px 22px;
      }

      .cardL--icon {
        min-height: 180px;
      }

      .icon-triangle svg {
        width: 90px;
        height: 90px;
      }

      .cardL--light-logo {
        min-height: 140px;
        padding: 18px;
      }

      .cardL--light-logo .agenly-logo .logo-text {
        font-size: 1.4rem;
      }

      .cardL--light-logo .agenly-logo .logo-mark svg {
        width: 28px;
        height: 28px;
      }

      .cardL--stat {
        min-height: 150px;
        padding: 20px 18px;
      }

      .cardL--stat .stat__number {
        font-size: 1.8rem;
      }

      .cardL--stat .stat__body {
        font-size: 0.78rem;
      }

      .cardL--photo {
        min-height: 180px;
      }

      .klassique-brand .kt-name {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
      }
    }

    .section6{
    /* background: #8aff00; */
    position: relative;
    /* border: #4facfe 2px solid ; */
    /* bottom: 241px; */
    }
    .testimonials-section{
      /* border: #f00000 2px solid ; */
       /* max-width: 1440px; */
       background: #8aff00;
       /* padding: 50px; */
       /* min-height: 500px; */
    }

.testimonials-heading {
  font-family:  sans-serif;
  text-align: center;
  font-size: 100px;
  color: #aaa;
  padding: 2rem ;
  background: #EEEEF0;
}

.testimonials-panel {
  /* border: blue 2px solid; */
  width: 100%;
  /* height:450px ; */
  max-width: 1440px;
   margin: 0 auto;
  /* background: #e9c008; */
  /* padding: 3rem 2.5rem 4rem; */
  /* display: grid; */
  /* grid-template-columns: 1fr 1fr; */
  /* gap: 2rem; */
  /* align-items: start; */
display: flex;
padding: 20px;
align-items: center;
gap: 10px;
justify-content:space-evenly;
}

.testimonials-quote-block {
  position: relative;
  padding: 1rem;
 /* border: #000000 2px solid ; */
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 height: 300px;
}

.testimonials-quote-block p{
font-family: "gotham-bold";
font-weight: 600;
padding: 10px;
font-size: 40px;

}

.quote-mark {
  font-size:100px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  
}
.quote-mark--start{
  font-family: "gotham-bold";
  color: #000000;
  align-self: flex-start;
   
}
.quote-mark--end {
  text-align: right;
  color: #000000;
font-family: "gotham-bold";
align-self: flex-end;
}

.testimonials-quote-text {
  
  font-size: 50px;
  font-weight: 700;
  margin: 0.5rem 0;
  line-height: 1.3;
  color: #000000;
}

.testimonial-card {
  background: #000000;
  border-radius: 20px;
  padding: 1.75rem 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  /* height: 400px; */
}

.testimonial-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe, #c850c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.testimonial-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.testimonial-text-col {
  flex: 1;
  text-align: center;
}

.testimonial-name {
  font-size: 19px;
  color: #fff;
  margin: 0 0 10px;
}

.testimonial-review {
  font-size: 13.5px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.carousel-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .testimonials-panel {
    grid-template-columns: 1fr;
  }
  .testimonials-quote-block {
    padding-top: 1.5rem;
  }
  .testimonials-heading{
    font-size: 80px;
    
  }
}

@media (max-width: 1024px) {
  .testimonials-panel {
    padding: 4rem 3rem 5rem;
  }
  .quote-mark{
    font-size: 70px;
   
  }
  .testimonials-quote-block p{
    font-size: 30px;
  }
}
.container7{
  /* margin: 0 auto; */
}
.section7{
  position: relative;
  /* background-color: rgb(247, 244, 244); */
  /* border: #e3f307 2px solid ; */
 /* bottom: 241px; */
   /* display: flex; */
  /* height: 700px; */
}
.character2{
/* width: 100%; */
/* background: rgb(199, 156, 228); */
  align-self: flex-end;
  height: 100%;
  width: 100%;
}


.pitch-in{
  /* max-width: 1440px; */
  /* margin: 0 auto; */
  /* border: blue 2px solid; */
  position: relative;
 display: flex;
/* align-items: center; */
/* justify-content: center;  */
background-color: rgb(247, 244, 244);
color: #000000;
font-size: 9em;
gap: 5.0px;
height: 500px;
width: 100%;
font-family: "inter",sans-serif;
font-weight: 550;

}

.pitch-text{
  position: relative;
  display: flex;
  /* flex: 1; */
  /* border: salmon 2px solid; */
align-self: center;
justify-self: center;
width: 100%;
}
.gradient-hover {
  color: #111;
  transition: color 0.2s ease;
}

.gradient-hover:hover {
  background-image: linear-gradient(90deg, #80FF00, #06B9C6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.pitch-text p{
  transition: 0.4s ease;
}
.pitch-text p:hover {
/* color: linear-gradient(90deg, #80FF00, #c850c0); */
/* color: #4caf50; */
transition: 0.4s ease;
 transform: scale(1.022);
}
.section7 img{
  position: relative;
  right: 21px;
  width: 700px;
  /* border: #4facfe 2px solid ; */
  height: 750px;
 object-fit: contain;
 align-self: flex-end;

}
.circle-arrow-btn {
  position: relative;
  top: 80px;
  left: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #111;
  transition: background 0.15s ease, transform 0.1s ease;
}

.circle-arrow-btn:hover {
  background: #80FF00;
  color: #020202;
   transform: scale(2.022);
}

.circle-arrow-btn:active {
  transform: scale(0.95);
}

/* <foooter section> */

.site-footer {
  /* min-width: 100vw; */
   /* background: #80FF00; */
  background: #050505;
  /* border: 1px solid #8aff00; */
  /* border-radius: 6px; */
  padding: 1.5rem 2rem;
  font-family: gotham-book;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* margin: 1.5rem; */
 
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-name {
  /* color: #000000; */
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.footer-copyright {
  font-size: 13px;
  color: #888;
}

.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-email {
  /* color: #000000; */
  color: #8aff00;
  font-size: 13px;
  text-decoration: none;
}

.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer-socials a {
  color: #a8a8a8;
  /* color: black; */
  font-size: 14px;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 768px) {
.site-footer{
  /* background:#06B9C6; */
  /* width: 100%; */
 /* height: 200px; */
}
  .site-footer {
       /* position: relative; */
      margin-bottom: 120px; 
     /* border: #8aff00 2px solid ; */
    /* min-height: 100%; */
    /* flex-direction: column; */
    text-align: center;
    justify-content: space-between;
  }
  .footer-contact {
    position: relative;
    display: flex;
     text-align: end;
     /* bottom: 80px; */
  }
  .footer-socials {
    justify-content: center;
  } 
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Desktop Laptop (1440px and above)
═══════════════════════════════════════════════════════════ */
 @media (max-width:1440px) {
  .hero-character img {
  height: 700px;
  width: 500px;
  }
  .hero-character{
    bottom: 120px;
    left: 30px;
  }
  .hero-content{
    font-size: 15px;
    /* border: #06B9C6 2px solid; */
    /* flex: 1 1 auto; */
  }
  .hero-name{
    font-size: 120px;
  }
  .hero-objects{
  top: 50px;
  /* border: #06B9C6 2px solid; */
  }
.object-worm  {
  left: 1px;
  top: 80px;
  }
.object-cube{
top:15px;
} 

.pitch-in img{
width: 700px;
height: 690px;
}
.pitch-text{
  /* border: #1e2b18 2px solid; */
  right: 100px;
  font-size: 0.9em;
  width: 100%;
}
.pitch-in{
  flex-grow: 1;
}
 }

/* RESPONSIVE — Desktop Laptop (1280px and below) */

 @media (max-width:1280px) {
   .hero-character img {
  height: 600px;
  width: 400px;
  }
  .hero-character{
    bottom: 130px;
    left: 10px;
  }
  .object-worm  {
/* border: #06B9C6 2px solid; */
top: 50px;
width: 50%;
height: 100%;
  }
  .object-cube {
    /* width: 50%; */
  top:-40px;
  /* margin-bottom: 100px; */

} 
   .hero-name{
    font-size: 6.2em;
  }
    .hero-content{
      position: relative;
      top: 170px;
    /* border: #06B9C6 2px solid; */
    /* flex: 1 1 auto; */
  }

  .pitch-text{
  /* border: #1e2b18 2px solid; */
  right: 100px;
  font-size: 0.8em;
  width: 100%;
}
.circle-arrow-btn{
  top: 60px;
}

 }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — basic small laptop / tablet adjustments
═══════════════════════════════════════════════════════════ */
 /* ─── Responsive ─────────────────────────────────────── */
 
@media (max-width: 1024px) {
  /* .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    padding: calc(var(--nav-height) + 40px) 24px 80px;
  } */

  .hero-objects,
  .hero-character {
    display: flex; 
  }

  .hero-content {
  /* border: #06B9C6 2px solid ; */
  font-size: 13px;
  top: 120px;
  /* width: 10%px; */
  }
 .hero-character img {
  height: 450px;
  width: 300px;
  }
  .hero-character{
    bottom: 130px;
    /* left: 10px; */
  }
  .object-worm  {
/* border: #06B9C6 2px solid; */
top: 10px;
width: 50%;
height: 100%;
  }
  .object-cube {
    /* border: #06B9C6 2px solid; */
    position: relative;
    /* margin-bottom: 200px; */
    width: 50%;
    height: 350px;
    top: -120px;
} 
.hero-bio{
  font-size:0.99em;
}
  .hero-name {
    white-space: normal;
    font-size: 6em;
  }

   .subject {
        padding: 48px 40px 64px;
      }
      .mw-top {
        gap: 36px;
      }
 .mini-bio{
  /* padding: 100px; */
  /* line-height: 1.2em; */
}
  .mini-bio p{
    font-size: 0.9em;
      }

      /* <carousel> */

      .carousel-viewport{
        height: 400px;
      }

 .card{
  height: 300px;
  
  /* border:#06B9C6 2px solid; */
 }

 /* <what they say> */

 .testimonials-heading{
  font-size: 6em;
 }
.section6{
  /* height: 500px; */
}
.testimonials-panel{
  height: 350px;
}
.testimonial-card{
min-height: 300px;
}
.testimonials-section{
/* height: 500px; */
}

 /* <what they say> */

  .pitch-text{
  /* border: #1e2b18 2px solid; */
  right: 200px;
  font-size: 0.6em;
  width: 100%;
  /* height: 300px; */
}
.pitch-text p {
font-size: 1em;
width: 120%;
height: 100%;
}

.circle-arrow-btn{
  /* border: #06B9C6 2px solid; */
  left: 90px;
  top: 40px;
 min-width: 45px;
min-height: 45px;
}
.pitch-in{
  gap: 120px;
  /* background: blue; */
  height: 400px;
}

.pitch-in img{
width: 850px;
height: 575px;
}
}


/* <Tablet screens > */

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .nav-links {
    gap: 28px;
  }

  .hero-name {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }
  /* .card { flex: 0 0 calc(80% - 8px); } */

  .subject {
        padding: 36px 24px 56px;
      }
      .mw-play{
        min-width: 100px;
        min-height: 100px;
      }
       .mw-play svg{
        min-width: 70px;
        min-height:70px ;
       }
      .mw-top {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .mw-desc-col {
        padding-top: 0;
      }
      .mw-play {
        width: 64px;
        height: 64px;
      }
      .mw-play svg {
        width: 22px;
        height: 22px;
        margin-left: 4px;
      }

      /* <hero section> */

      .hero-objects,
  .hero-character {
    display: flex; 
  }

  .hero-content {
    display: block;
  /* border: #06B9C6 2px solid ; */
  font-size: 20px;
  top: 120px;
  /* width: 10%px; */
  }
 .hero-character img {
  height: 550px;
  width: 300px;
  }
  .hero-character{
    bottom: 60px;
    /* left: 10px; */
  }
  .object-worm  {
/* border: #06B9C6 2px solid; */
top: 100px;
left: -70px;

width: 70%;
height: 100%;

  }
  .object-cube {
    /* border: #06B9C6 2px solid; */
    position: relative;
    /* margin-bottom: 200px; */
    /* left: 10px; */
    width: 60%;
    height: 350px;
    top: -30px;
} 
.hero-bio{
  /* border: yellow 2px solid ; */
  width: 40%;
  height: 100px;
  display: block;
  font-size:0.7em;
}
  .hero-name {
    white-space: normal;
    font-size: 6em;
  }
.hero-titles{
  font-size: 1.5em;
}
/* < hero section> */

.mini-bio{
  /* padding: 100px; */
  line-height: 1.1em;
  width: 100%;
  height: 200px;
}
  .mini-bio p{
    font-size: 20px;
      }
      .btn-about{
  /* border: greenyellow 2px solid ; */
  width: 100px;
  height: 100px;
}

/* <carousel> */

.subject{
  padding: 40px;
  /* border: #06B9C6 2px solid ; */
  /* width: 700px; */
  /* display:block ;
align-self: center;
justify-self: center; */
}
 /* <card viewport> */

.card{
/* border: salmon 2px solid; */
width: 220px;
height: 250px;
}

.arrow-btn {
height:35px ;
width: 35px;
}
.arrow-btn svg {
height:20px ;
width: 20px;
}

 .carousel-viewport{
  display: flex;
  justify-content: center;
  align-items: center; 

 }
 .cards-track{
  /* border: #06B9C6 2px solid ; */
  gap: 20px;
 }
 /* <card viewport> */

 /* <what they say> */

.testimonials-heading{
  font-size: 4em;
 }
.section6{
  /* height: 500px; */
}
.testimonials-panel{
  height: 300px;
}
.testimonial-card{
min-height: 230px;
}
.testimonials-section{
/* height: 500px; */
}

 .testimonials-quote-block{
  /* border: #000 2px solid ; */
  /* width: 400px; */
  /* height: 250px; */
  padding: 30px;
 }
 .testimonials-quote-block p {
  font-size: 26px;
  /* border: #06B9C6 2px solid; */
    /* width: 300px; */
    /* height: 200px; */
  }
  .pitch-text{
  /* border: #1e2b18 2px solid; */
  right: 200px;
  font-size: 0.4em;
  width: 100%;
  /* height: 300px; */
}
.pitch-text p {
font-size: 1.1em;
width: 180%;
height: 100%;
}
.pitch-in img{
width: 850px;
height: 505px;
}
.circle-arrow-btn{
  /* border: #06B9C6 2px solid; */
  left: 140px;
  top: 30px;
 min-width: 30px;
min-height: 30px;
}
}


/* <for mobile  display > */

@media (max-width: 480px) {
.navbar {
   /* border: #06B9C6 2px solid ; */
    padding: 0 20px;
    justify-content: space-between;
    width: 100%;
    
  }
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger-btn {
   
    display: flex;
  }

  .nav-links, .nav-cta { display: none; }
  .burger-btn { display: flex; }

  .btn-contact {
    font-size: 0.78rem;
    padding: 7px 16px;
  }
  
/* <hero section> */
      .hero-objects,
  .hero-character {
    display: flex; 
  }

  .hero-content {
  display: block;
  /* border: #c64306 2px solid ; */
  font-size: 22px;
  top: 50px;
  /* width: 10%px; */
  }
 .hero-character img {
  height: 350px;
  width: 100%;
  }
  .hero-character{
    bottom: 50px;
    left: 0px;
  }
  .object-worm  {
/* border: #06B9C6 2px solid; */
top:60px;
left: -40px;
width:60%;
height: 100%;

  }
  .object-cube {
    /* border: #06B9C6 2px solid; */
    position: relative;
    /* margin-bottom: 200px; */
    /* left: 10px; */
    width: 150px;
    height: 150px;
    top: 20px;
} 
.hero-bio{
  /* border: yellow 2px solid ; */
  width: 80%;
  height: 100px;
  display: block;
  font-size:0.6em;
}
  .hero-name {
    white-space: normal;
    font-size: 4em;
  }
.hero-titles{
  font-size: 1em;
  /* border: #06B9C6 20px solid; */
}
.hero-bar{
  height: 40px;
}
/* < hero section> */

  .mini-bio{
    display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
  /* padding: 100px; */
  line-height: 1em;
  width: 100%;
  height: 250px;
  /* border: #06B9C6 2px solid ; */
}

  .mini-bio p{
    font-size: 15px;
    
      }

      .btn-about{
        /* background-color: #2adf06; */
  /* border: greenyellow 2px solid ; */
  width: 100px;
  height: 100px;
}
 .cards-track{
padding: 0 5px;

 }
   .card { flex: 1 1 auto ; }
   


   .card{
/* border: salmon 2px solid; */
width: 350px;
height: 350px;
}

.arrow-btn {
height:35px ;
width: 35px;
}
.arrow-btn svg {
height:20px ;
width: 20px;
}

 .carousel-viewport{
  display: flex;
  justify-content: flex-start;
  align-items: center; 
 }

   .subject {
        padding: 28px 16px 48px;
      }
       .mw-play{
        min-width: 70px;
        min-height: 70px;
      }
       .mw-play svg{
        min-width: 50px;
        min-height:50px ;
       }
      .mw-headline {
        font-size: 28px;
      }
      .mw-play {
        width: 54px;
        height: 54px;
      }
      .mw-play svg {
        width: 18px;
        height: 18px;
      }
      .mw-corner-btn {
        width: 38px;
        height: 38px;
      }

      .testimonials-heading{
  font-size: 3em;

 }

.section6{
  margin: 0 auto;
  display: block;
  /* height: 500px; */
}
.testimonials-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  height: 500px;
 
}
.testimonial-card{
min-height: 250px;
min-width: 350px;
 top: -50px;
 /* border: salmon 2px solid; */
}

.testimonials-section{
 width: 100%;
 /* height: 100%; */
/* background: orange; */
/* height: 500px; */
padding: 10px;
}

 .testimonials-quote-block{
  /* border: #000 2px solid ; */
  width: 100%;
  height: 150px;
  top: -40px;
 }

 .quote-mark--start{
  font-size: 50px;
 }
  .quote-mark--end{
  font-size: 50px;
 
 }
 .testimonials-quote-block p {
  font-size: 20px;
  /* border: #06B9C6 2px solid; */
  min-width: 250px;
    /* height: 200px; */
  }

.section7{
  width: 100%;
  margin: 0 auto;
}
.pitch-in{
  height: 250px;
  width: 100%;
  /* border: #06B9C6 2px solid ; */
}
 .pitch-text{
  top: 10px;
  /* border: hsl(0, 0%, 0%) 2px solid; */
  right: 180px;
  font-size: 0.4em;
  width: 100%;
/* background-color: #06B9C6; */
top: ;
  /* height: 300px; */
}
.pitch-text p {
font-size: 0.7em;
width: 150%;
height: 100%;
}
.pitch-in img{
width: 80%;
height: 150%;
}
.circle-arrow-btn{
  /* border: #06B9C6 2px solid; */
  left: 5px;
  top: 10px;
 min-width: 30px;
min-height: 30px;
}
.circle-arrow-btn:hover {
   transform: scale(1.2);
}

  .site-footer {
  width:100% ;
    display: flex;
       /* position: relative; */
      margin-bottom: 0px; 
     /* border: #8aff00 2px solid ; */
    /* min-height: 100%; */
    flex-direction: column;
    text-align: center;
    /* gap: 10px; */
    /* justify-content: space-between; */
  }
  .footer-contact {
    align-items: center;
  }
  .footer-socials {
    /* justify-content: center; */
  } 
    }



@media (max-width: 375px){

.navbar{
   background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

  .mobile-link { font-size: 2rem; }
  .mobile-menu-inner { padding: calc(var(--nav-height) + 28px) 18px 32px; } 

.navbar{
  width:100%;
}

 /* <hero section> */
      .hero-objects,
  .hero-character {
    display: flex; 
  }

  .hero-content {
    display: block;
  /* border: #06B9C6 2px solid ; */
  font-size: 15px;
  top: 60px;
  /* width: 10%px; */
  }
 .hero-character img {
  height: 250px;
  width: 150px;
  }
  .hero-character{
    bottom: 70px;
   
    /* left: 10px; */
  }
  .object-worm  {
/* border: #06B9C6 2px solid; */
top:-10px;
left: -10px;
width: 50%;
height: 100%;

  }
  .object-cube {
    /* border: #06B9C6 2px solid; */
    position: relative;
    /* margin-bottom: 200px; */
    /* left: 10px; */
    width: 150px;
    height: 150px;
    top: -50px;
} 
.hero-bio{
  /* border: yellow 2px solid ; */
  width: 70%;
  height: 100px;
  display: block;
  font-size:0.6em;
}
  .hero-name {
    white-space: normal;
    font-size: 5em;
  }
.hero-titles{
  font-size: 1em;
  /* border: #06B9C6 20px solid; */
}
.hero-bar{
  height: 40px;
}
/* < hero section> */

.mini-bio{
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 100px; */
  line-height: 1em;
  width: 100%;
  height: 300px;
}
  .mini-bio p{
    font-size: 15px;
      }

      .btn-about{
  /* border: greenyellow 2px solid ; */
  width: 100px;
  height: 100px;
}
   .card { flex: 1 1 auto ; }
   
    .cards-track{
padding: 0 5px;
 }
   .card{
/* border: salmon 2px solid; */
width: 310px;
height: 350px;
}

.arrow-btn {
height:35px ;
width: 35px;
}
.arrow-btn svg {
height:20px ;
width: 20px;
}

 .carousel-viewport{
  /* border: #000 2px solid ; */
  display: flex;
  justify-content: flex-start;
  align-items: center; 
 }

.testimonials-heading{
  font-size: 2.5em;

 }

.section6{

  margin: 0 auto;
  display: block;
  /* height: 500px; */
}
.testimonials-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  height: 500px;
 
}
.testimonial-card{
min-height: 250px;
min-width: 350px;
 top: -50px;
 /* border: salmon 2px solid; */
}

.testimonials-section{
 width: 100%;
 /* height: 100%; */
/* background: orange; */
/* height: 500px; */
padding: 10px;

}

 .testimonials-quote-block{
  /* border: #000 2px solid ; */
  width: 100%;
  height: 150px;
  top: -50px;
 }

 .quote-mark--start{
  font-size: 50px;
 }
  .quote-mark--end{
  font-size: 50px;
 
 }
 .testimonials-quote-block p {
  font-size: 20px;
  /* border: #06B9C6 2px solid; */
  min-width: 250px;
    /* height: 200px; */
  }

.section7{
  max-width: 375px;
  margin: 0 auto;
}
.pitch-in{
  height: 250px;
}
 .pitch-text{
  top: 10px;
  /* border: hsl(101, 28%, 13%) 2px solid; */
  right: 180px;
  font-size: 0.4em;
  width: 100%;
/* background-color: #06B9C6; */
top: ;
  /* height: 300px; */
}
.pitch-text p {
font-size: 0.7em;
width: 150%;
height: 100%;
}
.pitch-in img{
width: 80%;
height: 150%;
}
.circle-arrow-btn{
  /* border: #06B9C6 2px solid; */
  left: 5px;
  top: 10px;
 min-width: 30px;
min-height: 30px;
}

  .site-footer {
  width:100% ;
    display: flex;
       /* position: relative; */
      margin-bottom: 0px; 
     /* border: #8aff00 2px solid ; */
    /* min-height: 100%; */
    flex-direction: column;
    text-align: center;
    /* gap: 10px; */
    /* justify-content: space-between; */
  }
  .footer-contact {
    align-items: center;
  }
  .footer-socials {
    /* justify-content: center; */
  } 
}


    
/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — Slide in effects with fade-in
═══════════════════════════════════════════════════════════ */

/* Word stagger animation */
@keyframes slideInWord {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .word {
  display: inline-block;
  margin-right: 0.2em;
  animation: slideInWord 0.6s ease-out forwards;
  opacity: 0; /* start hidden */
}

/* Stagger effect: each word has a delay */
.hero-content .word:nth-child(1) { animation-delay: 0s; }
.hero-content .word:nth-child(2) { animation-delay: 0.1s; }
.hero-content .word:nth-child(3) { animation-delay: 0.2s; }
/* ... and so on for each word */

/* Slide in from left + fade */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from right + fade */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide in from bottom + fade */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
