  :root {
      --bg: #000000;
      --accent: #D4AF37; /* Gold */
      --text: #FFFFFF;
      --muted: #CCCCCC;
      --max-width: 100%;
      --min-enforced-width: 1300px;
      --safe-gap: 28px;
      --section-pad: 80px;
      --navbar-height: 60px;
      --font-sans: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      --fs-xl: clamp(34px, 9vw, 140px);
      --fs-sub: clamp(18px, 4vw, 45px);
      --fs-quote: clamp(15px, 3vw, 24px);
      --fs-lg: clamp(24px, 4vw, 36px);
      --fs-md: clamp(14px, 2.5vw, 18px);
      --fs-sm: clamp(14px, 2.5vw, 18px);
      --fs-btn: clamp(14px, 2.5vw, 17px);
      --glass: rgba(255,255,255,0.03);
      --overlay-black: rgba(0,0,0,0.55);
      --transition: 500ms cubic-bezier(0.25, 0.1, 0.25, 1);
      --shadow-soft: 0 8px 24px rgba(0,0,0,0.5);
      --border-radius: 10px;
      --card-padding: 22px;
    }

    /********************************************************************
     * BASE / RESET
     ********************************************************************/
    html {
      scroll-behavior: smooth;
      image-rendering: crisp-edges;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html, body { height: 100%; margin: 0; font-family: var(--font-sans); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; }
    ul { list-style: none; margin: 0; padding: 0; }

    body {
      font-size: clamp(14px, 2.5vw, 16px);
      line-height: 1.5;
    }

    p, .quote, .sub-title {
      overflow-wrap: break-word;
      hyphens: auto;
    }

    .site-wrapper {
      width: 100%;
      min-height: 100vh;
      overflow-x: hidden;
      padding-top: var(--navbar-height);
    }

    /********************************************************************
     * STICKY NAVBAR
     ********************************************************************/
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--navbar-height);
      background: #000;
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--safe-gap);
      z-index: 100;
      transition: var(--transition);
      opacity: 0;
    }

    .navbar.loaded {
      opacity: 1;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .navbar__logo {
      font-size: clamp(10px, 2vw, 25px);
      font-weight: 700;
      color: var(--accent);
    }

    .navbar__link {
      position: relative;
      font-size: var(--fs-sm);
      font-weight: 500;
      color: var(--muted);
      transition: color var(--transition);
    }

    .navbar__link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .navbar__link:hover {
      color: var(--text);
    }

    .navbar__link:hover::after {
      width: 100%;
    }

    .navbar__hamburger {
      display: none;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
    }

    .navbar__hamburger span {
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: var(--transition);
    }

    .navbar__hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar__hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .navbar__hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /********************************************************************
     * HERO SECTION
     ********************************************************************/
    .hero {
      position: relative;
      min-height: calc(100vh - var(--navbar-height));
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 60px 100px 40px;
      background: #000;
      overflow: hidden;
      isolation: isolate;
      text-align: left;
    }

    .hero__bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-image: url('Whisk_54dad5b5b4cc9da86ee401f9919236c7dr.jpeg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      z-index: -1;
      filter: brightness(0.7) contrast(1.2);
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
      z-index: 1;
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .brand h1 {
      margin: 0;
      font-size: var(--fs-xl);
      letter-spacing: -1px;
      line-height: 1.1;
      font-weight: 900;
      color: var(--accent);
      text-shadow: 0 4px 20px rgba(212,175,55,0.25);
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity var(--transition), transform var(--transition);
    }

    .brand .sub-title {
      margin: 0;
      font-size: var(--fs-sub);
      color: var(--text);
      font-weight: 700;
      line-height: 1.4;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity var(--transition), transform var(--transition);
      transition-delay: 300ms;
    }

    .brand .quote {
      margin: 0;
      font-size: var(--fs-quote);
      color: var(--muted);
      font-style: italic;
      letter-spacing: 0.4px;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity var(--transition), transform var(--transition);
      transition-delay: 600ms;
    }

    .brand.is-visible h1,
    .brand.is-visible .sub-title,
    .brand.is-visible .quote {
      opacity: 1;
      transform: translate(0, 0);
    }

    .hero__cta {
      margin-top: 20px;
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 56px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 8px;
      opacity: 0.9;
      transition: opacity 220ms;
    }

    .scroll-indicator .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--muted);
      animation: fade 2s infinite ease-in-out;
    }

    @keyframes fade {
      0% { opacity: 1; }
      50% { opacity: 0.5; }
      100% { opacity: 1; }
    }

    /********************************************************************
     * SECTIONS: shared styles
     ********************************************************************/
    main { display: block; }
    section {
      padding: var(--section-pad) var(--safe-gap);
      position: relative;
    }

    .container {
      width: 100%;
      max-width: none;
      margin: 0 auto;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .section-title h2 {
      margin: 0;
      font-size: var(--fs-lg);
      letter-spacing: -0.3px;
      font-weight: 700;
      line-height: 1.2;
    }

    .section-title .accent-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), rgba(212,175,55,0.6));
      border-radius: 3px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 600ms ease, transform 600ms ease;
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /********************************************************************
     * WHAT WE OFFER GRID
     ********************************************************************/
    #projects {
      margin: 40px 0 60px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(400px, 400px));
      gap: 24px;
      align-items: stretch;
      justify-content: center;
    }


    /********************************************************************
     * CREATORS SECTION
     ********************************************************************/
    .creators {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 8px;
      align-items: stretch;
      justify-content: center;
    }

    .creator-card {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      aspect-ratio: 3 / 4;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      border: 1px solid rgba(255,255,255,0.08);
    }

   

    .creator-btn {
      margin-top: 14px;
      padding: 10px 22px;
      font-size: clamp(14px, 2.5vw, 15px);
      border-radius: 8px;
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-weight: 600;
      transition: all 0.3s ease;
      backdrop-filter: blur(3px);
    }

    .creator-btn:hover {
      background: var(--accent);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 18px rgba(212,175,55,0.4);
    }

    .creator-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 20px;
      background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.58) 100%);
      pointer-events: none;
    }

    .creator-card:hover .creator-hover {
      opacity: 1;
      transform: translateY(0);
      border-color: rgba(212,175,55,0.3);
    }

    .creator-card:hover {
      transform: translateY(-6px);
    }

    .creator-card:hover img { transform: scale(1.04); }

    .creator-hover h4 {
      margin: 0 0 6px;
      font-size: clamp(14px, 2.5vw, 16px);
      color: var(--text);
      line-height: 1.3;
    }

    .creator-hover p {
      margin: 0;
      color: var(--muted);
      font-size: clamp(14px, 2.5vw, 16px);
      line-height: 1.7;
    }

    /********************************************************************
     * FEATURES / SERVICES / TESTIMONIALS
     ********************************************************************/
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .feature {
      padding: var(--card-padding);
    }

    .feature h4 { margin: 0 0 8px; font-size: var(--fs-md); font-weight: 600; line-height: 1.3; }
    .feature p { margin: 0; color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      padding: var(--card-padding);
      border-radius: var(--border-radius);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow-soft);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }

    .service-card h3 { margin: 0; font-size: var(--fs-md); font-weight: 600; line-height: 1.3; }
    .service-card p { margin: 0; color: var(--muted); font-size: var(--fs-sm); line-height: 1.7; }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      border-color: rgba(212,175,55,0.3);
    }

    .service-card a {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 8px;
      border: 1px solid rgba(212,175,55,0.14);
      background: transparent;
      color: var(--text);
      font-size: var(--fs-btn);
      font-weight: 600;
      transition: background var(--transition), transform var(--transition);
    }

    .service-card a:hover {
      background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(212,175,55,0.04));
      transform: translateY(-3px);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .testimonial {
      padding: var(--card-padding);
      color: var(--muted);
      font-size: clamp(14px, 2.5vw, 17px);
      line-height: 1.7;
    }

    .testimonial strong { color: var(--text); display: block; margin-bottom: 8px; }

    .testimonial-cta {
      text-align: center;
      margin-top: 40px;
    }

    .testimonial-cta .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 36px;
      border-radius: 10px;
      background: transparent;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-weight: 600;
      font-size: clamp(14px, 2.5vw, 17px);
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
    }

    .testimonial-cta .btn:hover {
      background: var(--accent);
      color: #000;
      transform: translateY(-2px);
      box-shadow: 0 0 15px rgba(212,175,55,0.4);
    }

    /********************************************************************
     * FOOTER
     ********************************************************************/
    footer {
      position: relative;
      z-index: 2;
      background: rgba(0, 0, 0, 0.95);
      color: var(--muted);
      font-size: clamp(12px, 2vw, 13px);
      padding: 10px 40px;
      border-top: 1px solid rgba(212, 175, 55, 0.25);
      line-height: 1.5;
    }

    footer .footer-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    footer .footer-copy {
      text-align: left;
      font-size: clamp(12px, 2vw, 13px);
      color: var(--muted);
      opacity: 0.85;
    }

    footer .footer-brand {
      text-align: center;
      flex: 1;
      font-weight: 700;
      color: var(--text);
      font-size: clamp(14px, 2.5vw, 16px);
    }

    footer .footer-socials {
      text-align: right;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
    }

    footer .footer-socials span {
      margin-right: 4px;
    }

    footer .footer-icon svg {
      transition: transform 0.3s ease;
    }

    footer .footer-icon svg:hover {
      transform: scale(1.15);
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      footer .footer-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
      }
      footer .footer-copy,
      footer .footer-brand,
      footer .footer-socials {
        text-align: center;
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      html, body {
        overflow-x: hidden;
      }

      .site-wrapper {
        padding-top: 50px;
      }

      .navbar {
        padding: 0 14px;
        height: 50px;
      }

      .navbar__menu {
        gap: 10px;
        padding: 14px;
      }

      .navbar__link {
        font-size: clamp(14px, 3vw, 14px);
      }

      .hero {
        padding: 60px 14px 40px;
        text-align: center;
        justify-content: center;
      }

      .brand h1 {
        line-height: 1.1;
      }

      .brand .sub-title {
        margin-top: 8px;
      }

      .quote {
        margin-top: 6px;
      }

      .hero__cta {
        flex-direction: column;
        gap: 12px;
      }

      .btn {
        padding: clamp(10px, 2.5vw, 14px) clamp(20px, 6vw, 28px);
        font-size: var(--fs-btn);
        width: 100%;
        justify-content: center;
      }

      section {
        padding: clamp(40px, 10vw, 60px) clamp(14px, 5vw, 20px);
      }

      .section-title h2 {
        font-size: var(--fs-lg);
      }

      .section-title .accent-line {
        width: 40px;
        height: 2px;
      }

      #about p,
      section p {
        font-size: clamp(14px, 3vw, 15px);
        line-height: 1.7;
      }

      .projects-grid,
      .services-grid,
      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .project-card,
      .service-card,
      .feature,
      .testimonial {
        padding: 16px;
      }

      .project-card h3,
      .service-card h3,
      .feature h4 {
        font-size: clamp(14px, 4vw, 17px);
      }

      .project-card p,
      .service-card p,
      .feature p,
      .testimonial {
        font-size: clamp(14px, 3vw, 14px);
      }

      .creators {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .creator-card {
        aspect-ratio: 3 / 4;
      }

      .creator-hover p {
        font-size: clamp(14px, 3vw, 13px);
        line-height: 1.6;
        padding: 0 10px;
      }

      .creator-btn {
        width: 100%;
        font-size: clamp(12px, 3vw, 13px);
        padding: 10px 0;
      }

      footer {
        padding: 20px 14px;
        font-size: clamp(11px, 3vw, 13px);
        text-align: center;
      }

      footer .footer-container {
        flex-direction: column;
        gap: 8px;
      }

      footer .footer-brand {
        font-size: clamp(14px, 4vw, 16px);
      }

      footer .footer-socials {
        justify-content: center;
      }
    }

    @media (max-width: 300px) {
      :root {
        --fs-xl: clamp(28px, 9vw, 34px);
        --fs-sub: clamp(16px, 4vw, 18px);
        --fs-quote: clamp(14px, 3vw, 15px);
      }
    }
/* 📱 Mobile Optimization for Team Section (Real phones ~360–430px) */


    @media (max-width: 400px) {
      :root {
        --fs-xl: clamp(30px, 9vw, 38px);
      }
    }

    @media (min-width: 720px) and (max-width: 1000px) {
      :root {
        --fs-xl: clamp(50px, 8vw, 80px);
        --fs-sub: clamp(20px, 4vw, 30px);
        --fs-quote: clamp(16px, 3vw, 20px);
      }
    }

    @media (min-width: 1200px) and (max-width: 1600px) {
      :root {
        --fs-xl: clamp(60px, 8vw, 100px);
      }
    }

    @media (max-width: 1300px) {
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 1000px) {
      .projects-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 900px) {
      .hero {
        padding: 48px 20px;
      }
      .projects-grid, .features-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .creators { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .creators { grid-template-columns: 1fr; }
    }

    @media (min-width: 1300px) {
      body {
        min-width: var(--min-enforced-width);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .scroll-indicator .dot, .reveal, .brand, .creator-hover, img, .project-card:hover, .service-card:hover, .navbar { transition: none !important; animation: none !important; transform: none !important; }
    }

    .project-card,
    .feature,
    .service-card,
    .testimonial {
      background: #0a0a0a;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 8px 24px rgba(0,0,0,0.6);
      border-radius: var(--border-radius);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .project-card:hover,
    .feature:hover,
    .service-card:hover,
    .testimonial:hover {
      transform: translateY(-6px);
      border-color: rgba(212,175,55,0.4);
      box-shadow: 0 12px 30px rgba(212,175,55,0.15);
    }

    .intro-genesis {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      overflow: hidden;
      text-align: center;
      opacity: 1;
      transition: opacity 1s ease;
    }

    .intro-circuits {
      position: absolute;
      width: 100%;
      height: 100%;
      stroke: var(--accent);
      stroke-width: 1;
      fill: none;
      opacity: 0.6;
    }

    .intro-circuits .line {
      stroke-dasharray: 2000;
      stroke-dashoffset: 2000;
      animation: drawLine 2.8s ease forwards;
    }

    @keyframes drawLine {
      0% { stroke-dashoffset: 2000; opacity: 0; }
      50% { opacity: 1; }
      100% { stroke-dashoffset: 0; opacity: 0.3; }
    }

    .intro-logo {
      font-size: clamp(60px, 10vw, 90px);
      font-weight: 900;
      color: var(--accent);
      letter-spacing: -1px;
      opacity: 0;
      filter: blur(10px);
      animation: logoReveal 1.8s ease forwards 2.2s;
      line-height: 1.1;
    }

    @keyframes logoReveal {
      0%   { opacity: 0; transform: scale(0.95); filter: blur(10px); }
      60%  { opacity: 1; transform: scale(1.02); filter: blur(0); text-shadow: 0 0 30px rgba(212,175,55,0.6); }
      100% { transform: scale(1); text-shadow: 0 0 10px rgba(212,175,55,0.3); }
    }

    .intro-sub {
      margin-top: 12px;
      font-size: clamp(18px, 4vw, 24px);
      color: var(--muted);
      opacity: 0;
      animation: subFadeUp 1.4s ease forwards 3.4s;
      line-height: 1.4;
    }

    @keyframes subFadeUp {
      0%   { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .intro-logo.pulse {
      animation: pulseGlow 2s ease-in-out infinite alternate;
    }

    @keyframes pulseGlow {
      from { text-shadow: 0 0 8px rgba(212,175,55,0.3); }
      to   { text-shadow: 0 0 20px rgba(212,175,55,0.6); }
    }

    .fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .hero .brand {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .hero.show-hero .brand {
      opacity: 1;
      transform: translateY(0);
    }
  .creators {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 calc((100% - 88%) / 2);
    margin: 0;
  }

  .creator-card {
    flex: 0 0 88%; /* shows one card centered with small next peek */
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    transition: transform 0.3s ease;
  }

  .creator-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Hide scrollbar */
  .creators::-webkit-scrollbar {
    display: none;
  }

  /* Dots navigation */
  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
    gap: 6px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    transition: background 0.3s ease;
  }

  .carousel-dot.active {
    background: var(--accent);
  }

/* === Team Carousel (Responsive) === */
.creators-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.creators-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

/* Desktop: show all side by side */
@media (min-width: 900px) {
  .creators-track {
    justify-content: center;
  }
  .creator-card {
    flex: 0 0 30%;
  }
}

/* Mobile: single-card carousel */
@media (max-width: 900px) {
  .creator-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .creators-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
    gap: 8px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    transition: background 0.3s ease;
  }

  .carousel-dot.active {
    background: var(--accent);
  }
}
/* === INTERACTIVE BUSINESS MINDMAP SECTION === */
/* === INTERACTIVE BUSINESS MINDMAP CLEAN FIX === */
#mindmap {
  background: transparent !important; /* Removes big black section background */
  padding-top: 60px;
  padding-bottom: 80px;
  color: var(--text);
  position: relative;
}

#mindmap .container {
  background: transparent !important; /* Removes inner container black box */
}

.mindmap-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: transparent !important; /* Removes black fill behind iframe */
}

.mindmap-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: transparent !important; /* Removes any default white/black iframe fill */
}

/* 📱 Mobile adjustments */
@media (max-width: 480px) {
  .mindmap-embed {
    aspect-ratio: 4 / 3;
  }
}

/* === Reduce gap between About and Offerings === */
#about {
  padding-bottom: 35px !important; /* was ~80px, tighten it */
}

#projects {
  padding-top: 40px !important; /* was ~80px, match for symmetry */
}

/* Optional: smooth visual flow on dark background */
#about::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  margin: 40px auto 0;
}/* 🟤 ELEGANT CTA STYLE — Premium but Subtle */
.btn,
.creator-btn,
.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 17px);
  text-transform: none;
  transition: all 0.35s ease;
  color: #e6c86e; /* soft muted gold text */
  background: rgba(212, 175, 55, 0.08); /* transparent gold tint */
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.1);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.3px;
}

.btn:hover,
.creator-btn:hover,
.service-card a:hover {
  color: #000;
  background: linear-gradient(90deg, #d4af37, #b8962e);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.btn::before,
.creator-btn::before,
.service-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
  z-index: -1;
}

.btn:hover::before,
.creator-btn:hover::before,
.service-card a:hover::before {
  opacity: 1;
}

/* 📱 Mobile Style */
@media (max-width: 480px) {
  .btn,
  .creator-btn,
  .service-card a {
    width: 100%;
    padding: 14px 0;
    font-size: clamp(14px, 4vw, 16px);
  }
}
#ctaPrimary {
  animation: softPulse 3s ease-in-out infinite alternate;
}

@keyframes softPulse {
  0% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.25); transform: scale(1); }
  100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.35); transform: scale(1.02); }
}
/* === Offerings Buttons === */
/* === Offerings Buttons — Elegant Breathing Pulse (All buttons pulse) === */
.offerings-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--accent);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.35s ease;
  font-size: clamp(14px, 2vw, 16px);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
  animation: pulseAll 1.2s ease-in-out infinite alternate; /* All buttons pulse softly */
}

/* Soft light diffusion for depth */
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-btn:hover::before {
  opacity: 1;
}

/* Hover — slightly stronger lift */
.filter-btn:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
  border-color: var(--accent);
}

/* ✨ Active State — slightly brighter and faster natural pulse */
.filter-btn.active {
  background: var(--accent);
  color: #000;
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.55);
  animation: pulseActive 0.5s ease-in-out infinite alternate;
}

/* 💡 Soft “breathing” animation for all buttons */
@keyframes pulseAll {
  0% {
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.25),
                0 0 14px rgba(212, 175, 55, 0.1);
  }
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4),
                0 0 20px rgba(212, 175, 55, 0.15);
  }
}

/* 🌕 Enhanced breathing pulse for the active button */
@keyframes pulseActive {
  0% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4),
                0 0 20px rgba(212, 175, 55, 0.2);
  }
  100% {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.65),
                0 0 26px rgba(212, 175, 55, 0.3);
  }
}

/* Accessibility: keyboard focus */
.filter-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* 📱 Mobile Optimization */
@media (max-width: 640px) {
  .offerings-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .filter-btn {
    width: 90%;
    max-width: 340px;
    font-size: 15px;
  }
}

/* === Offerings Grid (Always 3 Columns) === */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  justify-content: center;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.4s ease;
}

.project-card {
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.project-card h3 {
  margin: 16px 18px 6px;
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--accent);
}

.project-card p {
  margin: 0 18px 18px;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 15px);
  line-height: 1.6;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 12px 30px rgba(212,175,55,0.15);
}

/* Adjust spacing between service boxes */
#offeringsDisplay {
  display: grid;
  grid-template-columns: repeat(3, minmax(380px, 400px));
  justify-content: center;
  gap: 36px; /* increased from ~24px to 36px for breathing space */
  padding: 10px 0; /* small vertical padding inside section */
}

/* === Responsive Adjustments === */

/* Tablet: 2 columns */
@media (max-width: 992px) {
  #offeringsDisplay {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 28px;
  }
}

/* Mobile: 1 column vertical layout */


/* 📱 iPhone Text Optimization — #creators Section */
@media (max-width: 430px) {
  #creators .section-title h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
  }

  #creators .creator-hover h4 {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 8px;
  }

  #creators .creator-hover p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px;
    padding: 0 4px;
  }

  #creators .creator-hover ul li {
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 4px 0;
  }

  #creators .creator-overlay div {
    font-size: 0.8rem;
    line-height: 1.3;
  }

  #creators .creator-btn {
    font-size: 0.85rem;
    padding: 8px 14px;
    margin: 6px 0;
    border-radius: 6px;
  }

  #creators .carousel-dots {
    margin-top: 10px;
    transform: scale(0.9);
  }
}
/* BACK TO TOP BUTTON — bottom right with pulse */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
}

/* Hover lift */
#backToTop:hover {
  background: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

/* Show when scrolling */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  animation: pulse 1.7s infinite ease-in-out;
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 6px rgba(212,175,55,0.45); }
  50% { box-shadow: 0 0 16px rgba(212,175,55,0.9); }
  100% { box-shadow: 0 0 6px rgba(212,175,55,0.45); }
}

/* Hide on mobile */
@media(max-width: 700px) {
  #backToTop {
    display: none !important;
  }
}
/* === VERTICAL 3 COLUMN COMPARISON === */
.offerings-vertical {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 30px;
}

.offerings-col-title {
  font-size: 1.4rem;
  font-weight: 700;
color: var(--text) !important;
  margin-bottom: 18px;
  text-align: center;
}

/* Ensure consistent spacing */
.offerings-col article {
  margin-bottom: 22px;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .offerings-vertical {
    grid-template-columns: 1fr;
  }
}
/* 🖥️ Clean Spacious Layout for Large Screens */
@media (min-width: 1600px) {

  /* More breathing room around the whole Offerings section */
  #projects {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  /* Add more space between the 3 main columns */
  .offerings-vertical {
    gap: 60px !important;
  }

  /* Slightly increase gap between cards inside each column */
  .offerings-col article {
    margin-bottom: 36px !important;
  }

  /* Widen inner card spacing to match cleaner big-screen look */
  .project-card {
    padding-bottom: 10px !important;
  }
}
.cta-highlight {
  display:inline-block;
  padding:10px 18px;
  background:linear-gradient(90deg, #FFD700, #FFA500);
  color:#000;
  font-weight:700;
  border-radius:25px;
  text-decoration:none;
  transition:all 0.25s ease;
  border:2px solid #FFD700;
  box-shadow:0 0 12px rgba(255, 215, 0, 0.35);
}

.cta-highlight:hover {
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 0 18px rgba(255, 215, 0, 0.55);
  background:linear-gradient(90deg, #FFA500, #FFD700);
}

/* Desktop: show menu */
@media (min-width: 769px) {
  .navbar__menu {
    display: flex;
    justify-content: center;
    gap: 28px;
  }

  .navbar__hamburger {
    display: none;
  }
}


/* CTA BUTTON ON RIGHT */
.navbar__cta {
  background:linear-gradient(90deg, #FFD700, #FFA500);
  padding:10px 18px;
  border-radius:25px;
  color:#000;
  font-weight:700;
  text-decoration:none;
  border:2px solid #FFD700;
  box-shadow:0 0 12px rgba(255,215,0,0.35);
  transition:0.25s ease;
}

.navbar__cta:hover {
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 0 18px rgba(255,215,0,0.55);
}
/* Default hidden for mobile */
.navbar__menu {
  display: none; /* hidden on mobile by default */
  gap: 24px;
}

/* Desktop menu */
@media (min-width: 769px) {
  .navbar__menu {
    display: flex;
    justify-content: center;
    gap: 28px;
  }

  .navbar__hamburger {
    display: none; /* hide hamburger on desktop */
  }
}

/* Mobile menu */
@media (max-width: 768px) {
  .navbar__menu.active {
    display: flex !important; /* show only when toggled */
    flex-direction: column;
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    gap: 16px;
    z-index: 99;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
}
@media (max-width: 640px) {
  #offeringsDisplay {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
#projects.reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
/* MOBILE-ONLY FIX FOR CREATOR CAROUSEL */
@media (max-width: 768px) {

  .creators-track {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .creator-card {
    flex: 0 0 88%;  /* mobile-only width */
    scroll-snap-align: center;
  }
}
/* FIX: Creator hover text overflow on laptop & mobile */
.creator-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}
/* Make scrolling smooth & invisible */
.creator-hover::-webkit-scrollbar {
  width: 0;
}
/* Laptop readability (13" – 17") */
@media (min-width: 1024px) {
  .creator-hover h4 {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .creator-hover p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

/* Mobile 4–6 inches */
@media (max-width: 480px) {
  .creator-hover h4 {
    font-size: 1rem;
    line-height: 1.3;
  }

  .creator-hover p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .creator-hover ul li {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
/* ------- FIX: Prevent text cutoff in creator cards ------- */

/* Laptop 13–17 inches */
@media (min-width: 1024px) {
  .creator-hover h4 {
    font-size: 0.95rem !important;   /* slightly smaller */
    line-height: 1.28 !important;
  }

  .creator-hover p {
    font-size: 0.86rem !important;
    line-height: 1.45 !important;
  }

  .creator-hover ul li {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .creator-hover {
    padding: 16px !important; /* reduce padding so text fits */
  }
}

/* Mobile 4–6 inches */
@media (max-width: 480px) {
  .creator-hover h4 {
    font-size: 0.82rem !important;
    line-height: 1.25 !important;
  }

  .creator-hover p {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
  }

  .creator-hover ul li {
    font-size: 0.72rem !important;
    line-height: 1.3 !important;
  }

  .creator-hover {
    padding: 12px !important;  /* shrink padding to give more vertical room */
  }
}
/* -----------------------------------------------------------
   CREATOR CAROUSEL — Unified Clean Version
----------------------------------------------------------- */

/* Wrapper */
.creators-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track */
.creators-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
}

/* Desktop: 3 cards side-by-side */
@media (min-width: 900px) {
  .creators-track {
    justify-content: center;
  }

  .creator-card {
    flex: 0 0 30%;
  }
}

/* Mobile: swipe carousel behavior */
@media (max-width: 900px) {
  .creators-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .creator-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }

  /* Hide scrollbar */
  .creators-track::-webkit-scrollbar {
    display: none;
  }
}

/* -----------------------------------------------------------
   CREATOR CARDS
----------------------------------------------------------- */

.creator-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

.creator-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Subtle lift on hover */
.creator-card:hover {
  transform: translateY(-6px);
}

.creator-card:hover img {
  transform: scale(1.04);
}

/* -----------------------------------------------------------
   TEXT OVERLAY (Hover-on-Desktop + Tap-on-Mobile)
----------------------------------------------------------- */

.creator-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
 justify-content: flex-start;
align-items: center;
text-align: center;
padding-top: 16px;
padding-bottom: 16px;


  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
}

/* Desktop Hover Trigger */
@media (hover: hover) and (min-width: 900px) {
  .creator-card:hover .creator-hover {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Tap Trigger (the entire card is clickable) */
@media (max-width: 899px) {
  .creator-card.active .creator-hover {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove scrollbar on overlay */
.creator-hover::-webkit-scrollbar {
  display: none;
}

/* Text styles */
.creator-hover h4,
.creator-hover p,
.creator-hover ul,
.creator-hover li {
  color: #fff;
  margin: 0 auto;
  padding: 0 6px;
  max-width: 360px;
  line-height: 1.5;
  word-break: break-word;
}

.creator-hover h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.creator-hover p {
  font-size: 0.92rem;
  opacity: 0.9;
}

/* Mobile text scaling */
@media (max-width: 480px) {
  .creator-hover h4 {
    font-size: 0.9rem;
  }

  .creator-hover p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
.creator-hover {
  max-width: 95%;
  margin: 0 auto;
}
/* FINAL FIX — override all previous conflicting rules */
.creator-hover p,
.creator-hover h4,
.creator-hover ul,
.creator-hover ul li,
.creator-hover > div {
  width: 100% !important;
  max-width: 360px !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 14px !important;
  line-height: 1.55 !important;
  overflow-wrap: break-word !important;
}
/* 🔥 Ultra-small mobile fix (300px screens) */
@media (max-width: 330px) {
  .creator-hover {
    padding: 10px 6px !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    overflow-y: auto !important;
    max-width: 100% !important;
  }

  .creator-hover h4 {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    max-width: 95% !important;
  }

  .creator-hover p {
    font-size: 0.72rem !important;
    line-height: 1.32 !important;
    max-width: 95% !important;
  }

  .creator-hover ul li {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }

  .creator-card {
    flex: 0 0 94% !important; /* prevent snapping too early */
  }
}
/* 🔥 FIX: Make navbar CTA smaller on mobile (280px–780px screens) */
@media (max-width: 780px) {
  .navbar__cta {
    max-width: 70%;          /* prevents full-width huge pill */
    padding: 6px 12px !important; 
    font-size: 12px !important;
    line-height: 1.2 !important;
    border-radius: 14px !important; /* smaller pill */
    text-align: center;
    display: block;
    white-space: normal !important; /* allow text wrapping */
    margin-left: auto;
    margin-right: auto;
  }
}

/* 🔥 EXTRA for very small screens (300–360px) */
@media (max-width: 360px) {
  .navbar__cta {
    max-width: 85% !important;
    font-size: 11px !important;
    padding: 6px 10px !important;
    border-radius: 12px !important;
  }
}
.offerings-col-title {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 18px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000 !important; 
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.35);
  margin-bottom: 24px;
}
