.hidden_card {
    display: none !important;
}


.div_for_main_of_project_types_devloped_by_anirban {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Header styling */
.header_section {
    text-align: center;
    margin-bottom: 40px;
}

.badge-uses-language {

    color: var(--text-ocan);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.header_section h1 {
    margin-top: 15px;
    font-size: 2rem;
    color: #333;
}

.div_for_1st_row_under_main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.div_for_card_main_in_1st_row {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.div_for_card_main_in_1st_row:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


.card_bg_text {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 40px;
    font-weight: 800;
    z-index: 0;
    -webkit-text-stroke: 2px #04878526;
    color: white;
}


.div_for_logo_of_project {
    height: 60px;
    width: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.div_for_main_of_description_main {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.div_for_main_of_description_main span {
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
}

.div_for_main_of_description_main p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}


.div_for_main_of_bottom_of_card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.div_for_main_of_bottom_of_card span {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.arrow_circle {
    width: 30px;
    height: 30px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #777;
}


.footer_button_div {
    text-align: center;
    margin-top: 40px;
}

.view_more_btn {
    background: var(--gredient-bg);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
}

/* --- MEDIA QUERIES --- */


@media (max-width: 1024px) {
    .div_for_1st_row_under_main {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {
    .div_for_1st_row_under_main {
        grid-template-columns: 1fr;
    }

    .header_section h1 {
        font-size: 1.5rem;
    }
}

.div_for_1st_row_under_main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 1024px) {
    .div_for_1st_row_under_main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .div_for_1st_row_under_main {
        grid-template-columns: 1fr;
    }
}