/* Reset some basic elements */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Poppins' , sans-serif;
}

body {
    margin: 0;
    /* font-family: 'Poppins', sans-serif; */
    background-color: #121f26;
    color: white;
}

/* Styling the header */
.home-header {
    color: #fff; /* White text color */
    padding: 10px 0; /* Padding around the navbar */
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #121f26;
}

/* Navigation bar layout */
.home-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.home-navbar-left,
.home-navbar-right,
.home-navbar-center {
    display: flex;
    align-items: center;
}

.home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff; /* White text for the link */
}

.home-navbar-left img,
.home-navbar-right img {
    max-width: 50px; /* Adjust logo and icons size */
    height: auto;
}
.home-navbar-right-notification img{
    max-width: 24px;
    height: auto;
    margin-right: 50px;
}

.home-navbar-right-profile img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.CodeBlog-Name {
    margin-left: 10px; /* Space between logo and site name */
    font-weight: 600; /* Semi-bold for the site name */
}

/* Navigation links */
.home-nav-links {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
    display: flex; /* Align links horizontally */
    gap: 20px; /* Space between links */
}

.home-nav-links a {
    text-decoration: none;
    color: #fff; /* White text for links */
    font-weight: 400; /* Regular font weight for links */
}

.home-nav-links a:hover {
    color: #ccc; /* Lighter color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-navbar-center {
        display: none; /* Hide center links on smaller screens */
    }

    .home-navbar {
        justify-content: space-between;
    }
}

/* Additional responsive or specific styles can go here */

.home-nav-links li {
    margin-right: 20px; /* Adds space to the right of each link */
}

.home-nav-links li:last-child {
    margin-right: 0; /* Ensures the last item doesn't have extra space on the right */
}

section{
    margin-top: 90px;
}

.heading-aboutus{
    margin-left: 30px;
}

.quote h2{
    text-align: center;
}

.content{
    text-align: justify;
    margin: 10px 0px 80px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    font-size: large; 
    margin-left: auto;
    margin-right: auto;
}

.socialmedia-links{
    margin: 5rem auto;
    /* margin-top: 5rem; */
    display: flex;
    justify-content: space-evenly;
    max-width: 500px;
    width: 90%;
    height: 50px;
}

.socialmedia-links .linkedin, .github, .twitter, .insta{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-size: cover;
}

.linkedin img, .github img, .twitter img, .insta img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.leftside-content {
    width: 100%;
    max-width: 660px;
    flex: 1;
    max-width: 50%;
}

.rightside-content {
    margin-top: 50px;
    text-align: center;
    flex: 1;
    max-width: 50%;
}

.rightside-content img {
    margin: 0 auto;
    max-width: 100%;
    width: 60%;
    height: auto;
    border-radius: 10px;
}

.total-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10vh;
}

@media (max-width: 768px) {
    .total-content {
        flex-direction: column;
    }

    .leftside-content,
    .rightside-content {
        max-width: 100%;
    }
}