/* CSS by kalpana */
@font-face {
    font-family: 'montserratextraBold';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Montserrat-Bold.ttf');
}
@font-face {
    font-family: 'MuktaRegular';
    /* font-style: normal; */
    font-weight: 400;
    src: url('../fonts/Mukta-Regular.ttf');
}

.latest-newsfont{
    font-family: 'MuktaRegular';
    font-size: 1rem;
    font-weight: 400;
    color: #333;;
}

.defaulterstyle{
    font-family: 'MuktaRegular';
    color:#333;
    font-size:1rem;
}
/* added by kalpana */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.separator::before,
.separator::after {
    content: "";
    width: 36px;
    border-bottom: 2px solid #B35400;
}

.circles {
    display: flex;
    align-items: center;
    margin: 0 10px;
    position: relative;
}

.cir {
    width: 12px;
    height: 12px;
    border: 2px solid #B35400;
    border-radius: 50%;
    margin: 0 -3px; /* overlap effect */
    background: #fff; /* keep background clean */
    position: relative;
    z-index: 1;
}

.c-2 {
    background: #B35400;
    z-index: 2; /* make sure filled circle stays on top */
}
.dropdown a{
  justify-content:center;
}

button{
    outline:none !important;
}

/* for all page Banner */
.page-header {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background:url('<?=HEADER_IMG_PATH?>header/allbg1.png') no-repeat; 
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.9), rgba(0, 0, 0, -1));
}
.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .page-header{
        background:url('<?=HEADER_IMG_PATH ?>header/allbg1.png') no-repeat center center;
        background-size:cover !important;
    }
}
.pdf-container {
    position: relative;
    width: 100%;
    height: 900px; /* default desktop height */
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 📱 Mobile view */
@media (max-width: 768px) {
    .pdf-container {
        height: 500px; /* smaller height for mobile */
    }
}


.dropdown-switcher {
    margin-left: 20px;
    width: 65px;
    padding: 0 11px;
    border-radius: 100px;
    color: #3c2e51;
    border: 1px solid #9CAAC6;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    height: 22px;
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-switcher::after {
    content: "▼";
    font-size: 10px;
    color: #9CAAC6;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 25px;
    left: -178px;
    width: 460px;
    background: white;
    border: 1px solid #9CAAC6;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 100;
}

.dropdown-switcher.active .dropdown-menu {
    display: block;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.language-option {
    padding: 8px 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border:1px solid #e6e6e6;
}

.language-option:hover {
    background-color: #f0f4ff;
    color: #3c2e51;
}

.selected-language {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instructions {
    margin-top: 30px;
    padding: 15px;
    background-color: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #6c5ce7;
}

.instructions h3 {
    color: #3c2e51;
    margin-bottom: 10px;
}

.instructions p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 500px) {
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dropdown-menu {
        width: 280px;
    }
}

