 body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #9b51e0;
    color: #333;
    line-height: 1.6;
    
     
      
}


 /* blog.css - Styles specific to the blog page */

.blog-posts-container {
    padding: 20px;
    width: 80%;
    margin: 0 auto;
	
     
      
}

/* post13.css - Styles for individual blog posts */

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.blog-image {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block; /* To prevent extra space below the image */
}

.blog-post h1 {
    color: #333;
    margin-bottom: 10px;
}

.blog-post p {
    color: #555;
    line-height: 1.7;
}
p.thick {
	font-weight:bold;
}
.blog-post ul {
	list-style-type: disc;
	bullet style: filled;
	padding-left: 20px;
	margin-bottom: 1em;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        transition: left 0.3s ease;
        z-index: 100;
    }
		/* Footer section styling */

		/* Footer Styling */
footer {
    background-color: #0693e3 ;
    color: #fff;
    padding: 50px 0 30px;
    font-size: 15px;
    line-height: 2;
    margin-top: 50px; /* Add some space above the footer */
    width: 100%; /* Ensure footer spans full width */
	 
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 10px;
	
}

.footer-section {
    flex: 1;
    min-width: 400px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
	margin-right: 40px;
}

.footer-section p {
    color: white;
    margin-bottom: 15px;
	
}

.footer-section .contact-info span {
    display: block;
    margin-bottom: 10px;
    color: white;
	 
}

.footer-section .contact-info i {
    margin-right: 40px;
    color: #f39c12;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 10px;
	
}

.footer-section.links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
	
}

.footer-section.links ul li a:hover {
    color: #f39c12;
	
}

.footer-section.social .social-links {
    display: flex;
    gap: 15px;
}

.footer-section.social .social-links a {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-section.social .social-links a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}