@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*
{
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color:#00539C;
}
#footer * {
    color: white;
}
#footer a {
    color: white;
}
:root
{
    --bg:#EEA47F;
    --font:#00539C;
    --footer-bg: #002147;
    --footer-text: #ffffff;
}
body
{
    background-color: var(--bg);
}
.nav-link
{
    color: white;
}
.nav-link.active
{
    color: whitesmoke !important;
}
.nav-brand
{
    color: whitesmoke;
}
#about
{
    min-height: 80vh;
    min-width: 100%;
    /* border: 1px solid red; */
}
/* Footer Section Styles */
#footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 0 20px;
    margin-top: 50px;
}
#footer h3 {
    color: var(--footer-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}
#footer ul {
    list-style: none;
    padding: 0;
}
#footer ul li {
    margin-bottom: 12px;
}
#footer ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
#footer ul li a:hover {
    color: var(--footer-text);
    padding-left: 5px;
}
#footer .footer-contact i {
    color: white;
    margin-right: 10px;
}
#footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}
#footer .social-links a:hover {
    background: var(--footer-text);
    color: var(--footer-bg);
    transform: translateY(-5px);
}
#footer .copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ffffff;
}
#footer .footer-logo {
    margin-bottom: 20px;
}
#footer .footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ffffff;
}
.top
  {
      position: fixed;
      left: 98%;
      top:95%;
      z-index:999;
  }