:root {
      --primary-highlight-color: #004f95;
      --secondary-highlight-color: #0e91eb;
      --primary-background-color: #ffffff;
      --secondary-background-color: #f5f9ff;
      --outer-border-radius: 28px;
      --border-radius-padding: 14px;
      --inner-border-radius: 14px;
}
[x-cloak] {
      display: none !important;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
}

/* Body styles */
body {
      display: flex;
      flex-direction: column;
      font-family: Arial, sans-serif;
      background: #f8f9fa;
      /* min-height: 100vh; */
      line-height: 1.6;
      padding: 0;
      overflow-x: hidden;
      position: relative;
      height: -webkit-fill-available;
      max-width: -webkit-fill-available;
}

.section-title {
      font-size: var(--primary-heading-font-size);
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
}
.section-text {
      font-family: "DM Serif Text", serif;
      font-size: var(--primary-heading-font-size);
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      max-width: 50%;
      color: var(--text-color);
      text-align: left;
      font-family: "DM Serif Text", serif;
      font-style: oblique;
}

.section-title::after {
      content: "";
      width: 50%;
      height: 2px;
      background-color: var(--primary-highlight-color);
      margin-left: 16px;
      display: block;
      background: linear-gradient(to right, var(--primary-highlight-color) 0%, rgba(32, 97, 183, 0.1) 100%);
}

.cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
}
.card {
      outline-offset: 2px;
      background-color: #f3f3f3;
      border-radius: var(--border-radius-outside);
      padding: 1.5rem;
}
.card:hover {
      /* box-shadow: 0px 0px 1px 1px var(--primary-highlight-color); */
}
.card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 21px;
}

.card-name {
      font-size: 23px;
      font-weight: 600;
      margin-bottom: 31px;
      color: var(--text-primary);
}

.card-description {
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--text-secondary);
}

.card-button {
      text-decoration: none;
      width: 350px;
      display: block;
}
.card-icon img {
      height: 32px;
      width: auto;
}

.card-arrow-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      color: #333;
      transition: background-color 0.2s ease, color 0.2s ease;
}
.card-button:hover .card-arrow-icon {
      background-color: var(--primary-highlight-color);
      color: white;
}

.info-card-title {
      font-family: "DM Serif Text", serif;
      font-weight: 100;
      font-style: oblique;
      font-size: 2rem;
      margin-bottom: 16px;
      color: var(--claude-text-primary);
}

.info-card-description {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--claude-text-primary);
      margin-bottom: 24px;
      opacity: 0.5;
}
.info-card-text {
      width: 447px;
}

.link-button a {
      display: inline-flex;
      padding: 10px 24px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #ffffff;
      background-color: var(--primary-highlight-color);
      border: 1px solid var(--brand-primary);
      border-radius: 2rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      align-items: center;
      gap: 10px;
}

.link-button a img {
      display: flex;
      flex-direction: column;
      filter: invert(1);
}

.link-button {
      width: max-content;
}

.link-button:hover a {
      background-color: var(--link-hover);
      /* border-color: #999; */
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.regular-button {
      display: inline-flex;
      padding: 16px 35px;
      font-size: 0.95rem;
      font-weight: 500;
      color: white;
      border: 1px solid var(--primary-highlight-color);
      border-radius: 2rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      align-items: center;
      gap: 10px;
      width: max-content;
      height: min-content;
      background-color: var(--primary-highlight-color);
}
.regular-button:hover {
      background-color: var(--primary-highlight-color);
      transform: translateY(-3px);
      box-shadow: 0 3px 14px 0px #004f958c;
      color: white;
}

.youtube-button a {
      background-color: #f43a2c;
}

.youtube-button:hover a {
      background-color: #f05151;
}

.github-button a {
      background-color: #24292e;
}

.github-button:hover a {
      background-color: #464747;
}

.whatsapp-button a {
      background-color: #128c7e;
}

.whatsapp-button:hover a {
      background-color: #3bd774;
}

.cards-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 400px;
}

.project-card-container {
      display: flex;
      /* gap: 20px; */
      justify-content: center;
      flex-wrap: wrap;
      padding: 100px 0px;
      background-color: #f3f4f6;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
}

.project-card {
      width: 345px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      padding: 8px;
      border: 1px solid #d7d7d7;
      justify-content: space-between;
      cursor: pointer;
}

.project-card-image {
      position: relative;
      height: 280px;
      overflow: hidden;
}

.project-card-image img {
      border-radius: 4px;
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.project-card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 8px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 4px;
      color: white;
}

.project-card-free {
      background-color: #555;
}

.project-card-plus {
      background-color: #04b17c;
}

.project-card-content {
      padding: 16px;
      height: 55%;
      justify-content: space-between;
      display: flex;
      flex-direction: column;
}

.project-card-title {
      font-size: 25px;
      margin-bottom: 10px;
      font-weight: 500;
}

.project-card-description {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
      opacity: 0.6;
}

.project-card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #333;
}

.project-card-stars {
      color: #f5a623;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

.folder {
      /* transform: scale(0.5); */
      /* border-top: 0.4vmin solid rgba(255, 255, 255, 0.5); */
      /* width: 24vmin; */
      /* aspect-ratio: 1; */
      /* border-radius: 6vmin; */
      /* position: relative; */
      /* overflow: hidden; */
      /* background: var(--color-secondary); */
      /* box-shadow: -1px 2px 0 2px color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.2) 65%), -1px 2px 0 2px color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.2) 65%), 0 3vmin 4vmin color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.04) 80%); */
}

.folder::after {
      border-radius: 1.5vmin;
      padding: 0 0.5vmin;
      line-height: 6vmin;
      backdrop-filter: blur(0.2rem);
      background-color: rgba(0, 0, 0, 0.14);
      z-index: 1111;
      position: absolute;
      left: 2vmin;
      bottom: 4vmin;
      font-size: 6vmin;
}

@media (hover: hover) {
      .folder:hover {
            cursor: pointer;
      }

      .folder:hover .doc {
            top: 3vmin;
      }

      .folder:hover .doc::before {
            transform: translateY(-1vmin) translateX(0.5vmin) rotate(15deg);
      }

      .folder:hover .doc::after {
            transform: translateY(-2vmin) translateY(-0.5vmin) rotate(-15deg);
      }
}

.dots {
      pointer-events: none;
      filter: url(#noise);
      position: absolute;
      inset: 0;
      border-radius: inherit;
      mix-blend-mode: screen;
      opacity: 0.16;
}

.scratches {
      pointer-events: none;
      position: relative;
}

.scratches::before,
.scratches::after {
      filter: url(#noise);
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      mix-blend-mode: screen;
}

.scratches::before {
      opacity: 0.12;
      transform: rotate(55deg) scaleY(61.5);
}

.scratches::after {
      opacity: 0.15;
      transform: rotate(25deg) scaleY(111.5);
}

.fg {
      position: absolute;
      border-radius: 0 2vmin;
      bottom: -0.6vmin;
      left: 0;
      right: 0;
      aspect-ratio: 1/0.498;
}

.fg::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      --highlight-color: rgba(255, 255, 255, 0.4);
      --darken-color: color-mix(in srgb, var(--color-secondary), black 30%);
      background: radial-gradient(14vmin 0.7vmin at 30vmin 24.6vmin, var(--darken-color), transparent), radial-gradient(14vmin 0.7vmin at 10.3vmin 24.6vmin, var(--darken-color), transparent), radial-gradient(14vmin 0.7vmin at 45vmin 0, var(--highlight-color), transparent), radial-gradient(6vmin 2vmin at 50vmin 0, var(--highlight-color), transparent), color-mix(in srgb, var(--color-primary), rgba(255, 255, 255, 0.1) 70%);
      backdrop-filter: blur(0.5rem);
      border-bottom: 0.25vmin solid color-mix(in srgb, var(--color-secondary), black 30%);
}

.fg-top,
.fg-top-2,
.fg-top-3 {
      backdrop-filter: blur(0.5rem);
      background: color-mix(in srgb, var(--color-primary), rgba(255, 255, 255, 0.1) 70%);
      position: absolute;
      /* border-top: 3px solid rgba(255, 255, 255, 0.5); */
}

.fg-top {
      --size: 39px;
      height: var(--size);
      inset: 0;
      transform: translateY(calc(-1 * var(--size)));
      border-radius: 12vmin 0 0 0;
      width: 59px;
      top: 2px;
}

.fg-top-2 {
      --size: 37px;
      height: var(--size);
      top: -36.6px;
      left: 58.1px;
      width: 45.9px;
      bottom: 315.3px;
      border-radius: 0 2vmin 0 0;
}

.fg-top-3 {
      --size: 4vmin;
      height: var(--size);
      top: -28.7px;
      left: 13.9vmin;
      width: 5.2vmin;
      border-radius: 0 12vmin 0 0;
      mask-image: radial-gradient(200% 200% at 100% 0%, transparent 50%, black 50%);
}

.doc-container {
      position: absolute;
      inset: 0;
      mask: linear-gradient(to bottom, black 70%, transparent 80%);
}

.doc {
      position: absolute;
      left: 4vmin;
      top: 4vmin;
      right: 8vmin;
      height: 26vmin;
      background: linear-gradient(to bottom, white 70%, var(--color-secondary));
      border-radius: 10px 10px 0 0;
      box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
      transition: top 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 10px;
      gap: 2vmin;
      width: 120px;
}

.doc::before,
.doc::after {
      content: "";
      position: absolute;
      left: 2vmin;
      top: 0;
      right: 2vmin;
      bottom: 0;
      border: 0.3vmin solid rgba(255, 255, 255, 0.1);
      border-radius: inherit;
      transition: transform 0.3s ease;
}

.doc::before {
      transform: translateY(-1vmin) rotate(5deg);
      z-index: -1;
      background: color-mix(in srgb, var(--color-secondary), white 20%);
      transform-origin: right;
}

.doc::after {
      transform: translateY(-2.5vmin) rotate(-5deg);
      z-index: -2;
      background: color-mix(in srgb, var(--color-secondary), black 5%);
      transform-origin: left;
}

.doc .row {
      display: flex;
      flex-direction: column;
      gap: 0.5vmin;
}

.doc .row .placeholder {
      background-color: rgba(0, 0, 0, 0.08);
      width: 100%;
      height: 10px;
      border-radius: 4vmin;
}

.doc .row .placeholder:last-child {
      width: 66%;
}

.doc .row:last-child .placeholder {
      width: 40%;
}

.filter {
      display: block;
      width: 0;
      height: 0;
      overflow: visible !important;
      position: absolute;
}

a.labs-follow-me {
      left: 2rem;
      right: 2rem;
      bottom: 1rem;
      top: unset;
      text-align: center;
      position: absolute;
}

.hero-section {
      background-color: #f5f9ff;
      padding: 60px 20px;
      /* min-height: 500px; */
}

.hero-content {
      max-width: 1000px;
      margin: 0 auto;
}

.hero-content h2 {
      font-size: var(--seconday-font-size);
      margin-bottom: 15px;
      font-weight: normal;
}

.hero-content h1 {
      font-size: 305x;
      margin-bottom: 20px;
      line-height: 1.3;
}

.highlight {
      color: var(--primary-highlight-color);
}

.hero-content p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--claude-text-primary);
      max-width: 700px;
      opacity: 0.5;
}

/* Hero section styles */
.hero-container {
      background: white;
      /* max-width: 1000px; */
      /* width: max-content; */
      /* background-color: var(--primary-background-color); */
      padding: 100px;
      display: flex;
      justify-content: center;
      position: relative;
      /* overflow: hidden; */
      justify-content: center;
      align-items: center;
      /* min-height: 650px; */
      justify-content: center;
      align-items: center;
      height: max-content;
      margin-top: 50px;
}
.genai-container {
      padding: var(--border-radius-padding);
}

.hero-content {
      max-width: 1000px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      /* gap: 40px; */
      position: relative;
}

.hero-text {
      /* flex: 1; */
      width: 70%;
      display: flex;
      flex-direction: column;
      justify-content: center;
}

.hero-greeting {
      font-size: var(--seconday-font-size);
      font-weight: 500;
      color: var(--text-secondary);
      margin-bottom: 20px;
}

.hero-headline {
      font-size: 36px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 30px;
      color: var(--primary-highlight-color);
}

.highlight {
      color: var(--primary-highlight-color);
}

.hero-description {
      font-size: 12px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 30px;
}

.hero-image-container {
      /* flex: 1; */
      width: 70%;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
}

.hero-image {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 16px;
      object-fit: cover;
}

/* Decorative elements */
.decoration {
      position: absolute;
      opacity: 0.7;
      pointer-events: none;
}

.star-1 {
      top: 10%;
      right: -10px;
      color: var(--primary-highlight-color);
      font-size: 26px;
}

.star-2 {
      bottom: 20%;
      left: -5px;
      color: var(--primary-highlight-color);
      font-size: 18px;
}

.star-3 {
      top: 40%;
      right: 10%;
      color: var(--primary-highlight-color);
      font-size: 22px;
}

.sparkle-1 {
      top: -10px;
      right: 20%;
      color: #34a853;
      font-size: 24px;
}

.sparkle-2 {
      bottom: -5px;
      right: 10px;
      color: #34a853;
      font-size: 28px;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.folder-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
      max-width: 1200px;
      /* margin: auto; */
}

.folder-card {
      position: relative;
      height: 180px;
      color: white;
      /* box-shadow: 0 8px 14px 13px rgb(0 0 0); */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      clip-path: polygon(0% 0%, 27% 0%, 35% 7%, 100% 7%, 100% 100%, 0% 100%);
      padding: 27px 18px;
      border-radius: 14px;
      transition: 0.3s ease;
      cursor: pointer;
}
.folder-card:hover {
      transform: translateY(-3px) rotate(2deg) translateX(6px);
}
.folder-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 10px;
      line-height: 1.3;
}

.folder-card .owner {
      font-size: 13px;
      opacity: 0.85;
      margin-bottom: auto;
}

.folder-card .footer {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
}

.folder-icon {
      display: inline-block;
      width: 14px;
      height: 14px;
      background-size: contain;
      background-repeat: no-repeat;
}

.folder-icon.globe {
      background-image: url("https://img.folder-icons8.com/ios-filled/50/ffffff/internet.png");
}

.folder-icon.lock {
      background-image: url("https://img.folder-icons8.com/ios-filled/50/ffffff/lock.png");
}

/* Colors */
.blue {
      background-color: var(--primary-highlight-color);
}
.teal {
      background-color: #28d8ca;
}
.salmon {
      background-color: #ffafa0;
}
.yellow {
      background-color: #ffe97d;
      color: black;
}
.red {
      background-color: #ed735d;
}
.project-card-container-body {
      display: flex;
      justify-content: space-evenly;
      max-width: 1200px;
      width: 100%;
}
.section-header {
      max-width: 950px;
      width: 100%;
}
.section-header-container {
      width: 100%;
      /* max-width: 1200px; */
      display: flex;
      align-items: center;
      justify-content: center;
}

.project-card-image span {
      position: absolute;
      left: 0px;
      bottom: 2px;
      font-size: 24px;
      width: 91%;
      padding: 10px;
      color: white;
      z-index: 2;
      font-weight: 700;
}
.project-card-container-body {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      max-width: 1200px;
      width: 100%;
      margin-top: 24px;
      padding: 0 16px;
}

.project-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 360px;
      flex: 1 1 300px;
}

.project-card-image {
      position: relative;
      height: 323px;
}

.project-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.project-card-image span {
      position: absolute;
      left: 0;
      bottom: 0;
      font-size: 20px;
      width: 100%;
      padding: 10px 14px;
      color: white;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      font-weight: 700;
      z-index: 2;
}

.project-card-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
}

.project-card-description {
      font-size: 14px;
      color: #444;
}

.project-card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #333;
}

/* Header responsive styles */
.section-header-container {
      width: 100%;
      /* max-width: 1200px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 0 16px;
      margin-bottom: 16px;
}

.section-header {
      flex: 1;
      min-width: 200px;
      margin-bottom: 8px;
}

.regular-button {
      background: #222;
      color: white;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
      .project-card {
            max-width: 84%;
      }

      .section-header-container {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
      }

      .project-card-image {
            height: 361px;
      }

      .project-card-image span {
            font-size: 18px;
            padding: 8px 12px;
      }
}

@media (max-width: 480px) {
      .project-card-content {
            padding: 12px;
      }

      .project-card-description {
            font-size: 13px;
      }

      .project-card-meta {
            font-size: 12px;
      }

      .regular-button {
            width: 100%;
            text-align: center;
      }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.smartest-thing-card {
      max-width: 1000px;
      display: flex;
      gap: 32px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
      overflow: hidden;
}

.smartest-thing-card img {
      width: 448px;
      object-fit: cover;
}

.smartest-thing-card-content {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
}

.smartest-thing-card h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #111;
}

.smartest-thing-card h3 {
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 16px;
      color: #2a2a2a;
}

.smartest-thing-card p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 24px;
}

.smartest-thing-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 12px;
}

.smartest-thing-card-tags div {
      background: #f0f1f5;
      color: #333;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 500;
}

.smartest-thing-card-status {
      font-size: 14px;
      color: #666;
      font-style: italic;
}
.smartest-thing-card-section {
      width: 100%;
      justify-content: center;
      display: flex;
      align-items: center;
      background-color: #f3f4f6;
      padding: 100px 50px;
}
@media (max-width: 1024px) {
      .smartest-thing-card {
            flex-direction: column;
            align-items: center;
            gap: 0;
      }

      .smartest-thing-card img {
            width: 100%;
            max-height: 280px;
            object-fit: cover;
      }

      .smartest-thing-card-content {
            padding: 24px;
      }

      .smartest-thing-card h2 {
            font-size: 22px;
      }

      .smartest-thing-card h3 {
            font-size: 18px;
      }

      .smartest-thing-card p {
            font-size: 15px;
      }
}

@media (max-width: 600px) {
      .smartest-thing-card-content {
            padding: 20px 16px;
      }

      .smartest-thing-card h2 {
            font-size: 20px;
      }

      .smartest-thing-card h3 {
            font-size: 16px;
      }

      .smartest-thing-card p {
            font-size: 14px;
            line-height: 1.5;
      }

      .smartest-thing-card-tags {
            font-size: 13px;
            gap: 8px;
      }

      .smartest-thing-card-tags div {
            padding: 5px 10px;
      }

      .smartest-thing-card-status {
            font-size: 13px;
      }

      .smartest-thing-card-section {
            padding: 60px 12px;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* Main container for all project cards */

.carousel-container {
      /* max-width: 1400px; */
      /* margin: 0 auto; */
}

.carousel-container-header {
      margin-bottom: 40px;
}

.section-header {
      text-align: center;
}

.section-title .section-text {
      font-size: 2rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0px;
}

.carousel-wrapper {
      position: relative;
      overflow: hidden;
}

.carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
      padding: 0 20px;
}

.carousel-card {
      /* flex: 0 0 400px; */
      /* width: 400px; */
      /* height: 400px; */
      /* border-radius: 12px; */
      /* overflow: hidden; */
      /* transition: all 0.3s ease; */
      /* position: relative; */
}

.carousel-card:hover {
      /* transform: translateY(-2px); */
}

.card-image {
      width: 100%;
      height: 100%;
      border-radius: 12px;
}

.card-1 .card-image {
      background: #e3f2fd;
}

.card-2 .card-image {
      background: #fce4ec;
}

.card-3 .card-image {
      background: #f3e5f5;
}

.card-4 .card-image {
      background: #e8f5e8;
}

.card-5 .card-image {
      background: #7fffd4;
}

.card-content {
      position: absolute;
      bottom: 42%;
      /* left: 20px; */
      /* right: 20px; */
      /* background: transparent; */
      /* margin: auto; */
}

.card-title {
      font-size: 2rem;
      font-weight: 500;
      color: #ffffff;
      line-height: 1.4;
      text-align: center;
}

.navigation {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
}

.nav-button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
}

.nav-button#prevBtn {
      background: #4a4a4a;
}

.nav-button#nextBtn {
      background: #4a4a4a;
}

.nav-button:hover:not(:disabled) {
      transform: scale(1.05);
}

.nav-button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
}

.nav-button svg {
      width: 20px;
      height: 20px;
}

.nav-button#prevBtn svg {
      fill: white;
}

.nav-button#nextBtn svg {
      fill: #666;
}

.auto-scroll-controls {
      text-align: center;
      margin-top: 30px;
}

.auto-scroll-btn {
      padding: 8px 16px;
      background: white;
      border: 1px solid #e0e0e0;
      color: #666;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
      margin: 0 5px;
}

.auto-scroll-btn:hover {
      background: #f5f5f5;
      border-color: #ccc;
}

.auto-scroll-btn.active {
      background: #4a4a4a;
      color: white;
      border-color: #4a4a4a;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
      .carousel-card {
            flex: 0 0 400px;
            width: 400px;
      }
}

@media (max-width: 900px) {
      .carousel-card {
            flex: 0 0 400px;
            width: 400px;
      }
}

@media (max-width: 768px) {
      .carousel-card {
            flex: 0 0 400px;
            width: 400px;
      }
      .section-title .section-text {
            font-size: 2.5rem;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.EXPERTISE-container {
      /* max-width: 1200px; */
      width: 100%;
      /* padding: 200px; */
      text-align: center;
      background-color: #f7fafe;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
}

.EXPERTISE-section-header {
      margin-bottom: 40px;
      max-width: 1200px;
}

.EXPERTISE-section-title {
      display: inline-block;
      position: relative;
}

.EXPERTISE-section-text {
      font-family: "DM Serif Text", serif;
      font-size: 2.5em;
      color: var(--expertise-primary-color);
}

.EXPERTISE-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      /* Increased gap to ensure clear separation between rows and columns */
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
}

.EXPERTISE-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      border: 1px solid #d7d7d7;
      border-radius: 12px;
      box-shadow: var(--card-shadow);
      transition: 0.3s ease;
}

.EXPERTISE-card {
      background-color: var(--expertise-card-bg);
      border-radius: var(--expertise-border-radius);
      box-shadow: 0 4px 8px var(--expertise-card-shadow);
      padding: 26px;
      transition: transform var(--expertise-transition-speed) ease, box-shadow var(--expertise-transition-speed) ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: left;
      /* border: 1px solid #d7d7d7; */
      /* border-radius: 12px; */
      /* box-shadow: var(--card-shadow); */
}

.EXPERTISE-card:hover {
      /* transform: translateY(-5px); */
      /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); */
}

.EXPERTISE-card-header {
      display: flex;
      justify-content: space-between;
      align-items: unset;
      margin-bottom: 15px;
}

.EXPERTISE-logo {
      width: 80px;
      /* height: 48px; */
      /* Added transition for opacity for the fade effect */
      transition: opacity var(--expertise-transition-speed) ease;
      /* position: absolute; */
      border-radius: 3rem;
}

/* Global Mobile Adjustments */
@media screen and (max-width: 768px) {
      /* Increase touch targets for better mobile usability */
      button,
      .btn-minimal,
      a.project-link,
      .expertise-card-link {
            /* min-height: 44px; */
            /* min-width: 44px; */
            display: flex;
      }

      /* Improve text readability on small screens */
      p,
      .project-description,
      .tutorials-description,
      .expertise-description,
      .card-description {
            font-size: 16px !important;
            line-height: 1.6 !important;
      }

      /* Fix section padding for all sections on mobile */
      section {
            padding-left: 16px !important;
            padding-right: 16px !important;
      }

      /* Fix container width for better mobile layout */
      .container,
      .section-container,
      .expertise-container,
      .skills-container {
            width: 100% !important;
            padding: 0 !important;
      }

      /* Improve spacing for better readability */
      .section-header {
            margin-bottom: 0px;
      }

      /* Fix image responsiveness */
      img {
            /* width: 100%; */
            /* height: 100%; */
      }
}
.expertise-logo-2 {
      width: 48px;
      height: 48px;
      /* Added transition for opacity for the fade effect */
      transition: opacity var(--expertise-transition-speed) ease;
      /* position: absolute; */
      border-radius: 3rem;
}
/* Image fade effect on card hover */
.EXPERTISE-card:hover .EXPERTISE-logo {
      /* opacity: 0.3; */ /* Fades the image to 30% opacity */
}

.EXPERTISE-card-arrow svg {
      color: var(--primary-highlight-color);
      width: 24px;
      height: 24px;
      transition: 0.3s ease;
}

.EXPERTISE-card-link:hover .EXPERTISE-card-arrow svg {
      transform: translateX(5px) rotate(45deg);
}

.EXPERTISE-name {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--primary-highlight-color);
}

.EXPERTISE-description {
      font-size: 12px;
      color: #555;
      flex-grow: 1; /* Allows description to take up available space */
}

/* Animations */
.EXPERTISE-animate-bottom {
      opacity: 0;
      transform: translateY(20px);
      animation: slideUp 0.6s forwards ease-out;
}

.EXPERTISE-delay-100 {
      animation-delay: 0.1s;
}

@keyframes slideUp {
      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.EXPERTISE-staggered-item {
      /* opacity: 0; */
      /* transform: translateY(20px); */
}

/* Responsive adjustments */
@media (max-width: 768px) {
      .EXPERTISE-section-text {
            font-size: 2em;
      }

      .EXPERTISE-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .EXPERTISE-card {
            padding: 20px;
      }
}

@media (max-width: 480px) {
      .EXPERTISE-section-text {
            font-size: 1.8em;
      }

      .EXPERTISE-grid {
            grid-template-columns: 1fr; /* Single column on very small screens */
      }

      .EXPERTISE-container {
            padding: 15px;
      }
}
.EXPERTISE-card-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.EXPERTISE-card-arrow {
      transition: 0.3s ease;
}

.section-title {
      font-size: var(--primary-heading-font-size);
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
}
.section-text {
      font-family: "DM Serif Text", serif;
      font-size: var(--primary-heading-font-size);
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      max-width: 50%;
      color: var(--text-color);
      text-align: left;
      font-family: "DM Serif Text", serif;
      font-style: oblique;
}

.section-title::after {
      content: "";
      width: 50%;
      height: 2px;
      background-color: var(--primary-highlight-color);
      margin-left: 16px;
      display: block;
      background: linear-gradient(to right, var(--primary-highlight-color) 0%, rgba(32, 97, 183, 0.1) 100%);
}

.cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
}
.card {
      outline-offset: 2px;
      background-color: #f3f3f3;
      border-radius: var(--outer-border-radius);
      padding: 1.5rem;
}
.card:hover {
      /* box-shadow: 0px 0px 1px 1px var(--primary-highlight-color); */
}
.card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 21px;
}

.card-name {
      font-size: 23px;
      font-weight: 600;
      margin-bottom: 31px;
      color: var(--text-primary);
}

.card-description {
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--text-secondary);
}

.card-button {
      text-decoration: none;
      width: 350px;
      display: block;
}
.card-icon img {
      height: 32px;
      width: auto;
}

.card-arrow-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      color: #333;
      transition: background-color 0.2s ease, color 0.2s ease;
}
.card-button:hover .card-arrow-icon {
      background-color: var(--primary-highlight-color);
      color: white;
}

.info-card-title {
      font-family: "DM Serif Text", serif;
      font-weight: 100;
      font-style: oblique;
      font-size: 2rem;
      margin-bottom: 16px;
      color: var(--claude-text-primary);
}

.info-card-description {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--claude-text-primary);
      margin-bottom: 24px;
      opacity: 0.5;
}
.info-card-text {
      width: 447px;
}

.link-button a {
      display: inline-flex;
      padding: 10px 24px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #ffffff;
      background-color: var(--primary-highlight-color);
      border: 1px solid var(--brand-primary);
      border-radius: 2rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      align-items: center;
      gap: 10px;
}

.link-button a img {
      display: flex;
      flex-direction: column;
      filter: invert(1);
}

.link-button {
      width: max-content;
}

.link-button:hover a {
      background-color: var(--link-hover);
      /* border-color: #999; */
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.regular-button {
      display: inline-flex;
      padding: 16px 35px;
      font-size: 0.95rem;
      font-weight: 500;
      color: white;
      border: none;
      border-radius: 2rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      align-items: center;
      gap: 10px;
      width: max-content;
      height: min-content;
      background-color: var(--primary-highlight-color);
}
.regular-button:hover {
      background-color: var(--primary-highlight-color);
      transform: translateY(-3px);
      box-shadow: 0 3px 14px 0px #004f958c;
      color: white;
}

.youtube-button a {
      background-color: #f43a2c;
}

.youtube-button:hover a {
      background-color: #f05151;
}

.github-button a {
      background-color: #24292e;
}

.github-button:hover a {
      background-color: #464747;
}

.whatsapp-button a {
      background-color: #128c7e;
}

.whatsapp-button:hover a {
      background-color: #3bd774;
}

.cards-wrapper {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 400px;
}

.project-card-container {
      display: flex;
      gap: 50px;
      justify-content: center;
      flex-wrap: wrap;
      padding: 30px;
      background-color: #f3f4f6;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
}

.project-card {
      width: 345px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      padding: var(--border-radius-padding);
      border: none;
      justify-content: space-between;
      cursor: pointer;
}

.project-card-image {
      position: relative;
      height: 280px;
      overflow: hidden;
}

.project-card-image img {
      border-radius: var(--inner-border-radius);
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.project-card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 4px 8px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 4px;
      color: white;
}

.project-card-free {
      background-color: #555;
}

.project-card-plus {
      background-color: #04b17c;
}

.project-card-content {
      padding: 16px;
      height: 55%;
      justify-content: space-between;
      display: flex;
      flex-direction: column;
}

.project-card-title {
      font-size: 25px;
      margin-bottom: 10px;
      font-weight: 500;
}

.project-card-description {
      font-size: 14px;
      color: #555;
      margin-bottom: 12px;
      opacity: 0.6;
}

.project-card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #333;
}

.project-card-stars {
      color: #f5a623;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

.folder {
      /* transform: scale(0.5); */
      /* border-top: 0.4vmin solid rgba(255, 255, 255, 0.5); */
      /* width: 24vmin; */
      /* aspect-ratio: 1; */
      /* border-radius: 6vmin; */
      /* position: relative; */
      /* overflow: hidden; */
      /* background: var(--color-secondary); */
      /* box-shadow: -1px 2px 0 2px color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.2) 65%), -1px 2px 0 2px color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.2) 65%), 0 3vmin 4vmin color-mix(in srgb, var(--color-secondary), rgba(0, 0, 0, 0.04) 80%); */
}

.folder::after {
      display: none;
      border-radius: 1.5vmin;
      padding: 0 0.5vmin;
      line-height: 6vmin;
      content: "✿";
      backdrop-filter: blur(0.2rem);
      background-color: rgba(0, 0, 0, 0.14);
      z-index: 1111;
      position: absolute;
      left: 2vmin;
      bottom: 4vmin;
      font-size: 6vmin;
}

@media (hover: hover) {
      .folder:hover {
            cursor: pointer;
      }

      .folder:hover .doc {
            top: 3vmin;
      }

      .folder:hover .doc::before {
            transform: translateY(-1vmin) translateX(0.5vmin) rotate(15deg);
      }

      .folder:hover .doc::after {
            transform: translateY(-2vmin) translateY(-0.5vmin) rotate(-15deg);
      }
}

.dots {
      pointer-events: none;
      filter: url(#noise);
      position: absolute;
      inset: 0;
      border-radius: inherit;
      mix-blend-mode: screen;
      opacity: 0.16;
}

.scratches {
      pointer-events: none;
      position: relative;
}

.scratches::before,
.scratches::after {
      filter: url(#noise);
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      mix-blend-mode: screen;
}

.scratches::before {
      opacity: 0.12;
      transform: rotate(55deg) scaleY(61.5);
}

.scratches::after {
      opacity: 0.15;
      transform: rotate(25deg) scaleY(111.5);
}

.fg {
      position: absolute;
      border-radius: 0 2vmin;
      bottom: -0.6vmin;
      left: 0;
      right: 0;
      aspect-ratio: 1/0.498;
}

.fg::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      --highlight-color: rgba(255, 255, 255, 0.4);
      --darken-color: color-mix(in srgb, var(--color-secondary), black 30%);
      background: radial-gradient(14vmin 0.7vmin at 30vmin 24.6vmin, var(--darken-color), transparent), radial-gradient(14vmin 0.7vmin at 10.3vmin 24.6vmin, var(--darken-color), transparent), radial-gradient(14vmin 0.7vmin at 45vmin 0, var(--highlight-color), transparent), radial-gradient(6vmin 2vmin at 50vmin 0, var(--highlight-color), transparent), color-mix(in srgb, var(--color-primary), rgba(255, 255, 255, 0.1) 70%);
      backdrop-filter: blur(0.5rem);
      border-bottom: 0.25vmin solid color-mix(in srgb, var(--color-secondary), black 30%);
}

.fg-top,
.fg-top-2,
.fg-top-3 {
      backdrop-filter: blur(0.5rem);
      background: color-mix(in srgb, var(--color-primary), rgba(255, 255, 255, 0.1) 70%);
      position: absolute;
      /* border-top: 3px solid rgba(255, 255, 255, 0.5); */
}

.fg-top {
      --size: 39px;
      height: var(--size);
      inset: 0;
      transform: translateY(calc(-1 * var(--size)));
      border-radius: 12vmin 0 0 0;
      width: 59px;
      top: 2px;
}

.fg-top-2 {
      --size: 37px;
      height: var(--size);
      top: -36.6px;
      left: 58.1px;
      width: 45.9px;
      bottom: 315.3px;
      border-radius: 0 2vmin 0 0;
}

.fg-top-3 {
      --size: 4vmin;
      height: var(--size);
      top: -28.7px;
      left: 13.9vmin;
      width: 5.2vmin;
      border-radius: 0 12vmin 0 0;
      mask-image: radial-gradient(200% 200% at 100% 0%, transparent 50%, black 50%);
}

.doc-container {
      position: absolute;
      inset: 0;
      mask: linear-gradient(to bottom, black 70%, transparent 80%);
}

.doc {
      position: absolute;
      left: 4vmin;
      top: 4vmin;
      right: 8vmin;
      height: 26vmin;
      background: linear-gradient(to bottom, white 70%, var(--color-secondary));
      border-radius: 10px 10px 0 0;
      box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.2);
      transition: top 0.3s ease;
      display: flex;
      flex-direction: column;
      padding: 10px;
      gap: 2vmin;
      width: 120px;
}

.doc::before,
.doc::after {
      content: "";
      position: absolute;
      left: 2vmin;
      top: 0;
      right: 2vmin;
      bottom: 0;
      border: 0.3vmin solid rgba(255, 255, 255, 0.1);
      border-radius: inherit;
      transition: transform 0.3s ease;
}

.doc::before {
      transform: translateY(-1vmin) rotate(5deg);
      z-index: -1;
      background: color-mix(in srgb, var(--color-secondary), white 20%);
      transform-origin: right;
}

.doc::after {
      transform: translateY(-2.5vmin) rotate(-5deg);
      z-index: -2;
      background: color-mix(in srgb, var(--color-secondary), black 5%);
      transform-origin: left;
}

.doc .row {
      display: flex;
      flex-direction: column;
      gap: 0.5vmin;
}

.doc .row .placeholder {
      background-color: rgba(0, 0, 0, 0.08);
      width: 100%;
      height: 10px;
      border-radius: 4vmin;
}

.doc .row .placeholder:last-child {
      width: 66%;
}

.doc .row:last-child .placeholder {
      width: 40%;
}

.filter {
      display: block;
      width: 0;
      height: 0;
      overflow: visible !important;
      position: absolute;
}

a.labs-follow-me {
      left: 2rem;
      right: 2rem;
      bottom: 1rem;
      top: unset;
      text-align: center;
      position: absolute;
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.folder-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
      max-width: 1200px;
      /* margin: auto; */
}

.folder-card {
      position: relative;
      height: 180px;
      color: white;
      /* box-shadow: 0 8px 14px 13px rgb(0 0 0); */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      clip-path: polygon(0% 0%, 27% 0%, 35% 7%, 100% 7%, 100% 100%, 0% 100%);
      padding: 27px 18px;
      border-radius: 14px;
      transition: 0.3s ease;
      cursor: pointer;
}
.folder-card:hover {
      transform: translateY(-3px) rotate(2deg) translateX(6px);
}
.folder-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 10px;
      line-height: 1.3;
}

.folder-card .owner {
      font-size: 13px;
      opacity: 0.85;
      margin-bottom: auto;
}

.folder-card .footer {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
}

.folder-icon {
      display: inline-block;
      width: 14px;
      height: 14px;
      background-size: contain;
      background-repeat: no-repeat;
}

.folder-icon.globe {
      background-image: url("https://img.folder-icons8.com/ios-filled/50/ffffff/internet.png");
}

.folder-icon.lock {
      background-image: url("https://img.folder-icons8.com/ios-filled/50/ffffff/lock.png");
}

/* Colors */
.blue {
      background-color: var(--primary-highlight-color);
}
.teal {
      background-color: #28d8ca;
}
.salmon {
      background-color: #ffafa0;
}
.yellow {
      background-color: #ffe97d;
      color: black;
}
.red {
      background-color: #ed735d;
}
.project-card-container-body {
      display: flex;
      justify-content: space-evenly;
      max-width: 1200px;
      width: 100%;
}
.section-header {
      max-width: 1200px;
      width: 100%;
}
.section-header-container {
      width: 100%;
      /* max-width: 1200px; */
      display: flex;
      align-items: center;
      justify-content: center;
}

.project-card-image span {
      position: absolute;
      left: 0px;
      bottom: 2px;
      font-size: 24px;
      width: 91%;
      padding: 10px;
      color: white;
      z-index: 2;
      font-weight: 700;
}
.project-card-container-body {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
      max-width: 1200px;
      width: 100%;
      margin-top: 0px;
      padding: 0px;
}

.project-card {
      background: white;
      border-radius: var(--outer-border-radius);
      overflow: hidden;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 360px;
      flex: 1 1 300px;
}

.project-card-image {
      position: relative;
      height: 323px;
}

.project-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.project-card-image span {
      position: absolute;
      left: 0;
      bottom: 0;
      font-size: 20px;
      width: 100%;
      padding: 10px 14px;
      color: white;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
      font-weight: 700;
      z-index: 2;
}

.project-card-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 16px;
}

.project-card-description {
      font-size: 14px;
      color: #444;
}

.project-card-meta {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #333;
}

/* Header responsive styles */
.section-header-container {
      width: 100%;
      /* max-width: 1200px; */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      padding: 0 30px;
      margin-bottom: 0px;
      padding-top: 100px;
      padding-bottom: 30px;
}

.section-header {
      flex: 1;
      /* min-width: 200px; */
      /* margin-bottom: 8px; */
}

.regular-button {
      background: #222;
      color: white;
      padding: 12px 31px;
      border-radius: 29px;
      font-size: 14px;
      cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
      .project-card {
            max-width: 100%;
      }

      .section-header-container {
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding-bottom: 0px;
      }

      .project-card-image {
            height: 361px;
      }

      .project-card-image span {
            font-size: 18px;
            padding: 8px 12px;
      }
}

@media (max-width: 480px) {
      .project-card-content {
            padding: 12px;
      }

      .project-card-description {
            font-size: 13px;
      }

      .project-card-meta {
            font-size: 12px;
      }

      .regular-button {
            width: 100%;
            text-align: center;
            width: max-content;
      }
}

/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.smartest-thing-card {
      max-width: 1000px;
      display: flex;
      gap: 32px;
      background: #fff;
      border-radius: var(--outer-border-radius);
      box-shadow: var(--card-shadow);
      overflow: hidden;
}

.smartest-thing-card img {
      width: 448px;
      object-fit: cover;
}

.smartest-thing-card-content {
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
}

.smartest-thing-card h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #111;
}

.smartest-thing-card h3 {
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 16px;
      color: #2a2a2a;
}

.smartest-thing-card p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 24px;
}

.smartest-thing-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 14px;
      margin-bottom: 12px;
}

.smartest-thing-card-tags div {
      background: #f0f1f5;
      color: #333;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: 500;
}

.smartest-thing-card-status {
      font-size: 14px;
      color: #666;
      font-style: italic;
}
.smartest-thing-card-section {
      width: 100%;
      justify-content: center;
      display: flex;
      align-items: center;
      /* background-color: #f9fafb; */
      padding: 30px;
}
@media (max-width: 1024px) {
      .smartest-thing-card {
            flex-direction: column;
            align-items: center;
            gap: 0;
      }

      .smartest-thing-card img {
            width: 100%;
            max-height: 280px;
            object-fit: cover;
      }

      .smartest-thing-card-content {
            padding: 24px;
      }

      .smartest-thing-card h2 {
            font-size: 22px;
      }

      .smartest-thing-card h3 {
            font-size: 18px;
      }

      .smartest-thing-card p {
            font-size: 15px;
      }
}

@media (max-width: 600px) {
      .smartest-thing-card-content {
            padding: var(--border-radius-padding);
      }

      .smartest-thing-card h2 {
            font-size: 20px;
      }

      .smartest-thing-card h3 {
            font-size: 16px;
      }

      .smartest-thing-card p {
            font-size: 14px;
            line-height: 1.5;
      }

      .smartest-thing-card-tags {
            font-size: 13px;
            gap: 8px;
      }

      .smartest-thing-card-tags div {
            padding: 5px 10px;
      }

      .smartest-thing-card-status {
            font-size: 13px;
      }

      .smartest-thing-card-section {
            padding: 30px;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* Main container for all project cards */
.LLMEAISYS-project-card-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 0;
}

/* Header section containing only the title */
.LLMEAISYS-section-header-container {
      width: 100%;
      display: flex;
      justify-content: center; /* Center the title */
      padding: 0 16px;
      margin-bottom: 30px;
}

.LLMEAISYS-section-title {
      font-size: 2.5em; /* Larger title */
      font-weight: 700;
      color: var(--text-color-dark);
      text-align: center;
}

/* Carousel container */
.LLMEAISYS-project-carousel-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden; /* Crucial for the sliding effect */
      padding: 10px 0; /* Add some vertical padding for shadow */
}

/* Inner container that holds all cards and moves horizontally */
.LLMEAISYS-project-carousel-inner {
      display: flex;
      flex-wrap: nowrap; /* Prevent cards from wrapping */
      will-change: transform; /* Optimize for animation */
      /* CSS animation removed, now controlled by Anime.js */
}

/* Styling for each individual project card (horizontal layout) */
.LLMEAISYS-project-card {
      flex-shrink: 0; /* Prevent cards from shrinking */
      width: 676px; /* Increased width for each card to accommodate larger square image */
      height: 439px; /* Increased height for horizontal cards to fit square image */
      background: var(--card-bg);
      border-radius: 12px;
      box-shadow: 0 4px 20px var(--shadow-light);
      display: flex; /* Use flex for internal horizontal layout */
      overflow: hidden;
      margin: 0 12px; /* Space between cards */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #d7d7d7;
      box-shadow: var(--card-shadow);
}

.LLMEAISYS-project-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px var(--shadow-hover);
}

/* Image section of the horizontal card - NOW A BIG SQUARE */
.LLMEAISYS-project-card-image {
      flex-shrink: 0;
      width: 50%; /* Set width to match height for a square */
      height: 100%; /* Take full height of the card */
      overflow: hidden;
      border-radius: 12px 0 0 12px; /* Rounded corners only on the left side */
}

.LLMEAISYS-project-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Cover the container while maintaining aspect ratio */
      display: block;
      transition: transform 0.3s ease;
}

.LLMEAISYS-project-card:hover .LLMEAISYS-project-card-image img {
      transform: scale(1.05); /* Slight zoom on hover */
}

/* Text content section of the horizontal card - COMPACTED */
.LLMEAISYS-project-card-content {
      flex-grow: 1; /* Allows content to take remaining space */
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* background-color: #ffffff; */
}

.LLMEAISYS-project-card-title {
      font-size: 1.1em;
      font-weight: 600;
      margin: 0 0 6px 0;
      color: var(--text-color-dark);
      line-height: 1.3;
}

.LLMEAISYS-project-card-description {
      font-size: 0.8em;
      color: var(--text-color-medium);
      line-height: 1.4;
      margin-bottom: 8px;
      display: -webkit-box;
      /* -webkit-line-clamp: 4; */ /* Allow more lines for description */
      /* -webkit-box-orient: vertical; */
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 12px;
      opacity: 0.7;
}

/* Meta information (stars, lessons) */
.LLMEAISYS-project-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75em;
      color: var(--text-color-light);
      border-top: 1px solid var(--border-color);
      padding-top: 8px;
      margin-top: auto; /* Pushes meta to the bottom */
}

.LLMEAISYS-project-card-stars,
.LLMEAISYS-project-card-lessons {
      display: flex;
      align-items: center;
      gap: 3px;
}

/* YouTube Button */
.LLMEAISYS-youtube-button {
      background-color: #ff0000; /* YouTube red */
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 0.9em;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-top: 10px; /* Space from other content */
      width: min-content;
      align-self: end;
}

.LLMEAISYS-youtube-button:hover {
      background-color: #cc0000;
      transform: scale(1.02);
}

.LLMEAISYS-youtube-button:active {
      transform: scale(0.98);
}

/* Navigation Buttons */
.LLMEAISYS-carousel-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: 10;
      padding: 0 20px; /* Padding to keep buttons off the edge */
      box-sizing: border-box;
      pointer-events: none; /* Allow clicks to pass through to carousel if not on button */
}

.LLMEAISYS-nav-button {
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 1.5em;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      pointer-events: all; /* Make buttons clickable */
}

.LLMEAISYS-nav-button:hover {
      background-color: rgba(0, 0, 0, 0.8);
      transform: scale(1.05);
}

.LLMEAISYS-nav-button:active {
      transform: scale(0.95);
}

.EXPERTISE-container {
      /* max-width: 1200px; */
      width: 100%;
      padding: 30px 30px;
      text-align: center;
      background-color: #f3f4f6;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column;
}

.EXPERTISE-section-header {
      margin-bottom: 40px;
      max-width: 1200px;
}

.EXPERTISE-section-title {
      display: inline-block;
      position: relative;
}

.EXPERTISE-section-text {
      font-family: "DM Serif Text", serif;
      font-size: 2.5em;
      color: var(--expertise-primary-color);
}

.EXPERTISE-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      /* Increased gap to ensure clear separation between rows and columns */
      gap: 30px;
      justify-content: center;
      max-width: 1200px;
}

.EXPERTISE-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
      background-color: white;
      border: 1px solid #ccc;
      border-radius: 10px;
      border: 1px solid #d7d7d7;
      border-radius: 28px;
      box-shadow: var(--card-shadow);
      transition: 0.3s ease;
}

.EXPERTISE-card {
      background-color: var(--expertise-card-bg);
      border-radius: var(--outer-border-radius);
      box-shadow: 0 4px 8px var(--expertise-card-shadow);
      padding: 26px;
      transition: transform var(--expertise-transition-speed) ease, box-shadow var(--expertise-transition-speed) ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: left;
      /* border: 1px solid #d7d7d7; */
      /* border-radius: 12px; */
      /* box-shadow: var(--card-shadow); */
}

.EXPERTISE-card:hover {
      /* transform: translateY(-5px); */
      /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); */
}

.EXPERTISE-card-header {
      display: flex;
      justify-content: space-between;
      align-items: unset;
      margin-bottom: 15px;
}

.EXPERTISE-logo {
      width: 100%;
      /* height: 48px; */
      /* Added transition for opacity for the fade effect */
      transition: opacity var(--expertise-transition-speed) ease;
      /* position: absolute; */
      border-radius: var(--outer-border-radius);
}

/* Image fade effect on card hover */
.EXPERTISE-card:hover .EXPERTISE-logo {
      /* opacity: 0.3; */ /* Fades the image to 30% opacity */
}

.EXPERTISE-card-arrow svg {
      color: var(--primary-highlight-color);
      width: 24px;
      height: 24px;
      transition: 0.3s ease;
}

.EXPERTISE-card-link:hover .EXPERTISE-card-arrow svg {
      transform: translateX(5px) rotate(45deg);
}

.EXPERTISE-name {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: var(--primary-highlight-color);
}

.EXPERTISE-description {
      font-size: 12px;
      color: #555;
      flex-grow: 1; /* Allows description to take up available space */
}

/* Animations */
.EXPERTISE-animate-bottom {
      opacity: 0;
      transform: translateY(20px);
      animation: slideUp 0.6s forwards ease-out;
}

.EXPERTISE-delay-100 {
      animation-delay: 0.1s;
}

@keyframes slideUp {
      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.EXPERTISE-staggered-item {
      /* opacity: 0; */
      /* transform: translateY(20px); */
}

/* Responsive adjustments */
@media (max-width: 768px) {
      .EXPERTISE-section-text {
            font-size: 2em;
      }

      .EXPERTISE-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }

      .EXPERTISE-card {
            padding: 20px;
      }
}

@media (max-width: 480px) {
      .EXPERTISE-section-text {
            font-size: 1.8em;
      }

      .EXPERTISE-grid {
            grid-template-columns: 1fr; /* Single column on very small screens */
      }

      .EXPERTISE-container {
            padding: 15px;
      }
}
.EXPERTISE-card-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.EXPERTISE-card-arrow {
      transition: 0.3s ease;
}

@media (max-width: 768px) {
      .EXPERTISE-section-text {
            font-size: 2em;
      }

      .EXPERTISE-grid {
            grid-template-columns: repeat(2, 1fr); /* Exactly two columns for tablet sizes */
      }

      .EXPERTISE-card {
            padding: 20px;
      }
}

/* Phone layout: one per row */
@media (max-width: 480px) {
      .EXPERTISE-section-text {
            font-size: 1.8em;
      }

      .EXPERTISE-grid {
            grid-template-columns: 1fr; /* Single column on very small screens */
      }

      .EXPERTISE-container {
            padding: 15px;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
.carousel-header {
      text-align: center;
      margin-bottom: 60px;
}

.carousel-header h1 {
      font-size: 2.5rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      color: white;
}

.carousel-container {
      /* width: 100%; */
      /* max-width: 1600px; */
      /* position: relative; */
      /* padding: 30px 0px; */
      /* justify-content: center; */
      /* display: flex; */
      /* flex-direction: column; */
      /* align-items: center; */
}
.carousel-container-header {
      width: 100%;
      max-width: 1200px;
      justify-content: center;
      display: flex;
}

.carousel-wrapper {
      overflow: hidden;
      width: 100%;
      padding-bottom: 50px;
}

.carousel-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
      /* padding: 100px 20px; */
}

.carousel-card {
      /* flex: 0 0 400px; */
      /* overflow: hidden; */
      /* cursor: pointer; */
      /* transition: transform 0.3s ease; */
}
.carousel-card .card-image {
      height: 400px;
      border-radius: 24px;
}

.card-content {
      /* bottom: 0; */
      padding: 20px;
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      height: 10%;
      width: 100%;
      justify-content: center;
      align-items: center;
      display: flex;
}

.card-1 .card-image {
      background: #f5f1eb;
}
.card-2 .card-image {
      background: #e8f4fd;
}
.card-3 .card-image {
      background: #fdf2f0;
}
.card-4 .card-image {
      background: #f0f4f8;
}
.card-5 .card-image {
      background: #91fced;
}

.navigation {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 0px;
}

.nav-button {
      width: 48px;
      height: 48px;
      border: none;
      border-radius: 50%;
      background: rgb(0 0 0 / 68%);
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
}
.nav-button img {
      filter: invert(1);
      height: 25px;
}

.nav-button:disabled {
      opacity: 0.3;
      cursor: not-allowed;
}

@media (max-width: 768px) {
      .carousel-card {
            flex: 0 0 280px;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* General styling and fonts */

.layout-container {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 30px;
      align-items: center;
      justify-content: center;
}

.layout-content-container {
      /* max-width: 960px; */
      width: 100%;
      display: flex;
      flex-direction: column;
      padding: 0px; /* Default padding for mobile */
      max-width: 1200px;
      justify-content: center;
      align-items: center;
}

/* Header section */
.timeline-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0px 15px;
      width: 100%;
}

.timeline-header-text {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      /* min-width: 18rem; */
}

.timeline-header-title {
      color: var(--text-color-primary);
      letter-spacing: -0.025em;
      font-size: 32px;
      font-weight: 700;
      line-height: 1.25;
}

.timeline-header-subtitle {
      color: var(--text-color-secondary);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.5;
      padding: 30px;
      max-width: 1200px;
      justify-content: center;
      display: flex;
}

/* Timeline grid */
.timeline-grid {
      display: grid;
      grid-template-columns: 40px 1fr;
      column-gap: 0.5rem;
      /* padding: 0 1rem; */
      width: min-content;
      margin: 30px 0px;
      max-width: 400px;
}

.timeline-item {
      display: flex;
      flex-direction: column;
}

.timeline-icon-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      /* margin-bottom: 42px; */
}

.timeline-line {
      width: 1.5px;
      background-color: #ccc;
}

.timeline-line-top {
      /* height: 0.5rem; */
}

.timeline-line-middle {
      height: 0.5rem;
      flex-grow: 1;
}

.timeline-line-bottom {
      height: 0.5rem;
}

.timeline-content {
      display: flex;
      flex-direction: column;
      /* padding-top: 0.75rem; */
      /* padding-bottom: 0.75rem; */
      margin-bottom: 42px;
      width: 300px;
}

.timeline-content p {
      margin: 0;
}

.timeline-content-title {
      color: var(--primary-highlight-color);
      font-size: 1.3rem;
      font-weight: 500;
      line-height: 1.5;
}

.timeline-content-description {
      color: var(--text-color-secondary);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
}

/* Button section */
.button-wrapper {
      display: flex;
      padding: 0.75rem 1rem;
      justify-content: flex-start;
      gap: 10px;
}

.timeline-button {
      display: flex;
      min-width: 84px;
      max-width: 480px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 9999px;
      /* height: 2.5rem; */
      padding: 0 1rem;
      background-color: var(--primary-highlight-color);
      color: white;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 0.015em;
      border: none;
      text-decoration: none;
      background: #222;
      color: white;
      padding: 12px 31px;
      border-radius: 3remm;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s ease;
}
.timeline-button:hover {
      background-color: var(--primary-highlight-color);
      transform: translateY(-3px);
      box-shadow: 0 3px 14px 0px #004f958c;
      color: white;
}
/* Icons */
.timeline-icon {
      color: red;
}

/* Responsiveness */
@media (min-width: 768px) {
      .layout-content-container {
            /* padding: 0 10rem; */
      }
      .timeline-item:last-of-type .timeline-icon-wrapper .timeline-line-middle {
            visibility: hidden;
      }
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */

.outer-wrapper {
      background-color: #ffffff;
      width: 100%;
      /* max-width: 1200px; */
      padding: 30px 0px;
}

.inner-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0px 30px;
}

.row {
      display: flex;
      gap: var(--border-radius-padding);
      margin-bottom: var(--border-radius-padding);
      justify-content: center;
}

.cs-skill-block {
      position: relative;
      height: 300px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      text-align: left;
      font-weight: bold;
      color: white;
      border-radius: var(--outer-border-radius);
      /* padding: 10px; */
      overflow: hidden;
      gap: 20px;
      cursor: pointer;
      transition: 0.3s ease;
      position: relative;
      /* width: 100%; */
      /* height: 100%; */
      overflow: hidden;
}

.cs-skill-block h2 {
      font-size: 19px;
      margin: 0 0 0.4rem 0;
      width: 47%;
}

.cs-skill-block p {
      font-size: 1.8rem;
      font-weight: normal;
      margin: 0;
      line-height: 1.4;
      width: 80%;
}

.arrow-circle {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 40px;
      height: 40px;
      background-color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.6s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      z-index: 2;
}

.arrow-icon {
      width: 20px;
      height: 20px;
      transform: rotate(-45deg);
      transition: transform 0.3s ease;
      filter: invert(22%) sepia(95%) saturate(1326%) hue-rotate(193deg) brightness(93%) contrast(94%);
}

.cs-skill-block:hover .arrow-icon {
      transform: rotate(0deg);
}

.corner-image {
      position: absolute;
      width: 85%;
      /* height: 67%; */
      /* object-fit: cover; */
      /* z-index: 1; */
      border-radius: var(--outer-border-radius);
      /* display: none; */
}

.cs-skill-block-1 .corner-image {
      top: 0;
      right: 0px;
      height: 100%;
      width: 100%;
}

.cs-skill-block-2 .corner-image {
      top: 0;
      right: 0px;
      height: 100%;
      width: 100%;
}

.cs-skill-block-3 .corner-image {
      top: 0;
      right: 0px;
      height: 44%;
      width: 82%;
      height: 100%;
      width: 100%;
}

.cs-skill-block-4 .corner-image {
      top: 0;
      right: 0px;
      height: 54%;
      /* display: none; */
      height: 100%;
      width: 100%;
}

.cs-skill-block-5 .corner-image {
      top: 0;
      right: 0px;
      height: 55%;
      height: 100%;
      width: 100%;
}

.cs-skill-block-6 .corner-image {
      top: 0;
      right: 0px;
      height: 44%;
      width: 82%;
      height: 100%;
      width: 100%;
}

.cs-skill-block-1 {
      background-color: #2e6ca3;
      flex: 0 0 60%;
}
.cs-skill-block-2 {
      background-color: #2e6ca3;
      flex: 0 0 30%;
}
.cs-skill-block-3 {
      background-color: #2e6ca3;
      flex: 0 0 30%;
}
.cs-skill-block-4 {
      background-color: #2e6ca3;
      flex: 0 0 60%;
}
.cs-skill-block-5 {
      background-color: #2e6ca3;
      flex: 0 0 60%;
}
.cs-skill-block-6 {
      background-color: #2e6ca3;
      flex: 0 0 30%;
}

.cs-skill-block:hover .arrow-icon {
      transform: rotate(0deg);
}
.cs-skill-block:hover {
      transform: translateY(-5px);
      /* box-shadow: 0 0px 20px 1px rgb(150 150 150 / 28%); */
}
.btn-minimal .icon-image {
      display: flex;
      flex-direction: column;
      filter: invert(1);
}

.content-wrapper {
      display: flex;
      flex-direction: row;
      align-items: center;
      padding: 0px;
      gap: 40px;
}

.laptop-container {
      flex: 1;
      /* display: flex; */
      justify-content: center;
      align-items: center;
      /* transform: perspective(1000px) rotateX(5deg) rotateY(-20deg); */
      transition: transform 0.5s ease;
}

.laptop-image {
      width: 100%;
      max-width: 600px;
      border-radius: 10px;
      /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
}

.tutorials-info {
      flex: 1;
      padding: 20px;
}

.tutorials-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--claude-text-primary);
}

.tutorials-description {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--claude-text-primary);
      margin-bottom: 24px;
      opacity: 0.5;
}
.tutorials-section {
      width: 100%;
      padding: 30px;
      justify-content: center;
      display: flex;
      align-items: center;
}

.tutorials-section .container {
      width: 1200px;
}
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* Modern Skills Section Styles */
.skills-section {
      width: 100%;
      padding: 30px;
      background-color: #f3f4f6;
      display: flex;
      justify-content: center;
}

.skills-container {
      max-width: 1000px;
      width: 90%;
      margin: 0 auto;
}

/* Header Styling */
.skills-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
}

.skills-header::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--primary-highlight-color);
      border-radius: 3px;
}

.skills-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 16px;
      letter-spacing: -0.5px;
}

.skills-subtitle {
      font-size: 1.2rem;
      color: var(--text-secondary);
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.6;
}

/* Category Styling */
.skills-category {
      margin-bottom: 50px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
}

.skills-category.visible {
      opacity: 1;
      transform: translateY(0);
}

.category-header {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
}

.category-header h3 {
      font-size: var(--seconday-font-size);
      font-weight: 700;
      color: var(--text-secondary);
      margin-right: 20px;
      white-space: nowrap;
      position: relative;
      padding-left: 26px;
}

.category-header h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 10px;
      height: 10px;
      background: var(--primary-highlight-color);
      border-radius: 2rem;
}

.category-line {
      height: 2px;
      background: linear-gradient(to right, var(--primary-highlight-color) 0%, rgba(32, 97, 183, 0.1) 100%);
      flex-grow: 1;
      border-radius: 2px;
}

/* Skills Grid Layout */
.skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 12px;
}

/* Skill Cards */
.skill-card {
      background-color: #ffffff;
      border-radius: 28px;
      padding: 12px 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); */
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 1 / 1;
      justify-content: center;
}

.skill-card::before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-highlight-color), var(--link-hover));
      opacity: 0;
      transition: opacity 0.3s ease;
}

.skill-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.skill-card:hover::before {
      opacity: 1;
}

.skill-icon {
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 8px;
      transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
      transform: scale(1.1);
}

.skill-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      filter: none;
}

.skill-card h4 {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
      line-height: 1.4;
      transition: color 0.3s ease;
}

.skill-card:hover h4 {
      color: var(--primary-highlight-color);
}

/* Skill Proficiency Indicator (Optional) */
.skill-proficiency {
      display: none;
}

/* Divider */
.skills-divider {
      /* height: 1px; */
      background: linear-gradient(to right, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.01) 100%);
      margin: 40px 0 60px;
      position: relative;
}

.skills-divider::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--background-primary);
      padding: 0 20px;
      font-size: 1.2rem;
      color: var(--primary-highlight-color);
}

/* Responsive Design */
@media (max-width: 992px) {
      .skills-section {
            padding: 50px 0;
      }

      .skills-title {
            font-size: 2.4rem;
      }

      .skills-grid {
            grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
            gap: 12px;
      }

      .skill-card {
            padding: 12px 8px;
      }

      .skill-icon {
            width: 40px;
            height: 40px;
      }
}

@media (max-width: 768px) {
      .skills-section {
            padding: 45px 0;
      }

      .skills-title {
            font-size: 2.2rem;
      }

      .skills-subtitle {
            font-size: 1.1rem;
      }

      .category-header h3 {
            font-size: 1.4rem;
      }

      .skills-grid {
            grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
            gap: 10px;
      }

      .skill-card {
            padding: 10px 8px;
      }

      .skill-icon {
            width: 35px;
            height: 35px;
            margin-bottom: 6px;
      }
}

@media (max-width: 576px) {
      .skills-section {
            padding: 35px 0;
      }

      .skills-header {
            margin-bottom: 40px;
      }

      .skills-title {
            font-size: 2rem;
      }

      .skills-category {
            margin-bottom: 40px;
      }

      .category-header h3 {
            font-size: 1.3rem;
            padding-left: 10px;
      }

      .category-header h3::before {
            width: 4px;
            height: 20px;
      }

      .skills-grid {
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 8px;
      }

      .skill-card {
            padding: 10px 6px;
      }

      .skill-icon {
            width: 30px;
            height: 30px;
            margin-bottom: 6px;
      }

      .skill-card h4 {
            font-size: 0.75rem;
      }
}
.carousel-track {
      display: flex;
      transition: transform 0.3s ease-in-out;
      will-change: transform;
}

/* Blog layout */
.blog-container {
      display: flex;
      gap: 2rem;
      position: relative;
}

.blog-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      width: 100%;
}

/* TOC Styles */
.blog-toc {
      width: 250px;
      /* border-left: 3px solid var(--apple-gray-3); */
      position: sticky;
      top: 40px;
      align-self: flex-start;
      height: 80vh;
      overflow-y: scroll;
      scrollbar-width: none;
}

.blog-toc ul {
      list-style: none;
      padding: 0;
      margin: 0;
}

.blog-toc li {
      /* padding: 6px 0; */
}

.blog-toc a {
      text-decoration: none;
      color: #555;
      font-size: 0.95rem;
      display: block;
      transition: all 0.2s ease;
      padding-left: 20px;
}

.blog-toc a:hover {
      color: #333;
}

.blog-toc a.active {
      /* font-weight: bold; */
      color: black;
      /* border-left: 3px solid black; */
}

.blog-main {
      flex: 1;
      min-width: 0;
      padding: 0px 70px;
      padding-bottom: 300px;
      flex: 1;
      min-width: 0;
      padding: 0px;
      padding-bottom: 300px;
}
/* Hide TOC in mobile view */
@media (max-width: 768px) {
      .blog-container {
            flex-direction: column;
      }
      .blog-toc {
            display: none;
      }
      .blog-main {
            padding: 0px;
      }
      .main-content {
            flex-direction: column;
      }
}

/* Demo content styling */
#promptBreadcrumbs {
      margin-bottom: 2rem;
      color: #666;
}

#promptBreadcrumbs a {
      color: #0066cc;
      text-decoration: none;
}
/* ===================== MOBILE SIDEBAR ===================== */
.m-sidebar {
      font-family: sans-serif;
      background: #fff;
      height: 100%;
      padding: 20px;
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 9999;
      overflow-y: auto;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.m-menu-item:hover {
      color: var(--primary-highlight-color);
      transform: translateX(4px);
}
.m-menu-item {
      padding: 12px 0;
      font-size: 20px;
      font-weight: 400;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 27px;
      font-weight: 200;
      color: var(--apple-gray-1);
      text-decoration: none;
      padding: 12px 0;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-bottom: 0.5px solid rgb(134 134 139 / 82%);
      width: 90%;
}

.m-menu-back {
      font-weight: bold;
      cursor: pointer;
      margin-bottom: 15px;
      font-size: 18px;
}
.m-menu-item img {
      height: 2rem;
      width: 2rem;
}
.m-menu-back img {
      height: 2rem;
      width: 2rem;
}
.m-menu-close img {
      height: 2rem;
      width: 2rem;
}
.m-menu-close {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 20px;
      cursor: pointer;
      font-size: 22px;
}

.m-menu-open-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
}

/* ===================== DESKTOP SIDEBAR ===================== */
.d-sidebar {
      font-family: sans-serif;
      background: #fff;
      height: 500;
      padding: 0px;
      display: none;
      /* border-right: 1px solid #e0e0e0; */
      width: 430px;
      overflow-y: auto;
      scrollbar-width: thin;
}

.d-menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
}

.d-menu-item {
      padding: 5px 2px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.2s;
      border-radius: 10px;
      white-space: normal; /* allow text to wrap */
      word-break: break-word; /* break long words if needed */
      /* border-bottom: 1px solid #ccc; */
      /* border-left: 1px solid #ccc; */
      background-color: #f2f2f2;
      margin-bottom: 4px;
}

.d-menu-item:hover {
      background: #f5f5f5;
}

.d-chevron {
      transition: transform 0.2s;
}

.folder.open > .d-chevron {
      transform: rotate(90deg);
}

/* Indentation for nested children */
.d-menu-list .d-menu-list {
      padding-left: 10px;
      border-left: 1px dashed #ccc;
      margin-top: 0px;
      margin-left: 20px;
      font-size: 16px;
      text-align: left;
      justify-content: flex-start;
      /* display: flex; */
      margin-top: 5px;
      margin-bottom: 5px;
}
.d-menu-item {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      cursor: pointer;
      font-weight: 200;
      flex-direction: row-reverse;
}
.d-menu-list {
      list-style: none;
      /* padding-left: 1rem; */
      margin: 0px;
}
.folder.open > .d-menu-item .d-chevron img {
      transform: rotate(90deg);
      transition: transform 0.2s ease;
}
.folder > .d-menu-item .d-chevron img {
      transition: transform 0.2s ease;
}
li.active > .d-menu-item {
      font-weight: 600;
      color: var(--primary-highlight-color);
}
/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
      .m-menu-open-btn {
            display: inline-block;
            display: flex;
            justify-content: flex-start;
            height: max-content;
            border-bottom: 1px solid #ccc;
            border-top: 1px solid #ccc;
            /* background-color: #fbfbfd; */
      }
      .m-sidebar {
            display: none;
      }
}

@media (min-width: 768px) {
      .d-sidebar {
            display: block;
            padding: 00px;
            padding-top: 10px;
      }
      .m-sidebar,
      .m-menu-open-btn {
            display: none;
      }
}
/* Chevron icon styling */
.d-chevron img {
      transition: transform 0.25s ease;
}

/* When folder is open, rotate 90 degrees */
.folder.open > .d-menu-item .d-chevron img {
      transform: rotate(90deg);
}
.pre-wrapper {
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-bottom: 1rem;
      overflow: hidden;
      background: #24292e;
      margin: 20px 0px;
}
.pre-wrap-header {
      display: flex;
      justify-content: flex-end;
      background: #24292e;
      border-bottom: 1px solid #3b3b3b;
      padding: 6px 10px;
      color: white;
}
.copy-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 4px;
      color: #ffffff;
}
.copy-btn:hover {
      color: #d6d6d6;
}
.copy-btn img {
      width: 12px;
      height: 12px;
      border-radius: 0px;
}
pre {
      margin: 0;
      padding: 1rem;
      overflow-x: auto;
}

/* Blog layout */
.blog-container {
      display: flex;
      gap: 2rem;
      position: relative;
}

.blog-title {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
      width: 100%;
}

/* TOC Styles */
.blog-toc {
      /* width: 250px; */
      /* border-left: 3px solid var(--apple-gray-3); */
      /* position: sticky; */
      /* top: 100px; */
      /* align-self: flex-start; */
}

.blog-toc ul {
      list-style: none;
      padding: 0;
      margin: 0;
}

.blog-toc li {
      /* padding: 6px 0; */
}

.blog-toc a {
      text-decoration: none;
      color: #555;
      font-size: 12px;
      display: block;
      /* transition: all 0.2s ease; */
      padding-left: 20px;
      /* transform: translateX(-3px); */
      /* color: black; */
      border-left: 3px solid #f1f1f1;
      padding: 6px;
}

.blog-toc a:hover {
      color: #333;
}

.blog-toc a.active {
      /* font-weight: bold; */
      color: black;
      border-left: 3px solid black;
}

/* Hide TOC in mobile view */
@media (max-width: 768px) {
      .blog-container {
            flex-direction: column;
            /* padding: 0px 25px; */
            padding-bottom: 400px;
      }
      .blog-toc {
            display: none;
      }
}

/* Demo content styling */
#promptBreadcrumbs {
      margin-bottom: 0rem;
      color: #666;
}

#promptBreadcrumbs a {
      color: #0066cc;
      text-decoration: none;
}
/* Layout & type to match the screenshot */

.wrap {
      /* max-width: var(--container-w); */
      padding: 50px;
      box-sizing: border-box;
      margin: 0px;
      border-radius: 28px;
}
.prompt-main-content .wrap {
      /* background-color: #f3f4f6; */
}
.prompt-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      gap: 50px;
      margin: 20px 0px;
      /* margin-bottom: 0px; */
      /* background-color: #f3f4f6; */
      /* padding-bottom: 0px; */
      /* border-radius: 50px 50px 0px 0px; */
}

.prompt-section-header .heading {
      line-height: 1.1;
      font-weight: 200;
      margin: 0;
      font-size: xx-large;
}

.view-all {
      padding: 8px 19px;
      font-size: 14px;
      color: white;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
      background-color: black;
      border-radius: 2rem;
}

.view-all:hover,
.view-all:focus {
      text-decoration: underline;
}

.wrap .grid {
      /* background-color: #f3f4f6; */
      /* padding: 20px; */
      border-radius: 0px 0px 50px 50px;
}

.grid {
      /* display: grid; */
      /* grid-template-columns: repeat(3, 1fr); */
      /* gap: var(--border-radius-padding); */
      align-items: start;
      /* margin-bottom: 100px; */
}

.card {
      display: block;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease;
}
.card:hover,
.card:focus {
      /* transform: translateY(-5px); */
}

.thumb {
      width: 100%;
      height: 299px; /* big visual like the screenshot */
      border-radius: var(--inner-border-radius);
      object-fit: cover;
      display: block;
      box-shadow: none;
      overflow: hidden;
      background: #eee; /* placeholder bg */
      transition: filter 0.3s ease;
}
.card:hover .thumb,
.card:focus .thumb {
      filter: brightness(0.9);
}

.card-content {
      /* margin-top: 18px; */
}

.post-title {
      font-size: 1.25rem;
      line-height: 1.25;
      /* margin: 0 0 12px 0; */
      font-weight: 200;
      color: var(--apple-gray-1);
}

.meta {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 14px;
      color: var(--meta-color);
      flex-wrap: wrap;
}
.pre-wrap-header img {
      filter: invert(1);
}
.meta .section-name {
      font-weight: 600;
      color: var(--apple-gray-2);
      margin-right: 6px;
}

.breadcrumb-item {
      padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 980px) {
      .grid {
            /* grid-template-columns: repeat(2, 1fr); */
      }
}

.prompt-main-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      /* margin-top: 40px; */
}
@media (max-width: 768px) {
      .prompt-breadcrumbs {
            display: none;
            margin-top: 0px;
      }
      .prompt-main-content {
            margin-top: 0px;
      }
}
.main-content {
      /* padding-top: 64px; */
      display: flex;
}

@media (min-width: 1024px) {
      .main-content {
            width: 100%;
      }
}
/* Base Sidebar styles */
aside#sidebar {
      background-color: #fff;
      overflow-y: auto;
      width: 241px;
      height: 100vh;
      transition: transform 0.3s ease-in-out;
      height: calc(100vh - 64px);
      /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
      justify-content: center;
      /* align-items: center; */
      display: flex;
      flex-direction: column;
      font-weight: 200;
      padding: 18px;
}

/* Desktop: sidebar always visible, no transform */
@media (min-width: 768px) {
      aside#sidebar {
            top: 0;
            left: 0;
            transform: none !important;
            z-index: 30;
            justify-content: flex-start;
      }
      /* Hide mobile-specific buttons & overlay */
      #mobileMenuBtn,
      #closeSidebarBtn,
      #mobileOverlay {
            display: none;
      }
}

/* Mobile: sidebar fixed, full height & width, slide in/out */
@media (max-width: 767px) {
      aside#sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 50;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: #fff;
            z-index: 61;
            justify-content: flex-start;
            padding: 1.5rem;
      }
      /* Sidebar hidden by default - translate off screen */
      aside#sidebar.mobile-menu-closed {
            transform: translateX(-100%);
      }
      aside#sidebar.mobile-menu-open {
            transform: translateX(0);
      }

      /* Mobile Menu Button fixed on top-left */
      .sidebar-expand-btn {
            top: 5rem;
            left: 1rem;
            display: block;
      }
      /* Mobile overlay full screen black transparent */
      #mobileOverlay {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 45;
            transition: opacity 0.3s ease-in-out;
      }
      /* Hide overlay by default */
      #mobileOverlay.hidden {
            display: none;
            opacity: 0;
            pointer-events: none;
      }
}

/* Sidebar buttons style */
.sidebar-btn {
      text-decoration: none;
      color: #4b5563;
      transition: background-color 0.15s ease-in-out;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      font-size: 14px;
}
.sidebar-btn:hover {
      background-color: #f3f4f6;
}
.sidebar-btn.active-tab {
      background-color: #e5e7eb;
      color: #1f2937;
      font-weight: 500;
}
.sidebar-btn span:last-child {
      opacity: 0;
      transition: opacity 0.15s ease-in-out;
}
.sidebar-btn.active-tab span:last-child,
.sidebar-btn:hover span:last-child {
      opacity: 1;
}

/* Close button inside sidebar (mobile only) */
aside#sidebar .close-button {
      /* padding: 0.5rem; */
      border-radius: 0.5rem;
      cursor: pointer;
}
/* Mobile-specific styles */
@media (max-width: 767px) {
      /* Smaller font size (example) for sidebar buttons on mobile */
      .sidebar-btn {
            font-size: 1.875rem; /* e.g. 14px instead of 16px */
            padding: 15px 0px;
            font-weight: 200;
            font-size: 27px;
            font-weight: 200;
            color: var(--apple-gray-1);
      }

      /* Remove background and hover effect on active tab in mobile */
      .sidebar-btn.active-tab {
            background-color: transparent !important;
            font-weight: 500; /* keep font-weight if you want */
            color: #1f2937; /* keep color or adjust if needed */
      }

      /* Disable hover background on active tab */
      .sidebar-btn.active-tab:hover {
            background-color: transparent !important;
      }

      /* Optional: disable hover background on all sidebar buttons in mobile if you want */
      /* Or keep hover on non-active tabs */
      .sidebar-btn:hover:not(.active-tab) {
            background-color: #f3f4f6;
      }
}
.TALENTS-container {
      padding: 0px 30px;
      justify-content: center;
      display: flex;
}
.prompt-card-content {
      margin: 10px;
}
.projects-container {
      margin-top: 64px;
}
/* Sidebar */
.PROJECTSidebar {
      width: 256px;
      background: white;
      border-right: 1px solid #e5e7eb;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
}

.PROJECTSidebar-content {
      flex: 1;
      padding: 24px 16px;
      overflow-y: scroll;
}

.PROJECTSidebar h2 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 16px;
      color: #111827;
}

.filter-section {
      margin-bottom: 24px;
}

.filter-section h3 {
      font-weight: 500;
      margin-bottom: 8px;
      color: #374151;
}
.filter-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
}

.filter-option {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 7px;
}

.filter-option input {
      appearance: none;
      width: 16px;
      height: 16px;
      border: 2px solid #9ca3af;
      border-radius: 50%;
      margin-right: 8px;
      position: relative;
      cursor: pointer;
}

.filter-option input:checked {
      background-color: #3b82f6;
      border-color: #3b82f6;
}

.filter-option input:checked::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
}

.filter-option label {
      font-size: 14px;
      color: #374151;
      cursor: pointer;
}

.PROJECTSidebar-footer {
      padding: 16px;
      border-top: 1px solid #e5e7eb;
}

.clear-btn {
      width: 100%;
      background: #f3f4f6;
      color: #374151;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
}

.clear-btn:hover {
      background: #e5e7eb;
}

.PROJECTCards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(300px, 1fr));
      gap: 50px;
}

.PROJECTCard {
      background: white;
      /* border: 1px solid #e5e7eb; */
      border-radius: var(--outer-border-radius);
      /* overflow: hidden; */
      /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
      justify-content: flex-start;
      display: flex;
      flex-direction: column;
      scrollbar-width: none;
}

.project-image {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: var(--outer-border-radius) var(--outer-border-radius) 0px 0px;
}

.PROJECTCard-content {
      padding: var(--border-radius-padding);
      gap: 10px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
}

.PROJECTCard-title {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: #111827;
}

.PROJECTCard-description {
      color: #6b7280;
      font-size: 14px;
      margin-bottom: 8px;
      line-height: 1.4;
}

.PROJECTCard-meta {
      font-size: 12px;
      color: #9ca3af;
      margin-bottom: 8px;
}

.PROJECTCard-meta strong {
      color: #374151;
}

.tech-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
}

.tech-tag {
      background: #f3f4f6;
      color: #374151;
      font-size: 12px;
      padding: 4px 8px;
      border-radius: 9999px;
}

.demo-btn {
      margin-top: 12px;
      font-size: 14px;
      background: var(--primary-highlight-color);
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: var(--inner-border-radius);
      cursor: pointer;
      /* justify-self: flex-end; */
      align-self: flex-end;
      /* right: 0px; */
      /* display: flex; */
      width: max-content;
}

.demo-btn:hover {
      background: #000000;
}

/* Filter button for mobile */
.filter-toggle {
      position: fixed;
      bottom: 16px;
      right: 16px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary-highlight-color);
      color: white;
      border: none;
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      z-index: 200;
}
.filter-toggle img {
      filter: invert(1);
}
.PROJECTcontainer {
      display: flex;
      height: calc(100vh - 48px);
      margin-top: 49px;
}

.PROJECTmobile-overlay-header {
      height: 54px;
      background: white;
      /* border-bottom: 1px solid #e5e7eb; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
}

.PROJECTmobile-overlay-header h2 {
      font-size: 1.125rem;
      font-weight: 600;
      color: #111827;
}

.close-btn {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #6b7280;
      padding: 4px;
      height: 48px;
      width: 48px;
      align-items: center;
      justify-content: center;
      display: flex;
}

.PROJECTmobile-overlay-content {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
      .PROJECTSidebar {
            display: none;
      }

      .filter-toggle {
            display: flex;
      }

      .PROJECTCards-grid {
            grid-template-columns: 1fr;
            gap: 16px;
      }

      
      .PROJECTcontainer {
            margin-top: 0px;
      }
}

@media (min-width: 769px) {
      .PROJECTmobile-overlay {
            display: none !important;
      }
}

.PROJECTmain-content {
      flex: 1;
      overflow-y: auto;
      padding: 50px;
      background-color: #ededed;
}
.PROJECTmobile-overlay {
      top: 0px;
      position: fixed;
      z-index: 1000000000;
      background-color: white;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100vh;
      overflow-y: scroll;
}
/* Container styling */
#RDMAP-body {
      background-color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      margin: 0;
      font-family: Arial, sans-serif;
      color: #333;
}

/* Tabs container */
#RDMAP-tabs-container {
      display: flex;
      justify-content: space-evenly;
      /* border-bottom: 1px solid #ddd; */
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      margin-top: 3rem;
}

/* Individual tabs */
.RDMAP-tab {
      padding: 16px 24px;
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      transition: color 0.3s;
      width: 50%;
      border-left: 1px solid #ccc;
      /* background-color: red; */
}

.RDMAP-tab:hover {
      color: #777;
}

/* Content sections */
.RDMAP-tab-content {
      display: none;
      flex: 1;
      align-items: start;
      justify-content: center;
      /* max-width: 800px; */
      width: 100%;
      margin: 0 auto;
      /* padding: 24px; */
      text-align: center;
      padding: 0px;
      border-top: 1px solid #ccc;
}

.RDMAP-tab.active {
      color: var(--primary-highlight-color);
      background-color: #cbddee;
}

.RDMAP-desktop-only {
      display: flex;
      width: 100%;
      justify-content: center;
      padding: 16px;
}

.RDMAP-mobile-only {
      display: none;
}

@media (max-width: 600px) {
      .RDMAP-desktop-only {
            display: none;
      }
      .RDMAP-mobile-only {
            display: flex;
            width: 100%;
            padding: 16px;
            padding-right: 40px;
      }
}
/*
     * All class names have been prefixed with RDMAPTABTWO- as requested.
     * This section contains all the CSS to replicate the original Tailwind layout and styling.
     */

/* Reset and base styles */
.RDMAPTABTWO-bg-slate-50 {
      background-color: #f8fafc;
}

.RDMAPTABTWO-min-h-screen {
      min-height: 100vh;
      width: 100%;
}

.RDMAPTABTWO-font-sans {
      font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.RDMAPTABTWO-antialiased {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}

.RDMAPTABTWO-max-w-7xl {
      max-width: 80rem;
}

.RDMAPTABTWO-mx-auto {
      margin-left: auto;
      margin-right: auto;
}

.RDMAPTABTWO-px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
}

.RDMAPTABTWO-py-6 {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
}

.RDMAPTABTWO-mb-8 {
      margin-bottom: 2rem;
      display: none;
}

.RDMAPTABTWO-glass-effect {
      backdrop-filter: blur(8px);
      background: rgba(255, 255, 255, 0.8);
}

.RDMAPTABTWO-rounded-2xl {
      border-radius: 1rem;
}

.RDMAPTABTWO-p-4 {
      padding: 1rem;
}

.RDMAPTABTWO-border {
      border-width: 1px;
      border-style: solid;
}

.RDMAPTABTWO-border-gray-100 {
      border-color: #f3f4f6;
}

.RDMAPTABTWO-flex {
      display: flex;
}

.RDMAPTABTWO-items-center {
      align-items: center;
}

.RDMAPTABTWO-gap-2 {
      gap: 0.5rem;
}

.RDMAPTABTWO-text-sm {
      font-size: 0.875rem;
      line-height: 1.25rem;
}

.RDMAPTABTWO-grid {
      display: flex;
}

.RDMAPTABTWO-grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
}

.RDMAPTABTWO-gap-6 {
      /* gap: 1.5rem; */
      width: 100%;
      max-width: none;
      height: 100%;
}

.RDMAPTABTWO-min-h-\[70vh\] {
      min-height: 70vh;
}

@media (min-width: 1024px) {
      .RDMAPTABTWO-lg\:grid-cols-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
      }
}

.RDMAPTABTWO-bg-white {
      background-color: #ffffff;
}

.RDMAPTABTWO-rounded-3xl {
      border-radius: 0px;
}

.RDMAPTABTWO-p-6 {
      padding: 0px;
}

.RDMAPTABTWO-shadow-sm {
      padding: 10px;
      width: 33%;
      border: none;
      border-right: 1px solid #ccc;
}

.RDMAPTABTWO-mb-6 {
      margin-bottom: 1.5rem;
}

.RDMAPTABTWO-text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
}

.RDMAPTABTWO-font-semibold {
      font-weight: 600;
}

.RDMAPTABTWO-text-gray-900 {
      color: #111827;
}

.RDMAPTABTWO-text-gray-500 {
      color: #6b7280;
}

.RDMAPTABTWO-mt-1 {
      margin-top: 0.25rem;
}

.RDMAPTABTWO-space-y-3 > * + * {
      margin-top: 0.75rem;
}

.RDMAPTABTWO-max-h-\[60vh\] {
      max-height: 60vh;
}

.RDMAPTABTWO-overflow-y-auto {
      /* overflow-y: auto; */
}

.RDMAPTABTWO-pr-2 {
      /* padding: 0.5rem; */
      text-align: left;
}

.RDMAPTABTWO-text-center {
      text-align: center;
}

.RDMAPTABTWO-py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem;
}

.RDMAPTABTWO-w-16 {
      width: 4rem;
}

.RDMAPTABTWO-h-16 {
      height: 4rem;
}

.RDMAPTABTWO-mx-auto {
      /* margin-left: auto; */
      /* margin-right: auto; */
      padding: 0px;
      margin: 0px;
      width: 100%;
      max-width: none;
      /* border-top: 1px solid #ccc; */
      height: 100%;
}

.RDMAPTABTWO-mb-4 {
      margin-bottom: 1rem;
}

.RDMAPTABTWO-bg-gray-100 {
      background-color: #f3f4f6;
}

.RDMAPTABTWO-rounded-full {
      border-radius: 9999px;
}

.RDMAPTABTWO-justify-center {
      justify-content: center;
      width: max-content;
      aspect-ratio: 1;
      border: none;
      justify-self: center;
}

.RDMAPTABTWO-w-8 {
      width: 2rem;
}

.RDMAPTABTWO-h-8 {
      height: 2rem;
}

.RDMAPTABTWO-text-gray-400 {
      color: #9ca3af;
}

/* Custom animations and transitions */
.RDMAPTABTWO-panel-enter {
      animation: RDMAPTABTWO-slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.RDMAPTABTWO-panel-exit {
      animation: RDMAPTABTWO-slideOutDown 0.3s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.RDMAPTABTWO-card-hover {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.RDMAPTABTWO-card-hover:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
}

.RDMAPTABTWO-card-active {
      transform: scale(0.98);
      transition: transform 0.1s ease;
}

@keyframes RDMAPTABTWO-slideInUp {
      from {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
      }
      to {
            opacity: 1;
            transform: translateY(0) scale(1);
      }
}

@keyframes RDMAPTABTWO-slideOutDown {
      from {
            opacity: 1;
            transform: translateY(0) scale(1);
      }
      to {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
      }
}

.RDMAPTABTWO-breadcrumb-fade {
      animation: RDMAPTABTWO-fadeInSlide 0.3s ease forwards;
}

@keyframes RDMAPTABTWO-fadeInSlide {
      from {
            opacity: 0;
            transform: translateX(-10px);
      }
      to {
            opacity: 1;
            transform: translateX(0);
      }
}

.RDMAPTABTWO-custom-scroll::-webkit-scrollbar {
      width: 4px;
}

.RDMAPTABTWO-custom-scroll::-webkit-scrollbar-track {
      background: #f8fafc;
      border-radius: 2px;
}

.RDMAPTABTWO-custom-scroll::-webkit-scrollbar-thumb {
      background: #cbd5e1;
      border-radius: 2px;
}

.RDMAPTABTWO-custom-scroll::-webkit-scrollbar-thumb:hover {
      background: #94a3b8;
}

/* Loading skeleton */
.RDMAPTABTWO-skeleton {
      background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
      background-size: 200% 100%;
      animation: RDMAPTABTWO-loading 1.5s infinite;
}

@keyframes RDMAPTABTWO-loading {
      0% {
            background-position: 200% 0;
      }
      100% {
            background-position: -200% 0;
      }
}
.RDMAPMBLContainer {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
}

.RDMAPMBLPanel {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
}

.RDMAPMBLSlideLeft {
      transform: translateX(-100%);
}

.RDMAPMBLSlideRight {
      transform: translateX(100%);
}

.RDMAPMBLSlideCenter {
      transform: translateX(0);
}

.RDMAPMBLHeader {
      flex-shrink: 0;
}

.RDMAPMBLContent {
      flex: 1;
      overflow-y: auto;
}

.RDMAPMBLCard {
      cursor: pointer;
      margin-bottom: 1rem;
      font-size: 27px;
      font-weight: 200;
      color: var(--apple-gray-1);
      text-decoration: none;
      padding: 12px 0;
      transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      /* border-bottom: 0.5px solid rgba(134, 134, 139, 0.1); */
      width: 90%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
}
.RDMAPMBLCard:hover {
      color: var(--primary-highlight-color);
      transform: translateX(4px);
}
.RDMAPMBLBackButton {
      cursor: pointer;
      display: flex;
      align-items: center;
      margin-bottom: 20px;
}

.RDMAPMBLResourceCard {
      display: block;
      text-decoration: none;
      margin-bottom: 1rem;
      text-align: left;
      margin-top: 10px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 15px;
}
.RDMAPMBLResourceCardLink {
      display: flex;
      align-items: center;
      gap: 16px;
}
.section-header-sub-title {
      width: 100%;
      justify-content: center;
      display: flex;
      /* background-color: #f3f4f6; */
}
.resources-hero-section {
      background-color: #ffffff;
}
.prompt-choose-card {
      background: #f0f0f0;
      border-radius: var(--outer-border-radius);
      overflow: hidden;
      /* box-shadow: var(--card-shadow); */
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 360px;
      padding: var(--border-radius-padding);
}

.prompt-card-content {
      /* padding: 16px; */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* gap: 16px; */
}
.journey-section {
      background-color: white;
}

@media (max-width: 640px) {
}

@media (max-width: 400px) {
}
/* Media queries for responsive design */
@media screen and (max-width: 1024px) {
      .hero-headline {
            font-size: 36px;
      }

      .hero-description {
            font-size: 17px;
      }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 480px) {
      .hero-container {
            padding: var(--border-radius-padding);
            /* height: 5000px; */
      }

      .hero-headline {
            font-size: 28px;
      }

      .hero-greeting {
            font-size: 20px;
      }

      .hero-description {
            font-size: 15px;
            line-height: 1.5;
      }

      .hero-image-container {
            margin-bottom: 20px;
      }
      .carousel-container {
            padding-right: 0px;
      }
}
.portfolio-section,
.portfolio-container {
      background-color: #f3f4f6;
}
.no-content p {
      font-size: 35px;
      color: var(--primary-highlight-color);
}

@media screen and (max-width: 768px) {
      .no-content p {
            font-size: 85px;
      }
}
.ai-section-subtitle {
      width: 100%;
      justify-content: center;
      display: flex;
      font-size: 20px;
      padding: 0px 30px;
}
.smartest-thing-card-button button {
      background-color: var(--primary-highlight-color); /* Azure blue */
      color: white;
      border: none;
      padding: 10px 16px;
      margin-top: 10px;
      border-radius: var(--inner-border-radius);
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      transition: background-color 0.2s ease;
}

.smartest-thing-card-button button:hover {
      background-color: #005a9e;
}
.PROJECTCard-title-text {
}

.modal-header {
      position: relative;
      flex-direction: column-reverse;
      display: flex;
      justify-content: flex-end;
      align-items: end;
      /* scrollbar-width: none; */
}

.modal-image-container {
      position: relative;
      width: -webkit-fill-available;
      /* height: 150px; */
      overflow: hidden;
      /* margin: 24px; */
      justify-content: center;
      display: flex;
      align-items: center;
}

.modal-image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      /* border-radius: var(--outer-border-radius); */
}

.modal-title-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 50px;
      font-weight: bold;
      /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); */
      text-align: center;
}

.close-btn {
      /* position: absolute; */
}
.modal-header .close-btn {
      background-color: black;
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgb(0 0 0);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      margin-top: 24px;
      margin-right: 24px;
}
.close-btn:hover {
      background: rgb(255 255 255);
}
.modal-header .close-btn:hover {
      background-color: black;
      position: absolute;
}
.modal-content {
      padding: 100px;
}

.project-details-text {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
}

.learn-more-btn {
      background: #2e2e2e;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: 10px;
      cursor: pointer;
      /* margin-right: 10px; */
      width: max-content;
      margin-top: 12px;
      font-size: 14px;
      background: #333333;
      color: white;
      border: none;
      padding: 8px 12px;
      border-radius: var(--inner-border-radius);
      cursor: pointer;
      /* justify-self: flex-end; */
      align-self: flex-end;
      /* right: 0px; */
      /* display: flex
; */
      width: max-content;
}

.learn-more-btn:hover {
      background: #000000;
}
.project-card-buttons {
      justify-content: flex-end;
      display: flex;
      gap: 10px;
}
.RDMAPV1-gradient-1 {
      background: linear-gradient(135deg, #ff5f6d, #ffc371);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-2 {
      background: linear-gradient(135deg, #f7971e, #ffd200);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-3 {
      background: linear-gradient(135deg, #a18cd1, #fbc2eb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-4 {
      background: linear-gradient(135deg, #56ab2f, #a8e063);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-5 {
      background: linear-gradient(135deg, #36d1dc, #5b86e5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-6 {
      background: linear-gradient(135deg, #ff6a88, #ff99ac);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-7 {
      background: linear-gradient(135deg, #f7971e, #ffd200, #ff5f6d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-8 {
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-9 {
      background: linear-gradient(135deg, #f46b45, #eea849);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-10 {
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-11 {
      background: linear-gradient(135deg, #fc5c7d, #6a82fb);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-12 {
      background: linear-gradient(135deg, #ff9966, #ff5e62);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-13 {
      background: linear-gradient(135deg, #56ab2f, #a8e063);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-14 {
      background: linear-gradient(135deg, #00c3ff, #ffff1c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}
.RDMAPV1-gradient-15 {
      background: linear-gradient(135deg, #f953c6, #b91d73);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.RDMAPV1-section-wrapper {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0px 30px;
}

.RDMAPV1-text-center {
      text-align: center;
}

.RDMAPV1-py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem;
}

.RDMAPV1-mt-12 {
      margin-top: 3rem;
}

.RDMAPV1-mb-4 {
      margin-bottom: 1rem;
}

.RDMAPV1-text-5xl {
      font-size: 3rem;
      line-height: 1;
}

.RDMAPV1-font-extrabold {
      font-weight: 800;
}

.RDMAPV1-text-black {
      color: black;
}

.RDMAPV1-flex {
      display: flex;
}

.RDMAPV1-flex-col {
      flex-direction: column;
}

.RDMAPV1-flex-row {
      flex-direction: row;
}

.RDMAPV1-flex-row-reverse {
      flex-direction: row-reverse;
}

.RDMAPV1-items-center {
      align-items: center;
}

.RDMAPV1-justify-center {
      justify-content: center;
}

.RDMAPV1-justify-between {
      justify-content: space-between;
}

.RDMAPV1-flex-1 {
      flex: 1;
}

.RDMAPV1-px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
}

.RDMAPV1-py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem;
}

.RDMAPV1-border-b {
      border-bottom: 1px solid #e5e7eb;
}

.RDMAPV1-text-lg {
      font-size: 1.125rem;
}

.RDMAPV1-text-4xl {
      font-size: 3.5rem;
}

.RDMAPV1-text-xl {
      font-size: 1.25rem;
}

.RDMAPV1-font-medium {
      font-weight: 500;
}

.RDMAPV1-leading-tight {
      line-height: 1.25;
}

.RDMAPV1-leading-relaxed {
      line-height: 1.625;
}

.RDMAPV1-max-w-xl {
      max-width: 36rem;
}

.RDMAPV1-mx-auto {
      margin-left: auto;
      margin-right: auto;
}

.RDMAPV1-mb-3 {
      margin-bottom: 0.75rem;
}

.RDMAPV1-mb-5 {
      margin-bottom: 1.25rem;
}

.RDMAPV1-mb-6 {
      margin-bottom: 1.5rem;
}

.RDMAPV1-mt-8 {
      margin-top: 2rem;
}

.RDMAPV1-bg-black {
      background-color: black;
}

.RDMAPV1-text-white {
      color: white;
}

.RDMAPV1-rounded-full {
      border-radius: 9999px;
}

.RDMAPV1-px-6 {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
}

.RDMAPV1-py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
}

.RDMAPV1-inline-block {
      display: inline-block;
}

.RDMAPV1-text-huge {
      font-size: 20rem;
      line-height: 1;
}

.RDMAPV1-w-full {
      width: 100%;
}

.RDMAPV1-h-400 {
      height: 400px;
}

.RDMAPV1-border-none {
      border: none;
}

.RDMAPV1-button {
      background-color: black;
      color: white;
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-family: inherit;
      transition: background-color 0.2s;
}
.RDMAPV1-flscrnbtn {
      margin-top: 50px;
}

.RDMAPV1-mobile-only {
      display: block;
}

.RDMAPV1-mobile-hidden {
      display: none;
}

/* Fullscreen styles */
.RDMAPV1-fullscreen-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: white;
      z-index: 9999;
      display: none;
}

.RDMAPV1-fullscreen-overlay.RDMAPV1-active {
      display: flex;
      flex-direction: column;
}

.RDMAPV1-fullscreen-header {
      background: white;
      color: black;
      padding: 0.75rem 1rem;
      height: 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e5e7eb;
}

.RDMAPV1-close-btn {
      background: none;
      border: none;
      color: black;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
}

.RDMAPV1-fullscreen-iframe {
      flex: 1;
      width: 100%;
      border: none;
}
.RDMAPV1-section {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem;
      border-bottom: 1px solid #e5e7eb;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
}
.RDMAPV1-reverse {
      flex-direction: row-reverse;
}

.RDMAPV1-section-content {
      flex: 1;
      margin-top: 2rem;
      text-align: left;
}

.RDMAPV1-section-number {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
}
.TESTIMONIAL-body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            min-height: 100vh;
            padding: 4rem 1rem;
        }

        .TESTIMONIAL-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .TESTIMONIAL-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .TESTIMONIAL-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #111827;
            margin-bottom: 0.75rem;
        }

        .TESTIMONIAL-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
        }

        .TESTIMONIAL-carousel-wrapper {
            position: relative;
        }

        .TESTIMONIAL-carousel {
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .TESTIMONIAL-cards-wrapper {
            display: flex;
            transition: transform 0.5s ease-out;
        }

        .TESTIMONIAL-card-container {
            flex-shrink: 0;
            width: 100%;
            padding: 0 1rem;
        }

        @media (min-width: 768px) {
            .TESTIMONIAL-card-container {
                width: 50%;
            }
        }

        .TESTIMONIAL-card {
            background-color: #ffffff;
            border-radius: 0.75rem;
            padding: 2rem;
            height: 100%;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            animation: TESTIMONIAL-fadeIn 0.4s ease-out;
        }

        .TESTIMONIAL-card:hover {
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        @keyframes TESTIMONIAL-fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .TESTIMONIAL-card-header {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .TESTIMONIAL-avatar {
            flex-shrink: 0;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background-color: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #374151;
            font-weight: 600;
            font-size: 1.125rem;
            border: 1px solid #e5e7eb;
        }

        .TESTIMONIAL-info {
            flex: 1;
        }

        .TESTIMONIAL-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.25rem;
        }

        .TESTIMONIAL-role {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .TESTIMONIAL-quote-wrapper {
            position: relative;
            padding-left: 1.5rem;
        }

        .TESTIMONIAL-quote-icon {
            position: absolute;
            top: -0.5rem;
            left: -0.5rem;
            width: 2rem;
            height: 2rem;
            color: #e5e7eb;
        }

        .TESTIMONIAL-quote {
            font-size: 1rem;
            line-height: 1.625;
            color: #374151;
        }

        .TESTIMONIAL-controls {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 2rem;
        }

        .TESTIMONIAL-indicators {
            display: flex;
            gap: 0.5rem;
        }

        .TESTIMONIAL-indicator {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background-color: #d1d5db;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .TESTIMONIAL-indicator:hover {
            background-color: #9ca3af;
        }

        .TESTIMONIAL-indicator-active {
            background-color: var(--primary-highlight-color);
        }

        .TESTIMONIAL-nav-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .TESTIMONIAL-nav-btn {
            background-color: var(--primary-highlight-color);
            color: white;
            padding: 0.75rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .TESTIMONIAL-nav-btn:hover {
            opacity: 0.8;
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .TESTIMONIAL-nav-icon {
            width: 1.25rem;
            height: 1.25rem;
        }

        @media (max-width: 767px) {
            .TESTIMONIAL-title {
                font-size: 2rem;
            }

            .TESTIMONIAL-card {
                padding: 1.5rem;
            }
        }
        .testimonial-section {
    /* background-color: #f3f4f6; */
    max-width: 1200px;
    margin: auto;
}