.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}
.card:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.main-heading {
    color: #2C74C1;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5rem;
    text-align: right;
}
.custom-input {
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}
.custom-input::placeholder {
    color: #9CA3AF;
}
.start-project-btn {
    background-color: #2C74C1;
    color: white;
    padding: 1rem 1rem;
    border-radius: 16px;
    border: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
    align-items: left;
}
.start-project-btn:hover {
    background-color: #518fd2;
    color: white;
    transform: translateY(-2px);
}
.flame-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .main-heading {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .start-project-btn {
        font-size: 1rem;
        padding: 0.6rem 1rem;
        border-radius: 12px;
        width: 70%;
        max-width: 200px;
        display: block;
        margin: 0.5rem auto;
    }
}


