    /* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure the whole page takes full height */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Wrapper for content and footer */
.wrapper {
    flex: 1; /* Yeh ensure karega ki content badhne pe footer neeche jaye */
    display: flex;
    flex-direction: column;
}

/* Footer Section */
footer {
    background-color: #2273B5;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto; /* Ensures footer stays at bottom */
}

/* Social Links */
footer .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

footer .social-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.5em;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    color: #FFDD57;
    transform: scale(1.2);
}

