/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Common styles for sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #007bff;
}

footer {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

/* Link styles */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #007bff;
}

/* --------steaky contact--------- */



.sticky-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.sticky-contact:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}

.sticky-contact a {
    color: white;
    font-size: 20px;
    line-height: 50px;
    text-decoration: none;
}

/* Steaky download resume  */

.sticky-resume {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: grab;
    z-index: 1000;
    transition: width 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
    width: 30px;
    overflow: hidden;
}

.sticky-resume:hover {
    width: 200px;
    background-color: #0056b3;
    color: #f9f9f9;
}

.sticky-resume a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.sticky-resume i {
    font-size: 20px;
    margin-right: 10px;
}

.sticky-resume span {
    display: none;
    font-size: 14px;
}

.sticky-resume:hover span {
    display: inline-block;
}

.sticky-resume:active {
    cursor: grabbing;
    transform: scale(0.95);
}
