/* About Page CSS*/

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Smooth transition for video zoom */
}

.video-container:hover video {
    transform: scale(1.1);
    /* Zoom effect on video */
}

.text-overlay {
    position: absolute;
    text-align: center;
    justify-content: center;
    top: 50%;
    bottom: 50%;
    margin: 0px 80px 50px 80px;
    color: white;
    font-size: 30px;
}

#pricingtitle{
    display: flex;
    flex-direction: row;
    justify-content:center ;
    align-items: center;
    text-align: center;
    padding: 30px 10px 0px 10px;
    margin: 30px 10px 0px 10px;
}
#pricingtitle .title{
    font-size: 50px;
    color: #2B91A7;
    margin: 0px 5px 15px 5px;
}
#hashimg{
    margin: 5px 10px 5px 10px;
    width: 90px;
    height: auto;
    margin-top: -15px;
    
}

.package-container{
    background-color: #f2f2f2;
    padding: 0px;
    margin: 14px 14px 14px 14px;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;

}
.para{
    margin: 30px;
}
#hasnainAli{
    width: 450px;
    height: 490px;
}
.leadership-card-container{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.leadership-card {
    position: relative;
    width: 350px;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-packages{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}
.sectiontitle{
    font-size: 28px;
    color: #2B91A7;
    margin: 30px 5px 15px 35px;

}
.devarticle{
    font-size: 20px;
    margin-left: 35px;
}
.devlist{
    font-size: 20px;
    margin-top: 20px;
    margin-left: 50px;
    margin-bottom: 50px;

}
.devlink{
    position: relative;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 20px;
    margin-left: 35px;
    margin-bottom: 50px;
    padding: 18px;
    background-color:#2B91A7;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.devlink:hover{
    background-color: #32a2bb;
}

.developmentdiv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #e8e8e8;
    border-radius: 30px;
    padding: 30px;
    margin: 10px;
    overflow: hidden;
    
}
.devicon{
    width: 400px;
    border-radius: 30px;
    margin-right: 35px;
}

@media (max-width: 900px) {
    .package-container, .leadership-card-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    #hasnainAli, .leadership-card {
        width: 90vw;
        max-width: 350px;
        height: auto;
    }
}

@media (max-width: 480px) {
    #pricingtitle .title, .sectiontitle {
        font-size: 1.5rem;
    }
    .devarticle, .devlist, .devlink {
        font-size: 1rem;
        margin-left: 10px;
    }
    #hasnainAli, .leadership-card {
        width: 98vw;
        max-width: 98vw;
        height: auto;
    }
}