*{
    margin: 0;
    padding: 0;
}

body {
    background-color: #080808; 
    color: white;
    overflow-x: hidden;
}


.hero{
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(8,8,8,1)),
    url(/asset/images/عکس\ م.ت.ر\ دو.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid rgb(81, 6, 81); 
    box-shadow: 0 0 20px rgb(81, 6, 81); 
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgb(81, 6, 81); 
}


.card {
    background: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
     gap: 20px;
}


.card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgb(81, 6, 81);
    box-shadow: 0 10px 30px rgba(255, 49, 49, 0.2);
}


.card i {
    font-size: 50px;
    margin-bottom: 20px;
    color: rgb(81, 6, 81); 
}


.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.8;
}

.subtitle{
    font-size: 26px;
    font-weight: bold;
}

.hero{
    padding-top: 80px;
    justify-content: flex-start;

}

.container{
    margin: 50px auto 50px auto;
}

.a{
    color: white;
}