*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
  }



/* ************Header style begins ************ */
header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background:#500000;
    padding: 0 2%;
    display: flex;
    height: 78px;
    /* width: 100%; */
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .navbar ul{
    list-style: none;
}

header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: white;
    display: block;
    text-decoration: none;
}

header .navbar ul li a:hover{
    background: silver;
    color: black;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 300px;
    background: #500000;
    display: none;
}

header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.5);
}

header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}

header label{
    cursor: pointer;
    display: none;
}



@media(max-width:1095px){
    header{
        padding: 20px;
    }

    header label{
        display: initial;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #500000;
        border-top: 1px solid rgba(0,0,0,0.5);
        display: none;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: black;

    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

} 
/* **********Header style ends *************/






/*********** Footer style start************/
.section{
    padding: 20px 13% 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 3.5rem;
    background: silver;
    position: relative;
}
.last{
    background-color: #500000;
    color: white;
    text-align: center;
    padding-top: 5px;
}
.footer{
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 50px;
}
.logo img{
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.connect_us{
    display: flex;
}

.connect_us a img{
    padding-left: 10px;
}


.developer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px; /* Optional: Add padding */
    font-size: 0.9rem; /* Optional: Adjust font size */
}

/************* Footer style end *************/

@media (max-width: 768px) {
    .section {
        display: flex;
        flex-direction: column;
    }

    .developer {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
    }
}