* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
}

.container {
    display: flex;
    width: 100%;
}

.sidebar {
    width: 250px;
    background: var(--Color-MAIN, #1A39FF);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    overflow: scroll;
}

.sidebar .logo img {
    width: 50px;
    /*margin-bottom: 20px;*/
}

.sidebar .nav-links {
    list-style: none;
    width: 100%;
    text-align: left;
    text-align: center;
}

.sidebar .nav-links li {
    width: 100%;
    padding: 10px 20px;
    position: relative;
    margin-top: 10px;
}

.sidebar .nav-links a {
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 26px;
    font-weight: bolder;
}

.sidebar .nav-links .dropdown-btn::after {
    content: "▼";
    float: right;
    margin-right: 10px;
}

.sidebar .dropdown-content {
    display: none;
    /* background-color: #1a1a70; */
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sidebar .dropdown-content a {
    /* padding-left: 40px; */
}
.sidebar .dropdown-content li{
    padding: 0;
}
.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background-color: #f8f8f8;
}

.main-content section {
    margin-bottom: 40px;
    /* background: linear-gradient(120deg, #0024fa, #41a0ff); */
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.main-content h1 {
    font-size: 36px;
}

.main-content h2 {
    font-size: 28px;
}

.main-content p {
    margin-top: 10px;
    font-size: 16px;
}

.main-content img {
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
}
.nav-text-sec >p{
    font-size: 14px;
    font-weight: 200;
}
.nav-text-sec >p >strong{
font-size: 20px;
}
.drpdwn-link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.nav-text-sec > a{
    font-size: 14px !important;
    margin-top: 20px;
}
.liner{
    width: 100%;
    margin: 0 auto;
    height: 2px;
    background: white;
}
.nav-text-sec{
    margin-top: 10px;
}
.logo{
    display: flex;
    justify-content: space-between;
    width: 85%;
    align-items: center;
}

.arrow {
    display: inline-block; /* Ensures the span can rotate */
    transition: transform 0.3s ease; /* Smooth rotation */
}

/* Rotated arrow when the dropdown is active */
.drpdwn-link.active .arrow {
    transform: rotate(180deg); /* Rotates the arrow 180 degrees */
}
.mob-menu{
    display: none;
    position: absolute;
    width: 100%;
    height: 80px;
    background: blue;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}
.material-symbols-outlined{
    font-size: 33px;
    color: white;
}
.close-menu{
    display: none;
    font-size: 33px;
    color: white;
}
.new-nav{
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    text-transform: uppercase;
    font-size: 19px !important;
}
.new-nav >div{
    display: flex;
    align-items: center;
}
@media only screen and (min-width: 200px) and (max-width: 768px) {
   .sidebar{
    position: fixed;
    height: 100%;
    display: none;
   }
   .mob-menu{
     display: flex;
   }
   .main-content{
    padding: 0;
    margin-top: 70px;
   }
   .main-content section {
    margin-bottom: 0px;
    padding: 10px;
   }
}
.ln-section{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    max-width: 100px;
}
.img-sec-ln {
    width: 22px;
}
.img-sec-ln img{
    width: 100% !important;
    margin: 0 !important;
}
.icon-ln span{
    font-size: 18px !important;
}
.op-sec-lng {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.lng-dropdown{
    position: relative;
}
.opening-section{
    position: absolute;
    display: none;
    border: 1px solid white;
    border-radius: 10px;
    height: 100px;
    width: 80px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    background: #1A39FF;
    z-index: 2;
}
.op-sec-img img{
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    margin: 0 !important;
}
.lng-dropdown.active .opening-section {
    display: flex;
}
.opening-section a{
    text-decoration: none;
    color: white;
}