
.intro-text {
    flex: 1;
    margin-right: 50px;
    text-align: justify;
    padding-top: 20px;
    width: 200px;
    /* Padding from the top of the paragraph */
}

.intro-image img {
    max-width: 600px;
    height: auto;
    /* Maintain aspect ratio */
}


/* Styling for the arrow */
.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid rgb(151, 151, 151);
    /* Yellow color for the arrow */
    margin-top: 20px;
    cursor: pointer;
    position: relative;
    /* Ensure the arrow is positioned correctly within intro-text */
    left: 50%;
    transform: translateX(-50%);
    /* Center horizontally */
}

/* Add hover effect on the yellow arrow */
.arrow-down:hover {
    border-top-color: rgb(151, 151, 151);
    /* Darker yellow for hover effect */
}



/* For toggling form */
#career {
    display: none;
    /* Make the container initially hidden */
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#career.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
    /* Slide the form into view */
}

/* Styling the card */
.career-card {
    background: linear-gradient(to bottom right, rgb(0, 0, 0), rgb(0, 0, 0));
    /* Gradient background */
    color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    width: 100%;
    position: relative;
}

/* Text inside the card */
.career-card .card-text {
    font-size: 45px;
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
}

/* Reuse arrow styles for inside the card */
.career-card .arrow-down {
    margin-top: 10px;
    border-top-color: rgb(255, 255, 255);
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
    #career .card-text {
        font-size: 18px;
        /* Adjusted font size for smaller screens */
        margin-top: 20px;
        /* Reduced margin for better spacing */
        margin-bottom: 5px;
    }

    .arrow-down {
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid rgb(151, 151, 151);
        /* Yellow color for the arrow */
        margin-top: 20px;
        cursor: pointer;
        position: relative;
        /* Ensure the arrow is positioned correctly within intro-text */
        left: 50%;
        transform: translateX(-50%);
        /* Center horizontally */
    }
    
.intro-image img {
    width:100%;
    height: auto;
    /* Maintain aspect ratio */
}
}