body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

.hero {
    width: 100%;
    height: 40vh;
    position: relative;
    z-index: 1;
    top: 0;
    padding: 0;
    background: url(../../Upload/banner/banner_3f30aaba-35a5-4699-937b-b49aae0638ec.jpg) no-repeat center center/cover;
}
#header{
    background: #252525 !important;
}
.bgdrop {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, rgba(22, 22, 22, 0.811), #000000a1);
}

.bgdrop .container {
    width: 70%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    line-height: 1;
    color: white;
}

.bgdrop .container .bbadge {
    font-size: 1.2em;
    color: #f0ad4e;
}

.bgdrop .container .ttitle {
    font-size: 4.2em;
    font-weight: bold;
}

.bgdrop .container .line {
    width: 30%;
    height: 1px;
    margin-top: 10px;
    background: linear-gradient(90deg, #f0ad4e, transparent);
}

.content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
}

.sidebar {
    width: 30%;
    background-color: #fff;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: #f0ad4e;
    color: #fff;
}

.main-content {
    width: 70%;
    padding: 20px;
    background-color: #fff;
}

.content-item {
    display: none;
}

.content-item:first-child {
    display: block; /* Show the first item by default */
}

.content-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0ad4e;
    padding-bottom: 5px;
}

.content-item p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.content-item ul {
    list-style: none;
    padding: 0;
}

.content-item ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-item ul li strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        padding-top: 40vh;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .main-content {
        width: 100%;
    }

    .sidebar-item {
        font-size: 16px;
        padding: 10px;
    }

    .content-item h2 {
        font-size: 24px;
    }

    .content-item p,
    .content-item ul li {
        font-size: 14px;
    }

    .bgdrop .container .ttitle {
        font-size: 2.5em;
    }

    .bgdrop .container .bbadge {
        font-size: 1em;
    }
}