/* Hero Section */
    .custom-hero-myprojects {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      padding: 8rem 2rem 6rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .custom-hero-myprojects::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }

    .custom-hero-content-myprojects {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .custom-hero-myprojects h1 {
      font-size: 3.5rem;
      font-weight: var(--font-weight-extrabold);
      color: white;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .custom-hero-myprojects p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    /* Projects Grid Section */
    .custom-projects-section {
      padding: 6rem 2rem;
      background: white;
    }

    .custom-section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 4rem;
    }

    .custom-section-header h2 {
      font-size: 2.5rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-dark);
      margin-bottom: 1rem;
    }

    .custom-section-header p {
      font-size: 1.125rem;
      color: var(--color-text);
      line-height: 1.6;
    }

    .custom-projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .custom-project-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .custom-project-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .custom-project-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    }

    .custom-hero-image {
      width: 100%;
      max-width: 1200px;
      margin: 2rem auto 0;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .custom-project-content {
      padding: 2rem;
    }

    .custom-project-title {
      font-size: 1.5rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-dark);
      margin-bottom: 0.75rem;
    }

    .custom-project-description {
      font-size: 1rem;
      color: var(--color-text);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .custom-project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .custom-project-tag {
      background: var(--color-light);
      color: var(--color-primary);
      padding: 0.375rem 0.875rem;
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: var(--font-weight-semibold);
    }

    .custom-project-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: var(--font-weight-semibold);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .custom-project-link:hover {
      color: var(--color-secondary);
      gap: 0.75rem;
    }

    /* Process Section */
    .custom-process-section {
      padding: 6rem 2rem;
      background: var(--color-light);
    }

    .custom-process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .custom-process-step {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .custom-process-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
    }

    .custom-process-step h3 {
      font-size: 1.25rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-dark);
      margin-bottom: 0.75rem;
    }

    .custom-process-step p {
      font-size: 1rem;
      color: var(--color-text);
      line-height: 1.6;
    }

    /* CTA Section */
    .custom-cta-section {
      padding: 6rem 2rem;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      text-align: center;
    }

    .custom-cta-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .custom-cta-section h2 {
      font-size: 2.5rem;
      font-weight: var(--font-weight-bold);
      color: white;
      margin-bottom: 1.5rem;
    }

    .custom-cta-section p {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .custom-cta-button {
      display: inline-block;
      background: white;
      color: var(--color-primary);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-weight: var(--font-weight-bold);
      font-size: 1.125rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .custom-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      background: var(--color-light);
    }

    /* Carousel Section */
    .custom-carousel-section {
      padding: 6rem 2rem;
      background: white;
      overflow: hidden;
    }

    .custom-carousel-container {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    .custom-carousel-wrapper {
      overflow: hidden;
      border-radius: 12px;
    }

    .custom-carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .custom-carousel-card {
      min-width: 100%;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .custom-carousel-image {
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      object-fit: cover;
    }

    .custom-carousel-content {
      padding: 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .custom-carousel-title {
      font-size: 1.75rem;
      font-weight: var(--font-weight-bold);
      color: var(--color-dark);
      margin-bottom: 1rem;
    }

    .custom-carousel-description {
      font-size: 1.125rem;
      color: var(--color-text);
      line-height: 1.6;
    }

    .custom-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: white;
      border: 2px solid var(--color-primary);
      color: var(--color-primary);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 10;
      font-size: 1.25rem;
    }

    .custom-carousel-btn:hover {
      background: var(--color-primary);
      color: white;
      transform: translateY(-50%) scale(1.1);
    }

    .custom-carousel-btn:active {
      transform: translateY(-50%) scale(0.95);
    }

    .custom-carousel-prev {
      left: 0;
    }

    .custom-carousel-next {
      right: 0;
    }

    .custom-carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .custom-carousel-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }

    .custom-carousel-dot.active {
      background: var(--color-primary);
      width: 32px;
      border-radius: 6px;
    }

    .custom-carousel-dot:hover {
      background: var(--color-secondary);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .custom-hero-myprojects {
        padding: 5rem 1.5rem 4rem;
      }

      .custom-hero-myprojects h1 {
        font-size: 2.5rem;
      }

      .custom-hero-myprojects p {
        font-size: 1.125rem;
      }

      .custom-projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .custom-section-header h2 {
        font-size: 2rem;
      }

      .custom-process-grid {
        grid-template-columns: 1fr;
      }

      .custom-cta-section h2 {
        font-size: 2rem;
      }

      .custom-carousel-container {
        padding: 0 2.5rem;
      }

      .custom-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .custom-carousel-image {
        height: 220px;
      }

      .custom-carousel-title {
        font-size: 1.5rem;
      }

      .custom-carousel-description {
        font-size: 1rem;
      }
    }
