    /* CSS for Code List Section */
    .code-section {
        padding: 2rem 0;
    }

    .code-section h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #1e3a8a;
        text-align: center;
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .code-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }

    .code-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .code-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .code-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .code-card:hover img {
        transform: scale(1.05);
    }

    .code-card-content {
        padding: 1.25rem;
        text-align: center;
    }

    .code-card-title {
        font-size: 1.125rem;
        font-weight: 600;
        color: #1e40af;
        margin-bottom: 0.75rem;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .code-card:hover .code-card-title {
        color: #2563eb;
    }

    .code-card-button {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1.5rem;
        background: linear-gradient(135deg, #3b82f6, #06b6d4);
        color: #ffffff;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: background 0.3s ease, transform 0.2s ease;
    }

    .code-card-button:hover {
        background: linear-gradient(135deg, #2563eb, #0891b2);
        transform: translateY(-1px);
    }

    .code-card-button i {
        margin-left: 0.5rem;
        font-size: 0.75rem;
    }

    /* Animation for zoom-in effect */
    .zoom-in {
        animation: zoomIn 0.5s ease-out;
    }

    @keyframes zoomIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 1280px) {
        .code-card-title {
            font-size: 1rem;
        }

        .code-card img {
            height: 140px;
        }

        .code-card-button {
            font-size: 0.75rem;
            padding: 0.4rem 1.2rem;
        }
    }

    @media (max-width: 1024px) {
        .code-section h2 {
            font-size: 1.75rem;
        }

        .code-card-title {
            font-size: 0.875rem;
        }

        .code-card img {
            height: 120px;
        }

        .code-card-button {
            font-size: 0.75rem;
            padding: 0.35rem 1rem;
        }

        .code-card-content {
            padding: 1rem;
        }
    }

    @media (max-width: 768px) {
        .code-section h2 {
            font-size: 1.5rem;
        }

        .code-card img {
            height: 100px;
        }

        .code-card-title {
            font-size: 0.75rem;
        }

        .code-card-button {
            font-size: 0.625rem;
            padding: 0.3rem 0.8rem;
        }
    }

    @media (max-width: 640px) {
        .code-section h2 {
            font-size: 1.25rem;
        }

        .code-card img {
            height: 90px;
        }

        .code-card-title {
            font-size: 0.75rem;
        }

        .code-card-button {
            font-size: 0.625rem;
            padding: 0.25rem 0.75rem;
        }

        .code-card-content {
            padding: 0.75rem;
        }
    }
     .page-heading {
    height: 38px;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 20px;
}
.page-heading span.page-heading-title {
    display: inline-block;
    position: relative;
    border: 1px solid #cccccc;
    padding: 10px 36px;
    overflow: visible;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    background: #e6ffef;
}