.ourStartups h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #333333;
    margin-top: 10px;
}
.ourStartups h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1ABC40;
}
.categorySec{
    display: flex;
    justify-content: center;
    gap: 40px;
    overflow-x: auto;
}
.ourStartups h3 img {
    width: 35px;
}
.categorySec div{
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 13px;
}
.categorySec div h6{
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.categorySec div img{
    width: 100%;
    height: 100%;
}

.startupsList .box{
    width: 90%;
    margin: auto;
    border-radius: 35px;
    border-top: 6px solid#4B5563;
    overflow: hidden;
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.startupsList .startupCardLink {
    text-decoration: none;
    display: block;
    height: 100%;
}

.startupsList .box div:nth-child(1){
    display: flex;
    justify-content: center;
    align-items: center;
    height: 230px;
    background-color: #6FD990;
    overflow: hidden;
}

.startupsList .box img {
    width: 170px;
    height: 170px;
    max-width: 100%;
    object-fit: contain;
}
.startupsList .box .boxText {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.startupsList .box .boxText h5{
    font-size: 1.2rem;
    font-weight: 600;
    color: #04671B;
    text-transform: uppercase;
    text-align: center;
}
.startupsList .box .boxText div{
    display: flex;
    justify-content: center;
}

.startupsList .box .boxText h6{
    font-size: 0.9rem;
    padding: 7px 25px;
    text-align: center;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
    background-color: #C9FFE1;
    color: #04741E;
}
.startupsList .box .boxText p{
    text-align: justify;
    padding: 10px 0px;
    color: #4B5563;
    flex: 1;
}

.startupsList .box .boxText button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 15px;
    text-align: center;
    margin: auto;
    background-color: #1A78BC;
    color: white;
    border: none;
    font-size: 0.95;
    border-radius: 25px;
    pointer-events: none;
}
.startupsList .box .boxText button img{
    width: 20px;
    height: 20px;
}

.startupsList .box .boxText button:hover{
    background-color: #155f91;
    cursor: pointer;
}
.startupsList .box .boxText a{
    text-decoration: none;
}

@media (max-width: 768px) {
    .startupsList .box{
        width: 100%;
    }
    .ourStartups h2 {
        font-size: 1.2rem;
    }
    .ourStartups h3 {
        font-size: 1rem;
    }
   
    .categorySec div h6 {
        font-size: 0.9rem;
    }
    .startupsList .box div:nth-child(1) {
        height: 180px;
    }
    .startupsList .box img {
        width: 130px;
        height: 130px;
    }
    .startupsList .box .boxText {
        padding: 15px 20px;
    }
    .startupsList .box .boxText h5 {
        font-size: 1rem;
    }
    .startupsList .box .boxText h6 {
        font-size: 0.8rem;
        padding: 5px 20px;
    }
    .startupsList .box .boxText p {
        font-size: 0.9rem;
    }
    .startupsList .box .boxText button {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    .startupsList .box .boxText button img {
        width: 18px;
        height: 18px;
    }
}