  /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            background: #000000;
            width: 100%;
        }

        body {
            font-family: 'Lato', sans-serif;
            min-height: 100vh;
            padding: 40px 20px;
        }  */

      .header2 {
        text-align: center;
        margin-bottom: 60px;
      }

      .header2 h1 {
        font-family: "Playfair Display", serif;
        font-size: 3.5rem;
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .header2 h1 .dot {
        color: #d6ed17;
      }

      .header2 p {
        font-family: "Lato", sans-serif;
        font-size: 1.2rem;
        color: #ffffff;
        font-weight: 500;
      }

      .cards-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        min-height: 500px;
        padding: 0 50px;
        overflow: hidden;
      }

      .card {
        width: 200px;
        height: 360px;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(214, 237, 23, 0.4);
        cursor: pointer;
        transition: all 0.5s ease;
        position: relative;
        flex-shrink: 0;
      }

      .card:nth-child(1) {
        transform: rotate(-10deg) translateX(-25px);
        z-index: 1;
      }
      .card:nth-child(2) {
        transform: rotate(-7deg) translateX(-18px);
        z-index: 2;
      }
      .card:nth-child(3) {
        transform: rotate(-4deg) translateX(-12px);
        z-index: 3;
      }
      .card:nth-child(4) {
        transform: rotate(-1deg) translateX(-6px);
        z-index: 4;
      }
      .card:nth-child(5) {
        transform: rotate(1deg) translateX(6px);
        z-index: 5;
      }
      .card:nth-child(6) {
        transform: rotate(4deg) translateX(12px);
        z-index: 6;
      }
      .card:nth-child(7) {
        transform: rotate(7deg) translateX(18px);
        z-index: 7;
      }
      .card:nth-child(8) {
        transform: rotate(10deg) translateX(25px);
        z-index: 8;
      }

      .card:hover {
        transform: scale(1.05) rotate(0deg) !important;
        z-index: 10;
      }

      /* EXPANDED CARD - CRITICAL */
      .card.expanded {
        position: fixed !important;
        top: 13.5vh !important;
        left: 7.5vw !important;
        width: 95vw !important;
        height: 100vh !important;
        max-width: 85vw !important;
        max-height: 85vh !important;
        transform: none !important;
        z-index: 101 !important;
        background: #ffffff !important;
        background-image: none !important;
        border-radius: 20px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
        overflow: hidden !important;
      }

      /* CARD PREVIEW */
      .card-preview {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px;
        position: relative;
        border-radius: 20px;
        background: #000000;
        overflow: hidden;
        box-sizing: border-box;
      }

      .card-preview-image {
        width: 160px;
        height: 160px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
        background: #f0f0f0;
      }

      .card-preview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .card-preview-content {
        padding: 20px 10px 10px 10px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        position: relative;
      }

      .card-preview-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
      }

      .card.expanded .card-preview {
        display: none !important;
      }

      .card-preview h3 {
        font-family: "Playfair Display", serif;
        font-size: 1rem;
        color: #ffffff;
        margin: 0;
        text-align: center;
        font-weight: 700;
        line-height: 1.3;
      }

      .card-preview p {
        font-family: "Lato", sans-serif;
        font-size: 0.85rem;
        color: #cccccc;
        text-align: center;
        margin: 0;
        font-weight: 400;
      }

      /* TAGS */
      .tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
      }

      .tag {
        font-family: "Lato", sans-serif;
        font-size: 0.75rem;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.2);
        padding: 4px 12px;
        border-radius: 12px;
        font-weight: 400;
      }

      .tags-large {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 30px;
      }

      .tags-large .tag {
        font-size: 0.85rem;
        padding: 6px 16px;
        background: rgba(214, 237, 23, 0.1);
        color: #000000;
        border: 1px solid rgba(214, 237, 23, 0.3);
      }

      .card-preview .explore-text {
        font-family: "Lato", sans-serif;
        font-size: 0.8rem;
        color: #aaaaaa;
        transition: color 0.3s ease;
        margin-top: 5px;
      }

      .card-preview .commit-text {
        font-family: "Playfair Display", serif;
        font-size: 0.85rem;
        color: #aaaaaa;
        font-weight: 400;
        margin-top: 10px;
      }

      .card:hover .card-preview .explore-text {
        color: #d6ed17;
      }

      /* CARD CONTENT */
      .card-content {
        display: none;
        width: 100%;
        height: 100%;
        padding: 70px 50px 50px 50px;
        overflow-y: auto;
        overflow-x: hidden;
      }

      .card.expanded .card-content {
        display: block !important;
      }

      .card-content h2 {
        font-size: 2.5rem;
        color: #000000;
        margin-bottom: 20px;
      }

      .card-content h3 {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        color: #000000;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .card-content h4 {
        font-family: "Lato", sans-serif;
        font-size: 1rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .section {
        margin-bottom: 40px;
      }

      .card-content ul {
        margin: 15px 0;
        padding-left: 25px;
      }

      .card-content ul li {
        font-size: 1.1rem;
        color: #000000;
        line-height: 1.8;
        margin-bottom: 10px;
      }

      /* STATS ROW */
      .stats-row {
        display: flex;
        gap: 20px;
        margin: 30px 0;
        flex-wrap: wrap;
      }

      .stat-box {
        flex: 1;
        min-width: 150px;
        background: linear-gradient(135deg, #d6ed17 0%, #c5db15 100%);
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
      }

      .stat-number {
        font-family: "Playfair Display", serif;
        font-size: 3rem;
        color: #000000;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 10px;
      }

      .stat-label {
        font-family: "Lato", sans-serif;
        font-size: 0.9rem;
        color: #000000;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* BEFORE/AFTER COMPARISON */
      .impact-comparison {
        background: #f5f7fa;
        padding: 40px;
        border-radius: 12px;
        margin-top: 30px;
      }

      .before-after {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
      }

      .before,
      .after {
        text-align: center;
      }

      .time-box {
        font-family: "Playfair Display", serif;
        font-size: 2.5rem;
        color: #000000;
        font-weight: 700;
        background: white;
        padding: 20px 30px;
        border-radius: 8px;
        margin: 15px 0;
      }

      .time-box.highlight {
        background: #d6ed17;
        color: #000000;
      }

      .arrow {
        font-size: 3rem;
        color: #000000;
      }

      .improvement {
        text-align: center;
      }

      .improvement-stat {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
        color: #d6ed17;
        font-weight: 700;
        background: #000000;
        padding: 15px 40px;
        border-radius: 50px;
        display: inline-block;
      }

      .card-content p {
        font-size: 1.1rem;
        color: #000000;
        line-height: 1.8;
        margin-bottom: 20px;
      }

      .card-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 30px;
      }

      .card-content img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px;
      }

      /* JOURNEY TIMELINE */
      .journey-timeline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 40px 0;
        flex-wrap: wrap;
      }

      .timeline-item {
        background: #f5f7fa;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        min-width: 200px;
      }

      .timeline-item.highlight {
        background: linear-gradient(135deg, #d6ed17 0%, #c5db15 100%);
      }

      .timeline-icon {
        font-size: 3rem;
        margin-bottom: 15px;
      }

      .timeline-content h4 {
        margin-bottom: 10px;
        font-size: 1.2rem;
      }

      .timeline-content p {
        font-size: 0.95rem;
        color: #000000;
        margin: 0;
      }

      .timeline-arrow {
        font-size: 2.5rem;
        color: #000000;
      }

      /* WORK AREAS GRID */
      .work-areas {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
      }

      .work-card {
        background: #ffffff;
        border: 2px solid #d6ed17;
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .work-card:hover {
        background: #d6ed17;
        transform: translateY(-5px);
      }

      .work-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }

      .work-card h4 {
        font-size: 1rem;
        margin: 0;
        line-height: 1.4;
      }

      /* OUTCOME BOX */
      .outcome-box {
        background: #000000;
        color: #d6ed17;
        padding: 30px;
        border-radius: 12px;
        margin: 40px 0;
        text-align: center;
      }

      .outcome-box p {
        color: #d6ed17;
        font-size: 1.2rem;
        margin: 0;
        line-height: 1.6;
      }

      /* CONSULTATION STATS */
      .consultation-stat {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin: 40px 0;
        flex-wrap: wrap;
      }

      .stat-highlight {
        background: #f5f7fa;
        padding: 25px 35px;
        border-radius: 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .stat-label-small {
        font-family: "Lato", sans-serif;
        font-size: 0.85rem;
        color: #666666;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
      }

      .stat-value {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        color: #000000;
        font-weight: 700;
      }

      /* SHIFT HIGHLIGHTS */
      .shift-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin: 30px 0 40px 0;
      }

      .highlight-card {
        background: linear-gradient(135deg, #d6ed17 0%, #c5db15 100%);
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
      }

      .highlight-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }

      .highlight-card h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
      }

      .highlight-card p {
        font-size: 0.95rem;
        color: #000000;
        margin: 0;
        line-height: 1.4;
      }

      /* ARTIST PROFILE */
      .artist-profile {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
      }

      .profile-item {
        background: #f5f7fa;
        padding: 25px 20px;
        border-radius: 12px;
        text-align: center;
      }

      .profile-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
      }

      .profile-item h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
      }

      .profile-item p {
        font-size: 0.9rem;
        color: #000000;
        margin: 0;
      }

      /* PROCESS NOTE */
      .process-note {
        background: #f5f7fa;
        padding: 25px 30px;
        border-radius: 12px;
        margin: 30px 0;
        border-left: 4px solid #d6ed17;
      }

      .process-note p {
        font-style: italic;
        font-size: 1.05rem;
        color: #000000;
        margin: 0;
      }

      /* PRODUCT GALLERY SLIDER */
      .product-gallery {
        margin: 40px 0;
      }

      .product-gallery h3 {
        text-align: center;
        margin-bottom: 30px;
      }

      .gallery-slider {
        position: relative;
        overflow: hidden;
        padding: 0 60px;
      }

      .gallery-track {
        display: flex;
        gap: 20px;
        transition: transform 0.5s ease;
        align-items: center;
      }

      .gallery-item {
        min-width: calc(33.333% - 14px);
        max-width: 500px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
      }

      .gallery-item img {
        width: 100%;
        max-width: 500px;
        height: auto;
        display: block;
      }

      .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #000000;
        color: #d6ed17;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
      }

      .slider-btn:hover {
        background: #d6ed17;
        color: #000000;
        transform: translateY(-50%) scale(1.1);
      }

      .slider-btn.prev {
        left: 0;
      }

      .slider-btn.next {
        right: 0;
      }

      /* PARTNERSHIP PILLARS */
      .partnership-pillars {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 40px 0;
      }

      .pillar-box {
        background: #f5f7fa;
        padding: 30px 25px;
        border-radius: 12px;
        text-align: center;
      }

      .pillar-box.highlight-pillar {
        background: linear-gradient(135deg, #d6ed17 0%, #c5db15 100%);
      }

      .pillar-box h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.3rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
      }

      .pillar-box p {
        font-size: 0.95rem;
        color: #000000;
        margin: 0;
        line-height: 1.5;
      }

      /* BRAND TIMELINE */
      .brand-timeline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin: 40px 0;
      }

      .timeline-marker {
        text-align: center;
      }

      .timeline-marker .year {
        font-family: "Playfair Display", serif;
        font-size: 2.5rem;
        color: #000000;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .timeline-marker.highlight .year {
        color: #d6ed17;
        background: #000000;
        padding: 10px 25px;
        border-radius: 8px;
        display: inline-block;
      }

      .timeline-marker p {
        font-size: 1rem;
        color: #000000;
        margin: 0;
        font-weight: 500;
      }

      .timeline-line {
        width: 100px;
        height: 3px;
        background: #d6ed17;
      }

      /* VIDEO GALLERY GRID */
      .video-gallery {
        margin: 40px 0;
      }

      .video-gallery h3 {
        text-align: center;
        margin-bottom: 30px;
      }

      .video-grid {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .video-item {
        flex: 0 0 auto;
        max-width: 400px;
      }

      .video-item a {
        display: block;
        text-decoration: none;
      }

      .video-item iframe {
        width: 100%;
        height: 500px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      /* WEBSITES SHOWCASE */
      .websites-showcase {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 40px 0;
      }

      .website-card {
        background: #f5f7fa;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: row;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .website-card:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .website-preview {
        width: 60%;
        height: 250px;
        overflow: hidden;
        background: #ffffff;
        flex-shrink: 0;
      }

      .website-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .website-card:hover .website-preview img {
        transform: scale(1.05);
      }

      .website-info {
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
      }

      .website-info h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
      }

      .website-link {
        font-family: "Lato", sans-serif;
        font-size: 1rem;
        color: #000000;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: color 0.3s ease;
        font-weight: 500;
      }

      .website-link:hover {
        color: #d6ed17;
      }

      /* PROCESS HIGHLIGHTS */
      .process-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        margin: 40px 0;
      }

      .process-card {
        background: #ffffff;
        border: 2px solid #d6ed17;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
      }

      .process-card:hover {
        background: #d6ed17;
        transform: translateY(-5px);
      }

      .process-number {
        font-family: "Playfair Display", serif;
        font-size: 2.5rem;
        color: #d6ed17;
        font-weight: 700;
        margin-bottom: 15px;
        transition: color 0.3s ease;
      }

      .process-card:hover .process-number {
        color: #000000;
      }

      .process-card h4 {
        font-family: "Playfair Display", serif;
        font-size: 1.1rem;
        color: #000000;
        margin-bottom: 10px;
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
      }

      .process-card p {
        font-size: 0.9rem;
        color: #000000;
        margin: 0;
        line-height: 1.4;
      }

      /* CLOSE BUTTON */
      .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        background: transparent;
        color: #333333;
        border: none;
        font-size: 2.2rem;
        font-weight: 300;
        cursor: pointer;
        display: none;
        z-index: 1000;
      }

      .card.expanded .close-btn {
        display: block !important;
      }

      .close-btn:hover {
        color: #999999;
      }

      /* PAGE overlay2 */
      .overlay2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        z-index: 100;
        transition: opacity 0.3s ease;
      }

      .overlay2.active {
        opacity: 1;
        visibility: visible;
      }

      /* MOBILE */
      @media (max-width: 768px) {
        body {
          padding: 20px 10px;
        }

        .header2 h1 {
          font-size: 2.5rem;
        }

        .header2 p {
          font-size: 1rem;
        }

        .cards-container {
          flex-direction: column;
          gap: 30px;
          padding: 0;
        }

        .card {
          width: 100%;
          height: 500px;
        }

        .card:nth-child(1),
        .card:nth-child(2),
        .card:nth-child(3),
        .card:nth-child(4),
        .card:nth-child(5),
        .card:nth-child(6),
        .card:nth-child(7),
        .card:nth-child(8) {
          transform: none !important;
        }

        .card.expanded {
          top: 10vh !important;
          left: 2vw !important;
          width: 96vw !important;
          height: 96vh !important;
          max-width: 96vw !important;
          max-height: 96vh !important;
        }

        .card-preview h3 {
          font-size: 1.2rem;
        }

        .card-preview p {
          font-size: 1rem;
        }

        .card-preview .explore-text {
          font-size: 0.95rem;
        }

        .card-preview-image {
          width: 200px;
          height: 200px;
        }

        .card-preview-content {
          padding: 20px 15px 25px 15px;
        }

        .card-content {
          padding: 60px 20px 40px 20px;
        }

        .card-content-grid {
          grid-template-columns: 1fr;
        }

        .journey-timeline {
          gap: 10px;
        }

        .timeline-item {
          padding: 15px;
          min-width: 120px;
        }

        .timeline-icon {
          font-size: 2rem;
          margin-bottom: 10px;
        }

        .timeline-content h4 {
          font-size: 0.9rem;
        }

        .timeline-content p {
          font-size: 0.75rem;
        }

        .timeline-arrow {
          font-size: 1.5rem;
        }

        .gallery-slider {
          padding: 0 50px;
        }

        .gallery-item {
          min-width: 100%;
          max-width: 100%;
        }

        .gallery-item img {
          width: 100%;
          max-width: 500px;
          height: auto;
          margin: 0 auto;
        }

        .slider-btn {
          width: 40px;
          height: 40px;
          font-size: 1.5rem;
        }

        .video-grid {
          flex-direction: column;
          align-items: center;
        }

        .video-item {
          max-width: 100%;
          width: 100%;
        }

        .video-item iframe {
          height: 600px;
        }

        .website-card {
          flex-direction: column;
        }

        .website-preview {
          width: 100%;
          height: 200px;
        }

        .website-info {
          padding: 20px;
        }

        .website-info h4 {
          font-size: 1.2rem;
        }
      }
      
/* ================= CARD STACK ================= */
.cards-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 0 50px;
}

.card {
  width: 200px;
  height: 360px;
  background: #000;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(214,237,23,0.4);
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  flex-shrink: 0;
}

.card:nth-child(1){transform:translateX(-25px);z-index:1}
.card:nth-child(2){transform:translateX(-18px);z-index:2}
.card:nth-child(3){transform:translateX(-12px);z-index:3}
.card:nth-child(4){transform:translateX(-6px);z-index:4}
.card:nth-child(5){transform:translateX(6px);z-index:5}
.card:nth-child(6){transform:translateX(12px);z-index:6}
.card:nth-child(7){transform:translateX(18px);z-index:7}
.card:nth-child(8){transform:translateX(25px);z-index:8}

.card:hover {
  transform: scale(1.05) !important;
  z-index: 10;
}

/* ================= EXPANDED CARD ================= */
.card.expanded {
  position: fixed !important;
  inset: 7.5vh 7.5vw;
  width: 85vw;
  height: 85vh;
  background: #fff;
  border-radius: 20px;
  z-index: 1001;
  overflow: hidden;
}

/* ================= CARD PREVIEW ================= */
.card-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: #000;
}

.card-preview-image {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
}

.card-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-preview-content {
  padding: 20px 10px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-preview h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
}

.card-preview p {
  font-size: 0.85rem;
  color: #ccc;
}

.explore-text {
  font-size: 0.8rem;
  color: #aaa;
}

.commit-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: #aaa;
}

.card.expanded .card-preview {
  display: none;
}

/* ================= TAGS ================= */
.tags-large {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tag {
  font-size: 0.85rem;
  padding: 6px 16px;
  background: rgba(214,237,23,0.1);
  border: 1px solid rgba(214,237,23,0.3);
  border-radius: 14px;
  color: #000;
}

/* ================= CARD CONTENT ================= */
.card-content {
  display: none;
  width: 100%;
  height: 100%;
  padding: 70px 50px;
  overflow-y: auto;
}

.card.expanded .card-content {
  display: block;
}

.card-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 30px 0 15px;
}

.card-content p,
.card-content li {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================= STATS ================= */
.stats-row {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 150px;
  background: linear-gradient(135deg,#d6ed17,#c5db15);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* ================= GALLERY SLIDER ================= */
.gallery-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform .5s ease;
}

.gallery-item {
  min-width: calc(33.333% - 14px);
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #000;
  color: #d6ed17;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* ================= CLOSE BUTTON ================= */
.card-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
}

.card.expanded .card-close-btn {
  display: block;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .card {
    width: 100%;
    height: 500px;
  }

  .card.expanded {
    inset: 2vh 2vw;
    width: 96vw;
    height: 96vh;
  }

  .gallery-item {
    min-width: 100%;
  }

  .card-content {
    padding: 60px 20px;
  }
}
