    .bg-wrp {
    position: relative;
    width: 100%;
   
    overflow: hidden;
}

.bg-wrp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 24%);
    z-index: 0; 
}

/*top-bar Css */
.topbar a {
    color: var(--secondary-color) !important;
    display: flex
;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
}
.topbar li {
    list-style: none;
    display: inline-block;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.topbar ul {
    padding: 0;
    margin: 0;
}
.social-menu {
    float: right;
}
.topbar p {
    color: #fff;
    margin-bottom: 0;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 300;
}
.topbar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6px 0;
}
/*top-bar Css End*/

/* Header Styles */
.logo-wrp a img {
    width: 100%;
    max-width: 250px;
    z-index: 999;
    position: relative;
}
.main-navigation {
    display: flex !important;
    align-items: center;
    justify-content: end;
    height: 100%;
}
.main-navigation a {
    color: #fff !important;
    font-size: 17px;
    font-weight: 600;
    padding: 0 30px;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 20px;
    outline:none;
}
.main-navigation a:last-child {
    padding-right: 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    position:relative;
}

/* Sidebar Styles */

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: var(--secondary-color);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
}
.sidebar-menu.active {
    left: 0; /* Sidebar slides in from the left */
}
.sidebar-menu .close-btn {
    background: none;
    border: none;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    margin-bottom: 20px;
    float: right;
}
.sidebar-menu-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu-ul li {
    margin: 10px 0;
}
.sidebar-menu-ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}
.sidebar-menu-list {
    margin-top: 4em;
}
.sidebar-menu-list li a {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 2;
    transition: 0.3s;
}
.sidebar-menu-list li a:hover {
    color: #000;
}
/* Responsive Styles */
@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    .topbar p {
    display: none;
}


}

