/* Custom Tech Tag for Webdev Project */
.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}
.tech-tag {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    user-select: none;
    display: inline-block;
    line-height: 1.5;
}

.webdev-project-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    margin-top: 2px;
}
.webdev-project-description {
    font-size: 0.93rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.5;
}
.webdev-btn.github-btn {
    background: linear-gradient(135deg, #23272f 0%, #374151 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 600;
    padding: 7px 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.2s;
}
.webdev-btn.github-btn:hover {
    background: linear-gradient(135deg, #374151 0%, #23272f 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 18px rgba(34,197,94,0.13);
}
.webdev-project-preview {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: #18181b;
    min-height: 220px;
    max-height: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    display: block;
}
.project-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #23272f 0%, #18181b 100%);
    color: #fff;
    font-size: 2.2rem;
    opacity: 0.7;
    border-radius: 15px 15px 0 0;
}
.project-preview-placeholder i {
    margin-bottom: 6px;
}
/* Projects Grid Layout CSS */

/* Grid Container */
.projects-grid-container {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 20px;
    width: 100%;
    min-height: 600px;
}

/* Top Row: 2 columns */
.projects-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

/* Bottom Row: Full width */
.projects-bottom-row {
    display: grid;
    grid-template-columns: 1fr;
    height: 800px; /* Diperlebar dari 500px jadi 800px */
}

/* Individual Grid Cards */
.project-grid-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.project-grid-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Grid Card Headers */
.project-grid-header {
    flex-shrink: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.project-grid-header .project-type-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ffffff;
    text-align: center;
}

.project-grid-header .project-type-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
    text-align: center;
}

/* Grid Card Content with Scrolling */
.project-grid-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    margin-right: -10px;
}

/* Custom Scrollbar for Grid Cards */
.project-grid-content::-webkit-scrollbar {
    width: 8px;
}
.project-grid-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
.project-grid-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: background 0.2s;
}

/* AI card styling: tidy layout, consistent image sizing and tags */
.ai-card .ai-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ai-card .ai-project-card {
    margin-bottom: 0;
    background: rgba(40,40,40,0.98);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 0; /* image will sit flush to top, content has its own padding */
    display: flex;
    flex-direction: column; /* stack image on top like webdev cards */
    gap: 0;
    align-items: stretch;
    overflow: hidden;
}
.ai-project-image {
    width: 180px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    background: #232323;
    display: block;
}
.ai-image-wrapper {
    width: 100%;
    height: 220px; /* match webdev preview height (larger, elongated) */
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* rounded top corners like webdev */
    background: #232323;
    display: block;
}
.ai-image-wrapper img.ai-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* AI projects grid container styling */
.ai-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 18px; /* slightly tighter gap to reduce overall height */
}
.ai-card .webdev-project-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    justify-content: center; /* vertically center text area when possible */
}

.ai-card .webdev-project-info { /* ensure comfortable vertical padding */
    padding: 16px; /* match webdev card inner padding */
}

/* Strong overrides to ensure vertical centering */
.ai-card .ai-image-wrapper {
    align-self: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.ai-card .webdev-project-info {
    align-self: center !important;
}

.ai-card .webdev-project-description {
    -webkit-line-clamp: 4; /* allow slightly more lines for AI cards */
    line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Make AI column area scrollable if too many cards; limit height to container */
.project-grid-card.ai-card .project-grid-content {
    max-height: 520px; /* keep consistent with inline previous value */
    overflow-y: auto;
    padding-right: 8px;
    padding-bottom: 0; /* remove extra bottom space inside the scrollable area */
    box-sizing: border-box; /* ensure padding is included in height calculations */
}
.project-grid-card.ai-card .project-grid-content::-webkit-scrollbar {
    width: 10px;
}
.project-grid-card.ai-card .project-grid-content::-webkit-scrollbar-track {
    background: transparent;
}
.project-grid-card.ai-card .project-grid-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
}
.project-grid-card.ai-card .project-grid-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.10);
}
.ai-card .project-tech-stack { gap: 8px; margin-bottom: 4px; }
.ai-card .tech-tag { background: rgba(168,85,247,0.85); color: #fff; padding: 4px 8px; border-radius: 8px; font-size: 0.78rem; font-weight:600; }

/* Responsive: stack image above text on smaller screens */
@media (max-width: 900px) {
    .ai-card .ai-project-card {
        flex-direction: column;
        align-items: stretch;
    }
    .ai-project-image { width: 100%; height: 160px; }
}

.project-grid-content::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.7);
}

/* Specific Card Styling */
.cybersecurity-card {
    border-color: rgba(59, 130, 246, 0.3);
}

.cybersecurity-card .project-grid-header .project-type-title {
    color: #ffffff; /* Warna putih untuk judul Cybersecurity */
}

.ai-card {
    border-color: rgba(168, 85, 247, 0.3);
}

.ai-card .project-grid-header .project-type-title {
    color: #ffffff; /* Warna putih untuk judul Artificial Intelligence */
}

.webdev-card {
    border-color: rgba(34, 197, 94, 0.3);
}

.webdev-card .project-grid-header .project-type-title {
    color: #ffffff; /* Warna putih untuk judul Web Development */
}

/* Web Development specific maintenance notice styling */
.webdev-card .maintenance-notice {
    border-color: rgba(34, 197, 94, 0.3);
}

.webdev-card .maintenance-notice:hover {
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

/* Adjust project cards inside grid */
.project-grid-content .cybersecurity-projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.project-grid-content .project-card {
    margin-bottom: 15px;
}

.project-grid-content .project-card:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-top-row {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }
    
    .projects-bottom-row {
        height: 350px; /* Responsive height untuk mobile */
    }
    
    .project-grid-card {
        min-height: 300px;
        padding: 15px;
    }
    
    .project-grid-header .project-type-title {
        font-size: 1.3rem;
    }
    
    .project-grid-header .project-type-subtitle {
        font-size: 0.85rem;
    }
    
    .project-grid-content .maintenance-notice {
        padding: 25px 15px;
    }
    
    .project-grid-content .maintenance-notice .maintenance-icon {
        font-size: 2rem;
    }
    
    .project-grid-content .maintenance-notice h4 {
        font-size: 1.1rem;
    }
    
    .project-grid-content .maintenance-notice p {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
  .webdev-projects-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 18px;
  }
}

@media (max-width: 600px) {
    /* Stack AI card content and make images taller on small screens */
    .ai-card .ai-project-card {
        flex-direction: column;
        align-items: stretch;
    }
    .ai-project-image { width: 100%; height: 180px; }

    /* Make webdev grid single column on small screens */
    .webdev-projects-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: none !important;
        gap: 14px;
        padding: 0 1px;
    }

    .webdev-project-card {
        width: 100%;
        margin: 0 auto 12px auto;
    }
}

/* Ensure main projects card doesn't have conflicting styles */
.projects-main-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Maintenance Notice styling for grid cards */
.project-grid-content .maintenance-notice {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-primary);
    transition: all 0.3s ease;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.project-grid-content .maintenance-notice:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.project-grid-content .maintenance-notice .maintenance-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.project-grid-content .maintenance-notice h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
}

.project-grid-content .maintenance-notice p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
    text-align: center;
}

.project-grid-content .maintenance-animation {
    margin-top: 15px;
}

.project-grid-content .loading-dots {
    display: inline-flex;
    gap: 6px;
    justify-content: center;
}

.project-grid-content .loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    animation: bounce 1.4s ease-in-out infinite both;
}

.project-grid-content .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.project-grid-content .loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.project-grid-content .loading-dots span:nth-child(3) { animation-delay: 0s; }

/* Web Development Projects Grid */
.webdev-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px; /* Perbesar gap dari 15px jadi 20px */
    height: 100%;
    padding: 15px 0; /* Perbesar padding */
}

.webdev-project-card {
    background: rgba(220, 38, 38, 0.08); /* Red primary background */
    border-radius: 15px; /* Perbesar border radius */
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.2); /* Red primary border */
    display: flex;
    flex-direction: column;
    height: 440px;
    min-height: 440px;
    max-height: 440px;
}

/* Allow AI project cards (which reuse webdev classes) to be flexible */
.ai-project-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

.webdev-project-card:hover {
    transform: translateY(-5px); /* Perbesar hover effect */
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3); /* Red primary shadow */
    border-color: rgba(220, 38, 38, 0.4);
    background: rgba(220, 38, 38, 0.12);
}

/* Under Development Card Styling */
.webdev-project-card.under-development {
    background: rgba(220, 38, 38, 0.08); /* Red primary background */
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.webdev-project-card.under-development:hover {
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.4);
}

.under-dev-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 25px 20px; /* Perbesar padding */
    text-align: center;
}

.under-dev-icon {
    font-size: 3rem; /* Perbesar icon dari 2.5rem jadi 3rem */
    color: #dc2626; /* Red primary color */
    margin-bottom: 20px; /* Perbesar margin */
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.under-dev-content h4 {
    font-size: 1.3rem; /* Perbesar font dari 1.1rem jadi 1.3rem */
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0; /* Perbesar margin */
    line-height: 1.2;
}

.under-dev-content p {
    font-size: 0.95rem; /* Perbesar font dari 0.85rem jadi 0.95rem */
    color: var(--text-secondary);
    margin: 0 0 20px 0; /* Perbesar margin */
    opacity: 0.8;
}

.under-dev-content .loading-dots {
    display: inline-flex;
    gap: 8px; /* Perbesar gap dari 6px jadi 8px */
    justify-content: center;
}

.under-dev-content .loading-dots span {
    width: 10px; /* Perbesar dari 8px jadi 10px */
    height: 10px;
    border-radius: 50%;
    background: #dc2626; /* Red primary color */
    animation: bounce 1.4s ease-in-out infinite both;
}

.under-dev-content .loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.under-dev-content .loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.under-dev-content .loading-dots span:nth-child(3) { animation-delay: 0s; }

/* Float animation for icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.webdev-project-preview {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.project-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); /* Red primary gradient */
    color: white;
    transition: transform 0.3s ease;
}

.project-preview-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.project-preview-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.webdev-project-card:hover .project-preview-image,
.webdev-project-card:hover .project-preview-placeholder {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.webdev-project-card:hover .project-overlay {
    opacity: 1;
}

.project-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tech-tag {
    background: rgba(34, 197, 94, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.webdev-project-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.webdev-project-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.webdev-project-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0 0 10px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.webdev-btn {
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.view-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.view-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
}

.github-btn {
    background: linear-gradient(135deg, #6b7280 0%, #374151 100%);
    color: white;
}

.github-btn:hover {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    transform: translateY(-1px);
}

/* CSS tambahan untuk carousel Malaundry */
.malaundry-carousel {
    position: relative;
    width: 100%;
    min-height: 220px;
    max-height: 320px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-images {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-image {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
    opacity: 0;
    display: none;
  transition: opacity 0.4s;
  z-index: 1;
  border-radius: 15px 15px 0 0;
  background: #18181b;
}
.carousel-image.active {
    opacity: 1;
    z-index: 2;
    display: block;
}
.carousel-btn {
  background: rgba(34,34,34,0.7);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-btn:hover { background: #dc2626; color: #fff; }

@media (max-width: 600px) {
  .projects-bottom-row {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
  .webdev-card .project-grid-content {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 10px;
  }
  .webdev-project-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-bottom: 18px;
  }
    .webdev-project-preview, .malaundry-carousel {
        min-height: 160px !important;
        max-height: 180px !important;
        height: 160px !important;
    }
}

    @media (min-width: 1024px) {
    .projects-top-row {
        /* Reduced height for a tighter initial viewport */
        min-height: 560px;
        align-items: stretch;
    }
  .project-grid-card.cybersecurity-card,
  .project-grid-card.ai-card {
    min-height: 900px;
    height: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
  }
  .project-grid-content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    height: 100%;
  }
    /* Add background and border-radius for top row sections */
        .projects-top-row {
            background: rgba(20, 20, 20, 0.92);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.18);
            padding: 24px 18px 18px 18px; /* smaller padding */
            margin-bottom: 36px;
            position: relative;
            overflow: visible;
            align-items: stretch;
            min-height: 560px;
        }
        .project-grid-card.cybersecurity-card,
        .project-grid-card.ai-card {
            background: rgba(30, 30, 30, 0.98);
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.12);
            padding: 28px 20px 6px 20px; /* slightly larger padding and small bottom inset */
            margin: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
            overflow: visible;
            min-height: 600px; /* slightly taller so content breathes */
        }
        /* Add a subtle purple glow for the AI card to match cybersecurity's treatment */
        .ai-card {
            border-color: rgba(168, 85, 247, 0.4);
            box-shadow: 0 10px 30px rgba(168,85,247,0.06), inset 0 0 0 1px rgba(168,85,247,0.03);
        }
        .project-grid-card.ai-card .project-grid-content {
            background: transparent;
            box-shadow: none;
            border-radius: 0;
            padding: 8px 0 0 0; /* small top padding only */
            flex: 1 1 auto; /* fill remaining vertical space */
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* stack items from top so additional cards are visible */
            gap: 12px;
            box-sizing: border-box;
            min-height: 0; /* allows flex children to shrink inside scroll area */
        }
        .cybersecurity-projects-grid {
            display: flex;
            flex-direction: column;
            gap: 24px;
            flex: 1 1 auto;
            justify-content: flex-end;
        }
        .ai-card .webdev-project-card {
            padding-bottom: 0; /* ensure no extra bottom spacing */
            background: rgba(40,40,40,0.98);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.10);
            padding: 16px 12px 12px 12px; /* slightly reduced padding */
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .webdev-project-card.under-development .under-dev-content {
            background: none;
            box-shadow: none;
            border-radius: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
        .cybersecurity-projects-grid .project-card:last-child {
            margin-bottom: 0;
        }
        /* Biar card AI tidak nempel ke bawah */
        .ai-card .project-grid-content {
            padding-bottom: 16px;
        }
}
