/* 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: #fff;
}

/* 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 */
}
.sidebar{
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-navbar-center {
        /* display: none; Hide center links on smaller screens */
        display: block;
        position: absolute;
        top:76.4px;
        left:0;
        background-color: black;
        height: 100vh;
        width: 25vw;
        /* transition: left 0.7s ease; */
        

    }
    .main_div{
        margin-left:25vw;
    }
    .home-navbar-center ul{
        display: block;
    }
    .sidebar{
        display: inline;
        margin-right: 2rem;
    }
    .sidebar span{
        /* widt; */
        display: block;
        height: 5px;
        width: 36px;
        background-color: white;
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .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 */
}


/* Nav Bar completed  */

.main_div{
    height: 77vh ;
    margin-top: 10vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.form_div{
    width: 50%;
    height: 100%;
    margin-top: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form_div form{
    width: 80%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form_div form input{
    width: 50%;
    height: 30px;
    margin: 10px;
    background: transparent;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid white;
    /* padding: 10px; */
}

.form_div form textarea{
    width: 50%;
    height: 100px;
    margin: 10px;
    background: transparent;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid white;
    /* padding: 10px; */
}

.form_div form button{
    width: 15%;
    height: 30px;
    margin: 10px;
    background-color: #5999B1;
    color:black;
    font-size: 15px;
    border-radius: 15px;
    /* padding: 10px; */
}

.content_div{
    width: 50%;
    height: 100%;
    margin-top: 10vh;
    margin-right: 15vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content_div span{
    color: #6B9AC4;
}
.content_div h1{
    font-size: 77px;
}
.content_div .p1{
    font-size: 30px;
    text-align: center;
}
.content_div p{
    font-size: 25px;
}

.icons{
    width: 350px;
    margin-bottom: 2rem ;
    display: flex;
    align-items: center;
}

.icons img{
    width: 40px;
    height: 40px;
    margin: 10px;
    margin-right: 30px;
}


/* for sidebar  */
