  /* Iconic Projects Showcase Styles */
      .iconic-showcase-section {
        background: #ffffff;
        position: static;
      }

      .section-subtitle {
        color: #666;
        font-size: 16px;
        margin-bottom: 40px;
      }

      .iconic-projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
      }

      .iconic-project-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
      }

      .iconic-project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
      }

      .project-card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .project-card-image:hover {
        transform: scale(1.05);
      }

      .project-card-body {
        padding: 24px;
      }

      .project-card-title {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
        line-height: 1.4;
      }

      .project-card-description {
        font-size: 13px;
        color: #666;
        margin-bottom: 12px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .project-card-meta {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 16px;
        font-size: 12px;
      }

      .project-card-meta-item {
        background: #f8f9ff;
        padding: 6px 12px;
        border-radius: 6px;
        color: #667eea;
        font-weight: 600;
      }

      .project-card-amount {
        font-size: 16px;
        font-weight: 700;
        color: #764ba2;
        margin-bottom: 16px;
      }

      .project-card-footer {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .view-project-btn {
        flex: 1;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        padding: 10px 16px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        font-size: 13px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
      }

      .view-project-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
      }

      /* Loading Skeleton */
      .loading-skeleton {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
      }

      .skeleton-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        animation: skeleton-loading 1s infinite;
      }

      .skeleton-card::before {
        content: '';
        display: block;
        width: 100%;
        height: 220px;
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 2s infinite;
      }

      @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
      }

      /* Empty State */
      .empty-projects-state {
        text-align: center;
        padding: 80px 20px;
      }

      .empty-icon {
        font-size: 80px;
        color: #ddd;
        margin-bottom: 20px;
      }

      .empty-projects-state h3 {
        color: #666;
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .empty-projects-state p {
        color: #999;
        font-size: 16px;
      }

      /* Project View Modal */
      .project-modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        animation: fadeIn 0.3s ease;
      }

      .project-modal-overlay.show {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      .project-modal-content {
        background: white;
        border-radius: 16px;
        max-width: 700px;
        width: 90%;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease;
        position: relative;
      }

      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .project-modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        color: #333;
        transition: all 0.3s ease;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .project-modal-close:hover {
        background: white;
        color: #667eea;
        transform: rotate(90deg);
      }

      .project-modal-body {
        display: flex;
        flex-direction: column;
      }

      .project-modal-image {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 16px 16px 0 0;
      }

      .project-modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .project-modal-details {
        padding: 32px;
      }

      .project-modal-details h2 {
        font-size: 28px;
        font-weight: 700;
        color: #333;
        margin-bottom: 16px;
      }

      .project-modal-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid #f0f0f0;
      }

      .meta-item {
        display: flex;
        flex-direction: column;
      }

      .meta-label {
        font-size: 12px;
        color: #999;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .meta-value {
        font-size: 18px;
        color: #333;
        font-weight: 700;
        margin-top: 4px;
      }

      .project-modal-section {
        margin-bottom: 24px;
      }

      .project-modal-section:last-child {
        margin-bottom: 0;
      }

      .project-modal-section h3 {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 12px;
      }

      .project-modal-section p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin: 0;
      }

      /* Image Lightbox Modal */
      .image-lightbox-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        z-index: 10000;
        animation: fadeIn 0.3s ease;
      }

      .image-lightbox-overlay.show {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .image-lightbox-container {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
        animation: zoomIn 0.3s ease;
      }

      @keyframes zoomIn {
        from {
          opacity: 0;
          transform: scale(0.9);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .image-lightbox-content {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .image-lightbox-content img {
        max-width: 100%;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
      }

      .image-lightbox-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 28px;
        color: #333;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 10001;
      }

      .image-lightbox-close:hover {
        background: white;
        color: #667eea;
        transform: rotate(90deg) scale(1.1);
      }

      .image-lightbox-close:active {
        transform: rotate(90deg) scale(0.95);
      }

      /* Responsive */
      @media (max-width: 1200px) {
        .iconic-projects-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .iconic-projects-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .project-modal-content {
          width: 95%;
        }

        .project-modal-details {
          padding: 20px;
        }

        .project-modal-details h2 {
          font-size: 22px;
        }

        .project-modal-meta {
          grid-template-columns: 1fr;
        }
      }