/* ============================
   NAVBAR BASE STYLES
   ============================ */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    width: 100%;
    z-index: 1000;
}

/* If your navbar is FIXED, uncomment this block */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
}

/* Icon */
.icon-bar {
    max-width: 60px;
    max-height: 60px;
}

/* ============================
   Footer
   ============================ */
.site-footer {
    background: #202a4c;
    border-top: 1px solid #202a4c;
    padding: 50px 0 20px;
    font-size: 15px;
    width: 100%;
    color: #fff;
    box-sizing: border-box;
    font-family:"Inter", "Segoe UI", Arial, sans-serif;
}

.site-footer .footer-left,
.site-footer .footer-center,
.site-footer .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* left side footer */
.site-footer .footer-left {
    width: 40%;
}

.site-footer .footer-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.footer-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin-left: 45px;
}

.site-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer .footer-date {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
	font-weight: normal;
	margin-left: 45px;
}

/* center of footer */
.site-footer .footer-center {
    width: 35%;
}

.site-footer .footer-center i {
    background-color: #fff;
    color: #202a4c;
    font-size: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 15px;
}

.site-footer .footer-center div {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.site-footer .footer-center p span {
    display: block;
    font-size: 14px;
}

.site-footer .footer-center p a{
	color:  #fff;
	text-decoration: none;;
}


/* right side of footer */
.site-footer .footer-right {
    width: 20%;
}

.site-footer .footer-about span {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.site-footer .footer-social {
    margin-top: 20px;
}

.site-footer .footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;  
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 50%;
    align-items: center;
    line-height: 35px;
    color: #202a4c;
    font-size: 18px;
    margin-right: 5px;
    margin-bottom: 3px;
    transition: 0.2s ease;
}

.site-footer .footer-social a:hover {
    background-color: rgba(255,255,255,0.3);
}

@media (max-width: 880px) {
    .site-footer {
        text-align: center;
    }

    .site-footer .footer-left,
    .site-footer .footer-center,
    .site-footer .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
    }

    .site-footer .footer-center i {
        margin: 0 0 10px 0;
    }

    .site-footer .footer-logo {
        margin: 0 auto 20px;
    }

    .site-footer .footer-center div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .site-footer .footer-center p,
    .site-footer .footer-center p span {
        text-align: center;
    }
}

/* ============================
   MAIN CONTENT SPACING
   Ensures content never hides under navbar
   ============================ */
.main {
    padding-top: 110px; /* adjust based on navbar height */
}

/* Optional: container spacing for nicer layout */
.main .container {
    padding-bottom: 40px;
}

/* ============================
   OPTIONAL: Improve sidebar layout
   ============================ */
.column {
    display: inline-block;
    vertical-align: top;
}

.column-80 {
    width: 80%;
}

aside.column {
    width: 18%;
    margin-right: 2%;
}