*{
    box-sizing: border-box;
}
footer {
        background-color: #000080;
    border-top: 4px solid #007acc;
    padding: 30px 25px;
    text-align: center;
    font-size: 16px;
    color: white;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
    width: 100%;
    max-width:100%;
}

.gmail {
    color: #007acc;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
    color: white;
}

.gmail:hover {
    text-decoration: underline;
}

/* شبکه‌های اجتماعی */
.social-links {
    margin: 10px 0;
}

.link {
    display: inline-block;
    margin: 0 10px;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
    
}

.link:hover {
    transform: scale(1.2);
}

/* ریسپانسیو */
@media(max-width:768px){

    footer {
        font-size: 14px;
    }
}