*{
    margin: 0;
    padding: 0;
}
/* 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: 70px;
    color: #2B91A7;
    margin: 0px 5px 15px 5px;
}
#hashimg{
    margin: 5px 10px 5px 10px;
    width: 90px;
    height: auto;
    margin-top: -15px;
    
}
.packagetitle{
    text-align: center;
}
.package-container{
    background-color: #f5f5f5;
    padding: 20px;
    margin: 14px 14px 14px 14px;

}
.pricing-packages{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}
.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: 1024px) {
    .pricing-packages {
        gap: 20px;
    }
    .devicon {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .pricing-packages {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .developmentdiv {
        width: 90vw;
        max-width: 350px;
        margin: 16px auto;
    }
    .devicon {
        width: 90vw;
        max-width: 350px;
        margin: 0 auto 16px auto;
    }
}

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