body {
    font-family: 'Nunito', 'Nunito Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #1E3D58;
    padding: 50px 0;
    color: #ffffff;
    text-align: center;
}

.footer_c {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* equal spacing between columns */
    text-align: left;
}


.footer-links,
.footer-image {
    flex: 1 1 300px;
    max-width: 350px;
    padding-left: 60px;
}

.footer-text {
    flex: 3 300px;
    max-width: 350px;
}

.Cname h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color:#ffffff;
	text-align: left; 
	padding-bottom: 5px;              /* Space between text and line */
	width: 80%;
	border-bottom: 2px solid #2E8BC0; /* Adjust color & thickness as needed */
}




.footer-text p {
    font-size: 16px;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-image {
    display: flex;
    gap: 20px;
    align-items: right;
}

.footer-image img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-image img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer_c {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .footer-text,
    .footer-links,
    .footer-image {
        max-width: 100%;
    }

    .footer-image {
        justify-content: flex-start;
    }
}

.copyright {
    font-size: 14px;
    margin-top: 20px;
    color: #cccccc;
    text-align: center;
}
