﻿body {
font-family: 'Noto Sans', sans-serif;
font-size: 1rem;
color: #000000;
}
a
{
text-decoration: none;
}
.top-bar
{
    background-color: #d11717;
    position: relative;
    z-index: 2;
    padding: 5px 0px;
}
.top-bar::before {
    content: "";
    height: 100%;
    width: 80%;
    background-color: rgb(163, 13, 0);
    position: absolute;
    top: 0px;
    left: 0px;
    clip-path: polygon(0px 0px, calc(100% - 10px) 0%, 100% 100%, 0% 100%);
    z-index: -1;
}
.top-bar::after {
    content: "";
    height: 100%;
    width: calc(80% - 10px);
    background-color: #1f3044;
    position: absolute;
    top: 0px;
    left: 0px;
    clip-path: polygon(0px 0px, 100% 0px, calc(100% - 20px) 100%, 0% 100%);
    z-index: -1;
}
.scroll-watcher {
animation: scroll-watcher linear;
background: linear-gradient(90deg, #ff671f, #fff 50%, #046a38);
height: 4px;
position: fixed;
scale: 0 1;
top: 0;
width: 100%;
z-index: 1000;
animation-timeline: scroll(y);
transform-origin: left;
transition: transform .3s linear;
}
@keyframes scroll-watcher{to{scale:1 1}}
.image-anime{
position: relative;
overflow: hidden;
}
.top-left-txt p
{
margin-bottom: 0;
color: #fff;
display: flex;
align-items: center;
font-size: 14px;
}
.top-left-txt p img
{
width: 16px;
margin-right: 10px;
}
.flag-icon
{
text-align: center;
animation: popZoom 1.5s ease-out forwards;
}
.flag-icon img
{
width: 30px;  
animation: spin 2s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes popZoom {
0% {
transform: scale(0.6);
opacity: 0;
}
60% {
transform: scale(1.08);
opacity: 1;
}
100% {
transform: scale(1);
}
}
.top-right-txt
{
}
.top-right-txt ul.main-list
{
list-style: none;
padding: 0;
display: flex;
justify-content: end;
color: #fff;
margin-bottom: 0; 
}
.top-right-txt ul.main-list li.top-list
{
display: flex;
align-items: center; 
    padding-right: 15px;
}
.top-right-txt ul.main-list li.top-list:last-child
{
  padding-right: 0;
}
.top-right-txt ul.main-list li.top-list img
{
    width: 22px;
    filter: invert(1);
}
.top-right-txt ul.main-list li.top-list span
{
cursor: pointer;  
}
.logo-area
{
background-color: #fff;
padding: 5px 0;
}
.logo-area.clip-sec
{
position: relative;
}
.logo-area.clip-sec::before
{
content: '';
    position: absolute;
    background-color: #f2f2f0;
    clip-path: polygon(0px 0px, 100% 0px, calc(100% - 46px) 100%, 0% 100%);
    z-index: 0;
    inset: 0px;
        width: 50%;
}
.main-logo
{
display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}
.main-logo img
{
  width: 70px;
}
.main-logo .logo-txt
{
text-align: left;
margin-left: 10px;
}
.main-logo .logo-txt h1
{
font-size: 20px;
color: #831218;
font-weight: 600;
margin-bottom: 0;
line-height: 1;
}
.main-logo .logo-txt span
{
color: #333333; 
font-size: 14px;
}
    .main-logo .logo-txt span {
        line-height: 1.2;
        display: block;
    }
.right-logo
{
display: flex;
align-items: center;
justify-content: flex-end;
}
.right-logo img:first-child
{
width: 70px;
margin-right: 10px; 
}
.right-logo img
{
width: 70px;  
}
.desktop-menu .nav-item .nav-link {
font-weight: 400;
color: #fff;  
    padding: 10px 15px;
    font-size: 18px;
}
.desktop-menu .nav-item .nav-link i
{
      margin-left: 5px;
    font-size: 14px;
    border: 1px solid #fff;
    padding: 4px;
    border-radius: 50px;
}
.desktop-menu .nav-item .nav-link.dropdown-toggle::after {
    margin-left: 0;
   
}
.desktop-menu .nav-item .nav-link.active
{
background-color: #EEECF9;
color: #000;  
}
.desktop-menu .nav-item .nav-link:hover {
color: #000;
background-color: #EEECF9;
}
/* Sticky state */
.desktop-menu .nav-shadow.sticky {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
background: #052d40;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
padding-top: 0;
padding-bottom: 0;
}
/* Optional: slight slide-down feel */
.desktop-menu .nav-shadow.sticky {
transform: translateY(0);
}
.desktop-menu .nav-shadow
{
position: relative;
transition: 
background-color 0.4s ease,
box-shadow 0.4s ease,
padding 0.4s ease,
transform 0.4s ease;
padding-top: 0;
padding-bottom: 0;
    background: #052d40;
}
/* Submenu container */
.dropdown-submenu {
position: relative;
}
/* Submenu dropdown */
.dropdown-submenu > .dropdown-menu {
top: 0;
left: 100%;
margin-left: 0.1rem;
display: none;
}
/* Show submenu on hover */
.dropdown-submenu:hover > .dropdown-menu {
display: block;
padding: 10px;
background-color: rgba(5, 45, 64, 0.95);
margin-left: 0;
}
/* Arrow alignment */
.dropdown-submenu > a::after {
float: right;
margin-top: 10px;
margin-left: 15px;
}
.desktop-menu li.nav-item.dropdown ul.dropdown-menu.show
{
padding: 10px;
width: auto;
min-width: max-content;
background-color: rgba(5, 45, 64, 0.95);
}
.desktop-menu li.nav-item.dropdown ul.dropdown-menu.show li
{
border-bottom: 1px solid rgba(255, 255, 255, 0.1);  
}
.desktop-menu li.nav-item.dropdown ul.dropdown-menu.show li:last-child
{
border-bottom: 0;
}
.desktop-menu li.nav-item.dropdown ul.dropdown-menu.show li a
{
color: #fff;
padding: 12px 10px;
}
.desktop-menu li.nav-item.dropdown ul.dropdown-menu.show li .dropdown-item:hover
{
    background: #EEECF9;
    color: #000000;
    border-radius: 3px;
}
/* Mobile sidebar animation smoothness */
.mobile-sidebar {
transition: transform 0.4s ease-in-out;
}
/* Bigger touch-friendly links on mobile */
.mobile-sidebar .nav-link {
font-size: 18px;
padding: 10px 0;
}
.mySlider {
width: 100%;
padding: 10px 15px;
height: 440px;
}
.mySlider .swiper-slide {
transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
filter: blur(3.5px);
opacity: 0.45;
transform: scale(1); 
padding: 0 5px;
}
.mySlider .swiper-slide img {
width: 100%;
border-radius: 1rem;
}
/* CENTER SLIDE */
.mySlider .swiper-slide-active {
filter: blur(0);
opacity: 1;
transform: scale(1);     /* no translate */
z-index: 2;
}
.slider-section {
position: relative;
overflow: hidden;
}
.slider_bust_left {
position: absolute;
width: 350px;
height: 100%;
background-color: rgba(242, 99, 41, 0.27);
filter: blur(150px);
left: -10%;
top: 0px;
z-index: -1;
}
.slider_bust_right {
position: absolute;
width: 350px;
height: 100%;
background-color: rgba(242, 99, 41, 0.27);
filter: blur(150px);
right: -10%;
top: 0px;
z-index: -1;
}
/* Arrow base */
.slider-arrow {
width: 44px;
height: 44px;
background: rgba(0,0,0,0.55);
border-radius: 50%;
backdrop-filter: blur(6px);
transition: all 0.3s ease;
}
/* Arrow icons */
.slider-arrow::after {
font-size: 16px;
color: #fff;
font-weight: bold;
}
/* Hover effect */
.slider-arrow:hover {
background: #f26329;
transform: scale(1.1);
}
/* Positioning */
.swiper-button-prev {
left: 20px;
}
.swiper-button-next {
right: 20px;
}
/* Keep above blur bust */
.swiper-button-prev,
.swiper-button-next {
z-index: 5;
}
.notice-bar {
display: flex;
align-items: center;
background: #052d40;
color: #fff;
padding: 10px 0;
overflow: hidden;
}
.notice-label {
white-space: nowrap;
font-weight: 600;
padding: 0 15px;
border-right: 1px solid rgba(255,255,255,0.5);
}
.notice-slider {
overflow: hidden;
flex: 1;
}
.notice-track {
display: inline-flex;
gap: 40px;
white-space: nowrap;
animation: scrollNotice 35s linear infinite;
}
/* Pause on hover */
.notice-bar:hover .notice-track {
animation-play-state: paused;
}
.notice-track span 
{
position: relative;
}
.notice-track span::after
{
content: '';
position: absolute;
width: 1px;
height: 15px;
background: #fff;
bottom: 0;
top: 0;
margin: auto;
right: -20px; 
}
.notice-track span a{
cursor: pointer;
transition: color 0.3s ease;
color: #fff;
text-decoration: none;
}
.notice-track span a:hover {
color: #fff1e4;
}
/* Smooth infinite scroll */
@keyframes scrollNotice {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
.member-profile, .bg-sec {
    position: relative;
    padding: 50px 0px 100px;
       position: relative;
    background: url("../img/Bg-cover.jpg") center/cover no-repeat;
}
.bg-sec 
{
    padding: 70px 20px;
}
.member-profile::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100px;
    z-index: 1;
    opacity: 0.35;
    background: url(../img/labour-footer-yellow-short2.png) center bottom / cover no-repeat;
}
.title-heading h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(0, 0, 0);
}
.member-card.card
{
    border: 0;
        background: transparent;
        text-align: center;
            padding: 5px;
}

.member-card.card .card-header
{
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
}
.member-card.card .card-header:before
{
left: 0;
    background-color: #ffffff;
    content: '';
    height: 100%;
    width: calc(100% - 40px);
    position: absolute;
    top: 0;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    z-index: 0;
}
.member-card.card .card-header:after
{
    content: '';
    width: calc(100% - 40px);
    position: absolute;
    top: 0;
    border-radius: 10px;
    border: 1px solid #a5a1a1;
    -webkit-transition: 0.7s ease-in-out;
    transition: 0.7s ease-in-out;
    z-index: 0;
    height: calc(100% - 40px);
    right: 0;
    background-color: #c1c1c1;
    -webkit-clip-path: polygon(10px 0px, 100% 0, 100% 100%, calc(100% - 40px) 100%);
    clip-path: polygon(10px 0px, 100% 0, 100% 100%, calc(100% - 40px) 100%);
}
.member-card.card:hover .card-header:before
{
    background-color: #c1c1c1;
    border-color: #a5a1a1;
    transition: 0.7s ease-in-out;
}
.member-card.card:hover .card-header:after
{
    background-color: #fff;
    border-color: #d2d2d2;
    transition: 0.7s ease-in-out;
}
.member-card.card.member-card-two .card-header
{
    width: 150px;
    height: 150px;
    margin: auto;
}
.member-card.card .card-header img
{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 10px;
    border-radius: 20px;
    object-fit: cover;
}
.member-card.card .card-body
{
    padding: 0;
    padding-top: 10px;
}
.member-card-two.member-card.card .card-body
{
   min-height: 146px; 
}
.member-card.card .card-body .card-title
{
  font-weight: 600;
    font-size: 15px;
}
.btn-default {
position: relative;
display: inline-block;
background: linear-gradient(to right, #831218 0%, #ff202c 50%, #d01d1d 100%);
background-size: 200% auto;
border-radius: 100px;
color: #fff;
font-size: 16px;
font-weight: 600;    
text-transform: capitalize;
border: none;
padding: 10px 60px 10px 30px;
transition: all 0.4s ease-in-out;
overflow: hidden;
z-index: 0;
color: #ffffff;
text-decoration: none;
}
.btn-default::before {
content: '\f0a9';
font-family: 'Font Awesome 6 Free';
position: absolute;
top: 50%;
right: 0;
transform: translate(-30px, -50%);
font-size: 16px;
color: #fff;
border-radius: 50%;
transition: all 0.4s ease-in-out;
}
.btn-default:hover {
background-position: right center;
}

.initiatives-section {
  position: relative;
background: linear-gradient(
  135deg,
  #8a4a93 0%,
  #dc5e86 35%,
  #ffa664 65%,
  #ffdb65 100%
);
}

.initiatives-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/labour-footer-yellow-short2.png) center bottom / cover no-repeat;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: bottom center;
        opacity: 0.5;
    filter: brightness(0) invert(1);

}

.initiative-title {
font-size: 26px;
font-weight: 600;
color: #fff;  
}
span.initiative-txt {
color: #fff;
}
.title-underline {
width: 90px;
height: 3px;
background: #fff;
margin-top: 10px;
margin-bottom: 20px;
}
.initiative-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-align: center;
padding: 20px;
}
.initiative-card  div
{
background: #ece6fb;
display: inline-block;
padding: 10px;
border-radius: 50px;
margin-bottom: 20px;
}
.initiative-card img {
max-height: 40px;
max-width: 100%;
}
.initiative-card h2
{
font-size: 18px;
font-weight: 600;
}
.initiative-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
/************************************/
/***     17. Footer css       ***/
/************************************/
.main-footer{
background: url(../img/GovernmentDirectoriesVector.png), #202023;
background-repeat: no-repeat;
background-position: center center;
background-size: 100% auto;
padding: 50px 0 0 0;
border-radius: 20px 20px 0 0;
}
.footer-header{
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
border-bottom: 1px solid var(--dark-divider-color);
margin-bottom: 40px;
padding-bottom: 40px;
}
.footer-logo
{
display: flex;
}
.footer-logo div
{
margin-right: 10px;
}
.footer-logo img{
width: 100%;
max-width: 80px;
border-radius: 100px;
}
.footer-social-links ul{
list-style: none;
padding: 0;
margin: 0;
}
.footer-social-links ul li{
display: inline-block;
margin-right: 15px;
}
.footer-social-links ul li:last-child{
margin-right: 0;
}
.footer-social-links ul li a{
    border: 1px solid #fff;
    border-radius: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    background: #fff;
}
.footer-social-links ul li:hover a{
border-color: #fff1e4;
}
.footer-social-links ul li a i{
    color: #052d40;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}
.footer-social-links ul li:hover a i{
    color: #000;
}
.footer-newsletter-form{
margin-right: 30px;
}
.footer-links h3{
font-size: 20px;
color: #fff;
text-transform: capitalize;
margin-bottom: 20px;
}
.footer-links p{
color: #fff;
margin-bottom: 30px;
}
.footer-newsletter-form .form-group{
display: flex;
}
.footer-newsletter-form .form-group .form-control{
width: calc(100% - 70px);
font-size: 16px;
font-weight: 400;
line-height: 1.4em;
color: var(--text-color);
background: #fff;
border: 1px solid var(--divider-color);
border-radius: 100px;
outline: none;
box-shadow: none;
padding: 15px 20px;
}
.footer-newsletter-form .form-group .form-control::placeholder{
color: var(--text-color);
}
.footer-newsletter-form .form-group .newsletter-btn{
background-color: #fff;
color: #fff1e4;
width: 60px;
height: 60px;
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
margin-left: 10px;
transition: all 0.3s ease-in-out;
}
.footer-newsletter-form .form-group .newsletter-btn:hover{
background-color: #fff1e4;
color: #fff;
transform: rotate(25deg);
}
.footer-newsletter-form .form-group .newsletter-btn i{
font-size: 30px;
color: inherit;
padding-right: 5px;
}
.footer-quick-links{
margin-left: 30px;
}
.footer-links ul{
margin: 0;
padding: 0;
list-style: none;
}
.footer-links ul li{
color: #fff;
text-transform: capitalize;
line-height: 1.7em;
margin-bottom: 10px;
}
.footer-links ul li:last-child{
margin-bottom: 0;
}
.footer-links ul li a{
color: inherit;
transition: all 0.3s ease-in-out;
}
.footer-links ul li a:hover{
color: #fff1e4;
}
.footer-copyright{
border-top: 1px solid #e5e5e5;
margin-top: 20px;
padding: 10px 0;
}
.footer-copyright-text{
text-align: center;
}
.footer-copyright-text p{
color: #fff;
margin-bottom: 0;
}
.bg-color
{
background: linear-gradient(90deg, rgb(127, 48, 255) 5.69%, rgb(255, 128, 0) 29.36%, rgb(255, 72, 128) 51.78%, rgb(0, 176, 255) 80.93%, rgb(0, 56, 255) 97.33%);
height: 30px;
width: 100%;
border-radius: 20px 20px 0 0;
margin-bottom: -15px; 
}
.social-sidebar {
position: fixed;
top: 50%;
left: 0;
transform: translateY(-50%);
z-index: 999;
}
.social {
display: flex;
align-items: center;
height: 50px;
margin-bottom: 5px;
color: #000;
text-decoration: none;
overflow: hidden;
box-shadow: 0px 0px 4px rgba(0,0,0,0.35);
width: 50px;              /* icon only */
max-width: 50px;          /* start collapsed */
transition: max-width 0.35s ease;
border-radius: 0 6px 6px 0;
}
.social .icon {
width: 20px;
margin: 0 10px;
flex-shrink: 0;
}
.social .text {
white-space: nowrap;
padding-right: 20px;
font-size: 14px;
opacity: 0;
transition: opacity 0.2s ease;
}
/* Hover expand naturally */
.social:hover {
max-width: 600px;
width: 100%;
}
.social:hover .text {
opacity: 1;
}
/* Colors */
.facebook { background: #e4cb57; }
.twitter  { background: #1db05b; }
.instagram{ background: #9fd2f8; }
.feature-wrapper {
background: #fff;
border-radius: 18px;
box-shadow: 0 6px 24px 10px rgba(20, 165, 255, 0.1),
0 14px 40px 28px rgba(244, 93, 41, 0.05);
overflow: hidden;
}
.feature-card {
padding: 70px 50px;
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
border-right: 1px solid #dedddd;
}
.feature-card:hover
{
background-color: #e5f5ff;
}
.feature-card .card-left-sec
{
}
.feature-card .card-right-sec
{
}
.feature-card .card-right-sec img
{
width: 70px;
}
.step {
display: flex;
align-items: center;
gap: 5px;
font-weight: 600;
font-size: 14px;
color: #6b7280;
margin-bottom: 16px;
}
.dot-blue {
width: 15px;
height: 15px;
background: #0d6efd;
border-radius: 50%;
}
.dot-orange {
width: 15px;
height: 15px;
background: #fd7e14;
border-radius: 50%;
}
.number-txt
{
margin-left: 10px;
font-size: 16px;  
}
.feature-card h5 a {
color: #000000;
margin-bottom: 0;
font-size: 35px;
}
.feature-card p {
color: #6b7280;
font-size: 14px;
line-height: 1.6;
margin: 0;
}
.section-spacing
{
padding: 100px 0;
}
.initiatives-section.section-spacing
{
padding-bottom: 150px;
}
.link-sec
{
padding: 50px;
}
.info-link-sec {
background: #f5f6fb;
}
.info-box {
border-radius: 12px;
padding: 30px 20px;
text-align: center;
display: block;
height: 100%;
text-decoration: none;
color: #000;
    box-shadow: 0 0 12px rgba(0, 0, 0, .15);
    border: 1px solid rgba(0, 0, 0, .125);
transition: all 0.35s ease;
}

.info-box .icon {
margin-bottom: 25px;
background: #f0f9ff;
display: inline-block;
padding: 15px;
border-radius: 50px;
    border: 4px double #e6e6e6;
}
.info-box .icon img {
width: 50px;
}
.info-box h5 a {
font-size: 18px;
    font-weight: 500;
    margin-bottom: 1em;
    color: #000000;
    background-image: linear-gradient(to right, #000 0%, #000 100%);
    background-position: 0 calc(100% - 0.125em);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    padding-left: 0;
}
.info-box h5 a:hover
{
    background-size: 100% 1px;
    text-decoration: none;
}
/* Hover effect */
.info-box:hover {
transform: translateY(-6px);
}

.news-wrapper{
    margin: 40px auto;
    background: transparent;
    box-shadow: none;

}

/* Header */
.news-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:3px solid #0f3b4c;
}

/* Tabs */
.tabs{
    display:flex;
}
.tabs .tab:first-child
{
      margin-right: -59px;
    margin-left: -44px;
        margin-bottom: -2px;
}
.tab{
    position: relative;
    display: inline-block;
    background: transparent;
    font-size: 16px;
    padding: 10px;
    padding-left: 45px;
    color: #052d40;
    padding-right: 45px;
    cursor: pointer;
    z-index: 1;
    font-weight: 500;
    transition: all 700ms ease;
    border: 0;
}
.tab:before {
    position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    right: 30px;
    background: #ffffff;
    content: "";
    z-index: -1;
    -moz-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    -o-transform: skew(30deg, 0deg);
    -ms-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
}
.tab.active
{
  color: #fff;
}
.tab.active:before{
    background:#0f3b4c;
    color:#fff;
}

/* Controls */
.controls{
    padding-right:10px;
}
.ctrl-btn{
    width: 30px;
    height: 30px;
    margin-left: 3px;
    border-radius: 50%;
    border: none;
    background: #0f3b4c;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

/* Slider */
.news-viewport{
    height:500px;
    overflow:hidden;
    position:relative;
}

.news-track{
    position:absolute;
    width:100%;
    display:none;
}
.news-track.active{
     display: block;
    padding-left: 20px;
}

/* News Item */
.news-item{
   display: flex;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid #e6e6e6;
    background: #f9fbfd;
    align-items: self-start;
    padding-left: 0;
}

.date{
 min-width: 110px;
    background: #e6e9ec;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.date:before
{
content: '';
    width: 20px;
    height: 37px;
    background: #e6e9ec;
    left: -20px;
    position: absolute;
}
.date:after {
    position: absolute;
    content: '';
    left: -20px;
    top: -15px;
    border-bottom: 15px solid #d2d2d2;
    border-left: 20px solid transparent;
}
.content{
    font-size:15px;
    line-height:1.4;
}

.meta{
    margin-top:6px;
    font-size:13px;
    color:#666;
}

/* View All */
.view-all
{
    border-top: 3px solid #052d40;
    text-align: right;
}
.view-all a{
       background: #0f3b4c;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    display: inline-block;
    background: transparent;
    z-index: 1;
    padding-left: 57px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 57px;
    cursor: pointer;
    margin-right: -42px;
    margin-top: -2px;
}
.view-all a::before
{
  position: absolute;
    top: 0;
    left: 30px;
    bottom: 0;
    right: 30px;
    background: #052d40;
    content: "";
    z-index: -1;
    -moz-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    -o-transform: skew(30deg, 0deg);
    -ms-transform: skew(30deg, 0deg);
    transform: skew(30deg, 0deg);
   
}
.breadcrumb-section {
 position: relative;
    width: 100%;
    height: 150px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/about_bnr.jpg) center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    padding-top: 40px;
}

/* ================= MAIN TITLE ================= */
.breadcrumb-section .main-title {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.breadcrumb-section .main-title h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ================= BREADCRUMB PART ================= */
.breadcrumb-section .breadcrumb-part {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
    background-color: rgba(227, 231, 245, 0.15);
-webkit-backdrop-filter: blur(28px) brightness(130%);
backdrop-filter: blur(8px) brightness(100%);
}

.breadcrumb-section .breadcrumb-part ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.breadcrumb-section .breadcrumb-part ul li {
    font-size: 14px;
    color: #fff;
    position: relative;
}

/* Add separator */
.breadcrumb-section .breadcrumb-part ul li:not(:last-child)::after {
    content: "/";
    margin-left: 15px;
    color: #fff;
}
.content-sec
{
background: #fff;
    padding: 35px;
    border-radius: 0 0 15px 15px;
    border-top: 3px solid #052d40;
}
.content-sec h2
{
    font-size: 25px;
    margin-bottom: 20px;
}
.content-sec p
{
font-size: 1.2rem;
}
.content-sec ul
{
    margin-bottom: 0;
}
.content-sec ul li
{
    padding-bottom: 10px;
    font-size: 17px;
}
.content-sec ul li span
{
    color: #666;
}
/* container */
.ceo-card{
position:relative;
}

/* HEXAGON GEOMETRY (true ratio) */
.hex-stack{
    position: relative;
    width: 160px;
    height: 160px;
}

/* the real hexagon */
.hex{
position:absolute;
inset:0;
clip-path:polygon(
50% 0%,
93% 25%,
93% 75%,
50% 100%,
7% 75%,
7% 25%
);
}
/* bottom red plate (the missing secret) */
.hex.red{
    background: linear-gradient(to right, #c50313 0%, #f51f30 45%, #ff5f6a 100%);
    transform: scale(.65);
    translate: 8px -15px;
}

/* white frame */
.hex.white{
    background: #ffffff;
    transform: scale(.65);
}

/* photo */
.hex.img{
transform:scale(.6);
overflow:hidden;
}

.hex.img img{
width:100%;
height:100%;
object-fit:cover;
}

/* ===== RIBBON LABEL ===== */
.ribbon{
    position: absolute;
    left: 110px;
    top: 60px;
    background: linear-gradient(to right, #c50313 0%, #f51f30 45%, #ff5f6a 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 2px;
    min-width: 150px;
}
.ribbon .title h3{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    text-align: center;
}
/* chart container */
.org-chart{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
position:relative;
}

/* each level spacing */
.level{
position:relative;
margin-bottom:0;
}
.level.level-top::after, .level.level-middle::after
{
    content: '';
    background: linear-gradient(to right, #c50313 0%, #f51f30 45%, #ff5f6a 100%);
    position: absolute;
    left: 0;
    right: 0;
    width: 2px;
    height: 30px;
    bottom: 3px;
    margin: auto;  
}
.level.level-branch::after
{
    content: '';
    position: absolute;
    left: 15px;
    right: 0;
    background: red;
    width: 740px;
    height: 2px;
    margin: auto;
    top: -4px;
}
.level.level-middle, .level.level-branch,
.branch-col .ceo-card.small:nth-child(2)
{
    top: -30px;
}
/* branch row */
.level-branch{
width:900px;
display:flex;
justify-content:space-between;
position:relative;
}

/* each column */
.branch-col{
display:flex;
flex-direction:column;
align-items:center;
position:relative;
}
.ceo-card.small .ribbon{
transform:scale(.85);
transform-origin:left center;
}
.branch-col .ceo-card.small:nth-child(3) 
{
    top: -60px;
}
.level.level-branch .branch-col::before
{
    content: '';
    position: absolute;
    left: 15px;
    right: 0;
    background: linear-gradient(to right, #c50313 0%, #f51f30 45%, #ff5f6a 100%);
    width: 2px;
    height: 300px;
    margin: auto;
    top: -4px;
}
.level.level-branch .branch-col:last-child::before
{
    height: 200px;
}
/* Wrapper */
.stb-wrapper{
    display:flex;
    width:100%;
    min-height:520px;
    gap:20px;
    box-sizing:border-box;
      align-items: flex-start;
}

/* Sidebar */
.stb-sidebar{
    width:240px;
    padding:15px;
    border-radius:15px;
    background:#052d40;
     position: sticky;
    top: 30px;              
    align-self: flex-start; 
    height: fit-content;
}
.stb-sidebar-two, .stb-sidebar-three {
    width: 300px;
}
/* Tab */
.stb-tab {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 18px 10px;
    border-radius: 14px;
    color: #cbd5e1;
    cursor: pointer;
    margin-bottom: 0;
    /*    transition: .35s;*/
    transition: none;
    z-index: 2;
}

.stb-icon{
    font-size:11px;
}

.stb-tab:hover {
    color: #fff;
    /*    transform:translateX(6px);*/
    transform:none;
}

.stb-tab.active{
    color:#052d40;
}
.stb-tab.active span
{
     line-height: 1;   
}
/* Sliding indicator */
.stb-indicator {
    position: absolute;
    left: 10px;
    width: calc(100% - 20px);
    height: 50px;
    background: #eeecf9;
    border-radius: 10px;
    top: 15px;
    /*    transition: .35s cubic-bezier(.77, 0, .18, 1);*/

    transition: none
}

/* Content area */
.stb-content-area{
    flex: 1;
    border-radius: 20px;
    padding: 40px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Content panels */
.stb-content{
    opacity: 0;
    position: absolute;
    transition: none;
}
   

.stb-content.active{
    opacity: 1;
    position: relative;
}

.stb-content h2{
    font-size: 25px;
    color: #052d40;
    margin-bottom: 10px;
}
.stb-content h3
{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.stb-content p{
font-size: 1rem;
}
.stb-content ul.first-list
{
padding-left: 20px;
}
.stb-content ul.first-list li
{
    padding-bottom: 10px;
}
.stb-content ul.first-list li.sec-last-list
{
 list-style: none;   
}
.stb-content ul.first-list li:last-child
{
    padding-bottom: 0;
}
.stb-content ul.first-list ul
{
padding-left: 20px;
}
.stb-content ul.first-list ul li
{
    font-size: 14px;
}
.stb-content ul.first-list.scheme-list
{
display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.stb-content ul.first-list.scheme-list li
{
    flex: 0 0 30%;
    margin-right: 3%;
}
.vision-mission-sec .vm-box
{
    text-align: center;
}
.vision-mission-sec .vm-box ul
{
    list-style: none;
    background: #e6e9ec;
    padding: 15px 10px 30px;
    border-radius: 10px 10px 0 0;
    min-height: 118px;
}
.vision-mission-sec .vm-box ul li
{
font-size: 16px;
    padding: 0;
}
.vision-mission-sec .vm-box h3
{
    background: #052d40;
    padding: 10px;
    margin-bottom: 0;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    width: 200px;
    border-radius: 0 0 10px 10px;
    position: relative;
        top: -15px;
}
.vision-mission-sec .vm-box h3::before
{
 content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-right: 15px solid #052d40;
    border-top: 15px solid transparent;
}
.vision-mission-sec .vm-box h3::after
{
    content: "";
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 15px solid #052d40;
    border-top: 15px solid transparent;
}
.bottom-list
{
    margin-top: 20px;
}
.under-construction-img
{
    display: block;
    margin: auto;
}
.card.pdf-card
{
    border: 0;
}
.card-header.pdf-card-header
{
    background: #be0a14;
    padding: 0;
    height: 50px;
    border-radius: 0;
    border: 0;
}
.card-header.pdf-card-header img
{
    width: 60px;
    border: 3px solid #c30b15;
    border-radius: 50px;
    margin-top: -25px;
    background: #be0a14;
}
.card-body.pdfcard-body
{
padding-top: 20px;
    padding-bottom: 40px;
    background: #f5f6f8;
}
.card-body.pdfcard-body p
{
font-size: 16px;
}
.card-body.pdfcard-body .card-date
{
    max-width: 110px;
    width: 100%;
    background: #e6e9ec;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: row;
    margin-left: -16px;

}
.card-body.pdfcard-body .card-date:before {
    content: '';
    width: 20px;
    height: 37px;
    background: #e6e9ec;
    left: -20px;
    position: absolute;
}
.card-body.pdfcard-body .card-date:after {
    position: absolute;
    content: '';
    left: -20px;
    top: -15px;
    border-bottom: 15px solid #d2d2d2;
    border-left: 20px solid transparent;
}
.card-body.pdfcard-body .card-date span
{

}
.card-footer.pdf-card-footer
{
border: 0;
    padding: 0;
    background: transparent;
    text-align: center;
    margin-top: -22px; 
}
.cus-table tr td a
{
background: #052d40;
    text-align: center;
    width: 100%;
    display: block;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    border-radius: 5px;    
}

/* =========================================
   Know Your Registration - Premium UI
   ========================================= */
.kyr-wrap {
    padding: 0;
    background: transparent;
    border: 0;
}

.kyr-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 40px;
    border-radius: 28px;
    background: radial-gradient(circle at top left, rgba(185, 28, 28, 0.08), transparent 28%), radial-gradient(circle at bottom right, rgba(5, 45, 64, 0.10), transparent 32%), linear-gradient(135deg, #fffdf7 0%, #fff8e8 100%);
    border: 1px solid rgba(177, 32, 38, 0.10);
    box-shadow: 0 24px 60px rgba(5, 45, 64, 0.08);
    margin-bottom: 24px;
}

.kyr-hero-left {
    flex: 1;
    min-width: 0;
}

.kyr-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(177, 32, 38, 0.08);
    color: #9f1239;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 16px;
}

.kyr-hero-left h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #052d40;
}

.kyr-hero-left p {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.kyr-hero-right {
    flex-shrink: 0;
}

.kyr-trust-card {
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(148, 163, 184, 0.20);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.kyr-trust-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #fff;
    font-size: 20px;
}

.kyr-trust-card strong {
    display: block;
    font-size: 16px;
    color: #052d40;
    margin-bottom: 2px;
}

.kyr-trust-card span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #64748b;
}

.kyr-form-shell {
    position: relative;
    padding: 36px 40px 34px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, #ffffff 100%);
    border: 1px solid rgba(148, 163, 184, 0.20);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

    .kyr-form-shell::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #b91c1c 0%, #f59e0b 45%, #052d40 100%);
    }

.kyr-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

    .kyr-form-header h3 {
        margin: 0 0 6px;
        font-size: 24px;
        font-weight: 800;
        color: #052d40;
    }

    .kyr-form-header p {
        margin: 0;
        color: #64748b;
        font-size: 15px;
    }

.kyr-field label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

    .kyr-field label span {
        color: #dc2626;
    }

.kyr-input {
    width: 100%;
    height: 62px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid #d7dee7;
    background: #ffffff;
    color: #0f172a;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: all .25s ease;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

    .kyr-input::placeholder {
        color: #94a3b8;
        font-weight: 500;
    }

    .kyr-input:focus {
        border-color: #b91c1c;
        box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.10);
    }

.kyr-captcha-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kyr-captcha-input {
    max-width: 260px;
}

.kyr-captcha-box {
    min-width: 170px;
    height: 62px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid #c7d2fe;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,250,252,0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

    .kyr-captcha-box span {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #9a3412;
        transform: skew(-14deg);
        text-shadow: 1px 1px 0 rgba(59, 130, 246, 0.20);
        font-family: "Trebuchet MS", "Noto Sans", sans-serif;
        user-select: none;
    }

.kyr-refresh-btn {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #052d40, #0f4c5c);
    color: #fff;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    box-shadow: 0 14px 28px rgba(5, 45, 64, 0.16);
}

    .kyr-refresh-btn:hover {
        transform: translateY(-2px);
        opacity: .96;
    }

.kyr-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.kyr-search-btn {
    min-width: 190px;
    height: 60px;
    padding: 0 28px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 34px rgba(127, 29, 29, 0.22);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .kyr-search-btn:hover {
        transform: translateY(-2px);
        opacity: .98;
    }

@media (max-width: 991.98px) {
    .kyr-hero {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 22px;
    }

    .kyr-trust-card {
        min-width: 100%;
    }

    .kyr-form-shell {
        padding: 28px 22px 26px;
    }

    .kyr-hero-left h2 {
        font-size: 28px;
    }

    .kyr-captcha-row {
        flex-wrap: wrap;
    }

    .kyr-captcha-input,
    .kyr-captcha-box,
    .kyr-refresh-btn {
        max-width: 100%;
        width: 100%;
    }

    .kyr-refresh-btn {
        height: 56px;
        min-width: 56px;
    }

    .kyr-actions {
        justify-content: stretch;
    }

    .kyr-search-btn {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .kyr-hero-left h2 {
        font-size: 24px;
    }

    .kyr-input,
    .kyr-captcha-box {
        height: 56px;
        border-radius: 16px;
    }

        .kyr-captcha-box span {
            font-size: 20px;
        }

    .kyr-search-btn {
        height: 56px;
        border-radius: 16px;
    }
}


/* =========================================
   Labour Registration Status - add-on styles
   ========================================= */
.les-page .kyr-hero,
.les-page .les-form-shell {
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
}

.les-section {
    margin-bottom: 24px;
}

.les-group-title {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

    .les-group-title span {
        color: #dc2626;
    }

.les-inline-options {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.les-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

    .les-radio input {
        width: 18px;
        height: 18px;
        accent-color: #b91c1c;
    }

.les-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 6px;
}

.les-radio-card {
    position: relative;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid #d7dee7;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: all .25s ease;
    text-align: center;
}

    .les-radio-card:hover {
        transform: translateY(-2px);
        border-color: rgba(185, 28, 28, 0.28);
        box-shadow: 0 14px 32px rgba(127, 29, 29, 0.08);
    }

    .les-radio-card input {
        width: 18px;
        height: 18px;
        margin: 0;
        accent-color: #b91c1c;
    }

    .les-radio-card span {
        font-size: 16px;
        font-weight: 700;
        color: #334155;
    }

    .les-radio-card.active {
        border-color: rgba(185, 28, 28, 0.35);
        background: linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
        box-shadow: 0 14px 32px rgba(127, 29, 29, 0.08);
    }

.les-actions {
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.les-reset-btn {
    min-width: 150px;
    height: 60px;
    padding: 0 28px;
    border: 1px solid #d7dee7;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .les-reset-btn:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    }

.les-otp-btn {
    min-width: 170px;
}

@media (max-width: 991.98px) {
    .les-choice-grid {
        grid-template-columns: 1fr;
    }

    .les-actions {
        justify-content: stretch;
    }

    .les-reset-btn,
    .les-otp-btn {
        width: 100%;
        min-width: 100%;
    }
}

/* Labour Certificate page */
.glc-page .kyr-hero,
.glc-page .glc-form-shell {
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
}

.glc-actions {
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .glc-actions {
        justify-content: stretch;
    }

        .glc-actions .kyr-search-btn {
            width: 100%;
            min-width: 100%;
        }
}

.kyr-captcha-image {
    width: 170px;
    min-width: 170px;
    height: 62px;
    border-radius: 18px;
    border: 1px solid #c7d2fe;
    background: #fff;
    object-fit: cover;
    display: block;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}


/* Worker List Search page */
.wls-page .kyr-hero,
.wls-page .wls-form-shell {
    width: 100%;
    max-width: 1380px;
    margin-left: auto;
    margin-right: auto;
}

.wls-section {
    margin-bottom: 4px;
}

.wls-group-title {
    display: block;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

    .wls-group-title span {
        color: #dc2626;
    }

.wls-inline-options {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.wls-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
}

    .wls-radio input {
        width: 18px;
        height: 18px;
        accent-color: #b91c1c;
    }

.wls-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 52px;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.wls-actions {
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.wls-reset-btn {
    min-width: 150px;
    height: 60px;
    padding: 0 28px;
    border: 1px solid #d7dee7;
    border-radius: 18px;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .wls-reset-btn:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    }

.wls-submit-btn {
    min-width: 170px;
}

@media (max-width: 991.98px) {
    .wls-actions {
        justify-content: stretch;
    }

    .wls-reset-btn,
    .wls-submit-btn {
        width: 100%;
        min-width: 100%;
    }
}
/* =========================================================
   Office Address Directory - Final Professional UI
   ========================================================= */
.office-bg-sec {
    padding: 32px 0 46px;
    background: linear-gradient(180deg, #edf4f7 0%, #f6f9fb 100%) !important;
}

.content-sec.office-page {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.office-page {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.office-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 34px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(5, 45, 64, 0.06) 0%, rgba(5, 45, 64, 0.025) 58%, #ffffff 100%);
    border: 1px solid rgba(5, 45, 64, 0.10);
    box-shadow: 0 20px 45px rgba(5, 45, 64, 0.06);
    margin-bottom: 18px;
}

.office-hero-left {
    flex: 1;
    min-width: 0;
}

.office-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(185, 28, 28, 0.08);
    color: #9f1239;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .25px;
    margin-bottom: 14px;
}

.office-hero-left h2 {
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 800;
    color: #052d40;
}

.office-hero-left p {
    margin: 0;
    max-width: 820px;
    font-size: 16px;
    line-height: 1.8;
    color: #5b6b84;
}

.office-hero-right {
    flex-shrink: 0;
}

.office-hero-card {
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.office-hero-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #fff;
    font-size: 26px;
    box-shadow: 0 10px 22px rgba(127, 29, 29, 0.22);
}

.office-hero-card strong {
    display: block;
    margin-bottom: 3px;
    font-size: 17px;
    font-weight: 800;
    color: #052d40;
}

.office-hero-card span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
}

.office-table-shell {
    position: relative;
    
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.07);
}

    .office-table-shell::before {
        content: "";
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        height: 4px;
        background: #052d40;
        z-index: 3;
    }

.office-table-wrap {
    padding: 0;
    overflow-x: auto;
}

.office-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
}

    .office-table thead th,
    .office-table tr:first-child th {
        position: sticky;
        top: 0;
        z-index: 5;
        padding: 18px 16px;
        background: #052d40;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
        border-bottom: 0;
    }

        .office-table thead th:last-child,
        .office-table tr:first-child th:last-child {
            border-right: 0;
        }

    .office-table tbody td,
    .office-table td {
        padding: 18px 16px;
        font-size: 15px;
        line-height: 1.7;
        color: #334155;
        text-align: center;
        vertical-align: middle;
        border: 1px solid #e5e7eb;
        background: #fff;
        word-break: break-word;
    }

    .office-table tbody tr:nth-child(even) td,
    .office-table tr:nth-child(even) td {
        background: #f8fbfd;
    }

    .office-table tbody tr:hover td,
    .office-table tr:hover td {
        background: #f2f7fa;
    }

    .office-table td[rowspan],
    .office-table td[colspan] {
        font-weight: 700;
        color: #243242;
        background: #fbfcfd;
    }

    .office-table td:nth-child(3),
    .office-table td:nth-child(4) {
        color: #475569;
    }

    .office-table th:nth-child(1),
    .office-table td:nth-child(1) {
        width: 18%;
    }

    .office-table th:nth-child(2),
    .office-table td:nth-child(2) {
        width: 18%;
    }

    .office-table th:nth-child(3),
    .office-table td:nth-child(3) {
        width: 32%;
    }

    .office-table th:nth-child(4),
    .office-table td:nth-child(4) {
        width: 32%;
    }

@media (max-width: 1199.98px) {
    .office-hero {
        flex-direction: column;
        align-items: stretch;
        padding: 26px 24px;
    }

    .office-hero-card {
        min-width: 100%;
    }

    .office-hero-left h2 {
        font-size: 34px;
    }
}

@media (max-width: 991.98px) {
    .office-bg-sec {
        padding: 22px 0 30px;
    }

    .office-hero {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .office-hero-left h2 {
        font-size: 30px;
    }

    .office-hero-left p {
        font-size: 15px;
    }

    .office-table-shell {
        border-radius: 18px;
    }

    .office-table {
        min-width: 950px;
    }

        .office-table thead th,
        .office-table tr:first-child th,
        .office-table tbody td,
        .office-table td {
            padding: 16px 14px;
        }
}

@media (max-width: 767.98px) {
    .office-bg-sec {
        padding: 18px 0 24px;
    }

    .office-hero {
        gap: 18px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .office-chip {
        font-size: 11px;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .office-hero-left h2 {
        font-size: 26px;
    }

    .office-hero-left p {
        font-size: 14px;
        line-height: 1.7;
    }

    .office-hero-card {
        min-width: 100%;
        padding: 16px 14px;
        border-radius: 16px;
    }

    .office-hero-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
        border-radius: 14px;
    }

    .office-hero-card strong {
        font-size: 15px;
    }

    .office-hero-card span {
        font-size: 13px;
    }

    .office-table-shell {
        border-radius: 16px;
    }

    .office-table {
        min-width: 820px;
    }

        .office-table thead th,
        .office-table tr:first-child th {
            font-size: 14px;
            padding: 14px 12px;
        }

        .office-table tbody td,
        .office-table td {
            font-size: 14px;
            padding: 14px 12px;
        }
}
/* =========================================================
   End Office Address Directory
   ========================================================= */
/* =========================================
   POLICY PAGES - FINAL EXACT SIMPLE DESIGN
========================================= */
.policy-page-section {
    padding: 54px 0 96px !important;
}
.policy-shell {
    width: 100%;
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 56px;
}

.policy-panel {
    background: #efefef;
    border-top: 4px solid #123f5b;
    border-radius: 24px;
    padding: 44px 46px 42px;
    box-shadow: none;
}

.policy-head {
    margin: 0 0 26px;
}

    .policy-head h1 {
        margin: 0;
        font-size: 34px;
        line-height: 1.2;
        font-weight: 700;
        color: #111111;
    }

.policy-body p {
    margin: 0 0 22px;
    font-size: 20px;
    line-height: 1.9;
    color: #111111;
    font-weight: 400;
}

.policy-body h2 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 700;
    color: #111111;
}

.policy-body ul {
    margin: 0 0 22px 38px;
    padding: 0;
}

    .policy-body ul li {
        margin: 0 0 16px;
        font-size: 20px;
        line-height: 1.9;
        color: #111111;
        font-weight: 400;
    }

    .policy-body ul ul {
        margin-top: 12px;
        margin-bottom: 8px;
    }

        .policy-body ul ul li {
            list-style-type: circle;
            margin-bottom: 12px;
        }

@media (max-width: 1199.98px) {
    .policy-panel {
        padding: 42px 40px 40px;
    }

    .policy-head h1 {
        font-size: 30px;
    }

    .policy-body p,
    .policy-body ul li {
        font-size: 18px;
    }

    .policy-body h2 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .policy-page-section {
        padding: 24px 0 36px !important;
    }

    .policy-shell {
        padding: 0 16px;
    }

    .policy-panel {
        padding: 28px 22px 28px;
        border-radius: 18px;
    }

    .policy-head {
        margin-bottom: 18px;
    }

        .policy-head h1 {
            font-size: 26px;
        }

    .policy-body p,
    .policy-body ul li {
        font-size: 16px;
        line-height: 1.8;
    }

    .policy-body h2 {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .policy-body ul {
        margin-left: 24px;
    }
}
/* =========================================
   END POLICY PAGES - FINAL EXACT SIMPLE DESIGN
========================================= */


.policy-main-title {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

    .policy-main-title::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 5px;
        height: 44px;
        background: #8b1116;
        border-radius: 2px;
    }

   

@media (max-width: 991px) {
    .policy-main-title {
        padding-left: 22px;
    }

        .policy-main-title::before {
            height: 56px;
            top: 4px;
        }

        .policy-main-title h1 {
            font-size: 46px;
        }
}

@media (max-width: 767px) {
    .policy-main-title {
        padding-left: 18px;
    }

        .policy-main-title::before {
            width: 4px;
            height: 42px;
            top: 3px;
        }

        .policy-main-title h1 {
            font-size: 32px;
        }
}


/* Scheme page accordion */
.stb-content .scheme-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stb-content .scheme-accordion-item {
    border: 1px solid #d8e2ea;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fbfd;
    box-shadow: 0 1px 0 rgba(5,45,64,0.02);
}

.stb-content .scheme-accordion-toggle {
    width: 100%;
    border: 0;
    background: #f8fbfd;
    color: #052d40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}

    .stb-content .scheme-accordion-toggle:hover {
        background: #eef5f9;
    }

.stb-content .scheme-accordion-item.open .scheme-accordion-toggle {
    background: #eef5f9;
}

.stb-content .scheme-accordion-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

    .stb-content .scheme-accordion-icon::before,
    .stb-content .scheme-accordion-icon::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 14px;
        height: 2px;
        background: #052d40;
        border-radius: 999px;
        transform: translate(-50%, -50%);
        transition: transform .25s ease, opacity .25s ease;
    }

    .stb-content .scheme-accordion-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.stb-content .scheme-accordion-item.open .scheme-accordion-icon::after {
    opacity: 0;
}

.stb-content .scheme-accordion-panel {
    display: none;
    padding: 0 22px 20px;
}

    .stb-content .scheme-accordion-panel > :last-child {
        margin-bottom: 0;
    }

    .stb-content .scheme-accordion-panel p {
        margin-bottom: 14px;
    }

    .stb-content .scheme-accordion-panel ul.first-list {
        margin-bottom: 0;
    }

@media (max-width: 991px) {
    .stb-content .scheme-accordion-toggle {
        font-size: 21px;
        padding: 16px 18px;
    }

    .stb-content .scheme-accordion-panel {
        padding: 0 18px 18px;
    }
}

@media (max-width: 767px) {
    .stb-content .scheme-accordion {
        gap: 12px;
    }

    .stb-content .scheme-accordion-item {
        border-radius: 12px;
    }

    .stb-content .scheme-accordion-toggle {
        font-size: 18px;
        padding: 14px 14px;
    }

    .stb-content .scheme-accordion-panel {
        padding: 0 14px 14px;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE PATCH - SAFE APPEND ONLY
   ========================================================= */

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
    height: auto;
}

/* -------- Large tablets / small laptops -------- */
@media (max-width: 1199.98px) {
    .desktop-menu .nav-item .nav-link {
        font-size: 16px;
        padding: 10px 12px;
    }

    .main-logo img,
    .right-logo img,
    .right-logo img:first-child {
        width: 60px;
    }

    .main-logo .logo-txt h1 {
        font-size: 18px;
    }

    .main-logo .logo-txt span {
        font-size: 13px;
    }

    .mySlider {
        height: 380px;
    }

    .feature-card {
        padding: 48px 32px;
    }

        .feature-card h5 a {
            font-size: 28px;
        }

    .section-spacing {
        padding: 80px 0;
    }

    .link-sec {
        padding: 36px 20px;
    }

    .news-viewport {
        height: 430px;
    }

    .footer-header {
        gap: 20px;
    }

    .footer-newsletter-form,
    .footer-quick-links {
        margin-left: 0;
        margin-right: 0;
    }

    .level-branch {
        min-width: 900px;
        width: 900px;
    }

    .org-chart {
        overflow-x: auto;
        align-items: flex-start;
        padding-bottom: 12px;
    }

    .stb-wrapper {
        min-height: auto;
    }
}

/* -------- Tablet -------- */
@media (max-width: 991.98px) {
    .top-bar::before,
    .top-bar::after {
        width: 70%;
    }

    .top-left-txt p,
    .top-right-txt ul.main-list {
        justify-content: center;
    }

    .top-right-txt ul.main-list {
        flex-wrap: wrap;
        gap: 10px;
    }

        .top-right-txt ul.main-list li.top-list {
            padding-right: 0;
        }

    .logo-area.clip-sec::before {
        width: 62%;
    }

    .main-logo {
        align-items: center;
    }

    .right-logo {
        justify-content: center;
        margin-top: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .mySlider {
        height: 320px;
        padding: 10px 8px;
    }

    .slider_bust_left,
    .slider_bust_right {
        display: none;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .notice-bar {
        padding: 8px 0;
    }

    .notice-label {
        padding: 0 10px;
        font-size: 13px;
    }

    .notice-track {
        gap: 24px;
    }

        .notice-track span::after {
            right: -12px;
        }

    .member-profile,
    .bg-sec {
        padding: 40px 0 70px;
        background-position: center top;
    }

    .content-sec {
        padding: 28px 24px;
    }

        .content-sec h2 {
            font-size: 22px;
        }

        .content-sec p {
            font-size: 1rem;
        }

        .content-sec ul li {
            font-size: 15px;
        }

    .feature-wrapper {
        border-radius: 16px;
    }

    .feature-card {
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border-right: 0;
        border-bottom: 1px solid #dedddd;
    }

        .feature-card:last-child {
            border-bottom: 0;
        }

        .feature-card h5 a {
            font-size: 24px;
        }

    .link-sec {
        padding: 30px 0;
    }

    .info-box {
        padding: 24px 18px;
    }

    .news-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }

        .tabs .tab:first-child {
            margin-right: 0;
            margin-left: 0;
            margin-bottom: 0;
        }

    .tab {
        white-space: nowrap;
        padding-left: 28px;
        padding-right: 28px;
    }

        .tab:before {
            left: 14px;
            right: 14px;
        }

    .controls {
        padding-right: 0;
        align-self: flex-end;
    }

    .news-viewport {
        height: auto;
        max-height: none;
    }

    .news-track,
    .news-track.active {
        position: relative;
        padding-left: 0;
    }

    .news-item {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
    }

    .date {
        min-width: auto;
        width: max-content;
    }

        .date:before,
        .date:after {
            display: none;
        }

    .view-all {
        text-align: center;
    }

        .view-all a {
            margin-right: 0;
            padding-left: 38px;
            padding-right: 38px;
        }

            .view-all a::before {
                left: 18px;
                right: 18px;
            }

    .breadcrumb-section {
        height: 120px;
        padding-top: 28px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 24px;
        }

        .breadcrumb-section .breadcrumb-part ul {
            gap: 10px;
            flex-wrap: wrap;
            padding: 0 10px;
        }

            .breadcrumb-section .breadcrumb-part ul li {
                font-size: 12px;
            }

    .hex-stack {
        width: 125px;
        height: 125px;
    }

    .ribbon {
        position: relative;
        left: auto;
        top: auto;
        min-width: auto;
        display: inline-block;
        margin: 10px auto 0;
    }

    .stb-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .stb-sidebar,
    .stb-sidebar-two,
    .stb-sidebar-three {
        width: 100%;
        position: relative;
        top: 0;
        border-radius: 18px;
    }

    .stb-indicator {
        display: none;
    }

    .stb-tab {
        margin-bottom: 8px;
        border-radius: 12px;
        background: rgba(255,255,255,0.04);
    }

        .stb-tab.active {
            background: #eeecf9;
        }

    .stb-content-area {
        width: 100%;
        padding: 26px 20px;
        border-radius: 16px;
    }

    .stb-content ul.first-list.scheme-list li {
        flex: 0 0 47%;
        margin-right: 3%;
    }

    .vision-mission-sec .vm-box ul {
        min-height: auto;
    }

    .vision-mission-sec .vm-box h3 {
        width: 100%;
        max-width: 220px;
    }

    .main-footer {
        padding-top: 36px;
        border-radius: 16px 16px 0 0;
        background-size: cover;
    }

    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .footer-logo {
        flex-wrap: wrap;
    }

    .footer-newsletter-form .form-group {
        flex-direction: column;
        gap: 12px;
    }

        .footer-newsletter-form .form-group .form-control {
            width: 100%;
        }

        .footer-newsletter-form .form-group .newsletter-btn {
            margin-left: 0;
        }

    .bg-color {
        height: 20px;
        border-radius: 16px 16px 0 0;
    }

    .social-sidebar {
        top: auto;
        left: auto;
        right: 12px;
        bottom: 16px;
        transform: none;
    }

    .social {
        border-radius: 12px;
        margin-bottom: 8px;
    }
}

/* -------- Mobile -------- */
@media (max-width: 767.98px) {
    .top-bar::before,
    .top-bar::after {
        display: none;
    }

    .top-left-txt p {
        justify-content: center;
        font-size: 12px;
    }

        .top-left-txt p img {
            width: 14px;
            margin-right: 8px;
        }

    .top-right-txt ul.main-list {
        justify-content: center;
        gap: 8px 14px;
    }

        .top-right-txt ul.main-list li.top-list img {
            width: 18px;
        }

    .flag-icon img {
        width: 24px;
    }

    .logo-area {
        padding: 8px 0;
    }

        .logo-area.clip-sec::before {
            display: none;
        }

    .main-logo {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

        .main-logo img {
            width: 54px;
        }

        .main-logo .logo-txt {
            margin-left: 0;
            margin-top: 8px;
            text-align: center;
        }

            .main-logo .logo-txt h1 {
                font-size: 16px;
                line-height: 1.3;
            }

            .main-logo .logo-txt span {
                font-size: 12px;
            }

    .right-logo img,
    .right-logo img:first-child {
        width: 52px;
        margin-right: 0;
    }

    .mySlider {
        height: auto;
        padding: 8px 0;
    }

        .mySlider .swiper-slide {
            filter: none;
            opacity: 1;
            padding: 0 8px;
        }

            .mySlider .swiper-slide img {
                border-radius: 14px;
            }

    .swiper-button-prev {
        left: 8px;
    }

    .swiper-button-next {
        right: 8px;
    }

    .notice-label {
        font-size: 12px;
        padding: 0 8px;
    }

    .notice-track {
        gap: 20px;
    }

        .notice-track span::after {
            height: 12px;
            right: -10px;
        }

    .member-profile,
    .bg-sec {
        padding: 32px 0 56px;
    }

    .title-heading h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .content-sec {
        padding: 22px 16px;
        border-radius: 0 0 12px 12px;
    }

        .content-sec h2 {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .content-sec p {
            font-size: 15px;
            line-height: 1.75;
        }

        .content-sec ul li {
            font-size: 14px;
            line-height: 1.7;
            padding-bottom: 8px;
        }

    .member-card.card.member-card-two .card-header {
        width: 120px;
        height: 120px;
    }

    .member-card-two.member-card.card .card-body {
        min-height: auto;
    }

    .btn-default {
        width: 100%;
        text-align: left;
        padding: 12px 56px 12px 24px;
    }

    .initiative-title {
        font-size: 22px;
    }

    .initiative-card {
        padding: 18px 16px;
    }

        .initiative-card h2 {
            font-size: 16px;
        }

    .section-spacing {
        padding: 56px 0;
    }

    .initiatives-section.section-spacing {
        padding-bottom: 90px;
    }

    .link-sec {
        padding: 24px 0;
    }

    .info-box {
        padding: 20px 14px;
        border-radius: 10px;
    }

        .info-box .icon {
            margin-bottom: 16px;
            padding: 12px;
        }

            .info-box .icon img {
                width: 40px;
            }

        .info-box h5 a {
            font-size: 16px;
        }

    .tab {
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .ctrl-btn {
        width: 28px;
        height: 28px;
    }

    .news-item {
        gap: 10px;
    }

    .content,
    .meta {
        font-size: 13px;
    }

    .breadcrumb-section {
        height: 100px;
        padding-top: 22px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 20px;
            letter-spacing: .4px;
        }

        .breadcrumb-section .breadcrumb-part {
            padding: 4px 0;
        }

    .hex-stack {
        width: 110px;
        height: 110px;
    }

    .ribbon {
        padding: 8px 14px;
    }

        .ribbon .title h3 {
            font-size: 14px;
        }

    .stb-content h2 {
        font-size: 22px;
    }

    .stb-content h3 {
        font-size: 18px;
    }

    .stb-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .stb-content ul.first-list li {
        font-size: 14px;
        line-height: 1.7;
    }

    .stb-content ul.first-list.scheme-list li {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .pdf-card-header {
        height: 42px;
    }

    .card-header.pdf-card-header img {
        width: 50px;
        margin-top: -20px;
    }

    .card-body.pdfcard-body {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .main-footer {
        padding-top: 30px;
    }

    .footer-links h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-links p,
    .footer-links ul li {
        font-size: 14px;
    }

    .footer-social-links ul li {
        margin-right: 8px;
    }

        .footer-social-links ul li a {
            width: 34px;
            height: 34px;
        }

            .footer-social-links ul li a i {
                font-size: 16px;
            }

    .social {
        width: 44px;
        max-width: 44px;
        height: 44px;
    }

        .social .icon {
            width: 18px;
            margin: 0 8px;
        }

        .social .text {
            font-size: 12px;
        }
}

/* -------- Small mobile -------- */
@media (max-width: 575.98px) {
    .top-bar {
        padding: 4px 0;
    }

    .main-logo .logo-txt h1 {
        font-size: 15px;
    }

    .notice-label {
        font-size: 11px;
    }

    .content-sec {
        padding: 18px 14px;
    }

    .feature-card {
        padding: 22px 16px;
    }

        .feature-card h5 a {
            font-size: 22px;
        }

    .section-spacing {
        padding: 44px 0;
    }

    .breadcrumb-section {
        height: 90px;
        padding-top: 18px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 18px;
        }

    .stb-content-area {
        padding: 18px 14px;
    }

    .vision-mission-sec .vm-box h3 {
        font-size: 18px;
    }

    .btn-default {
        font-size: 15px;
    }
}

/* -------- Very wide tables/sections: allow graceful scroll -------- */
@media (max-width: 991.98px) {
    .table-responsive,
    .org-chart,
    .office-table-wrap {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
}



.global-content p,
.global-content li {
    text-align: justify;
    text-justify: inter-word;
}
/* =========================================================
   END GLOBAL RESPONSIVE PATCH
   ========================================================= */




/* ============================================================
   RESPONSIVE PATCH - COMPLETE WEBSITE RESPONSIVE STYLES
   Copy karo isko apni main CSS ke NEECHE
   ============================================================ */

/* ── Root & Box Model ── */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img, svg, video, canvas, iframe, table {
    max-width: 100%;
    height: auto;
}

/* ── Utility ── */
.table-responsive {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* ============================================================
   BREAKPOINT 1 — Large Tablet / Small Laptop  (max: 1199px)
   ============================================================ */
@media (max-width: 1199.98px) {

    /* Top Bar */
    .top-bar::before {
        width: 75%;
    }

    .top-bar::after {
        width: calc(75% - 10px);
    }

    /* Logo */
    .main-logo img,
    .right-logo img,
    .right-logo img:first-child {
        width: 60px;
    }

    .main-logo .logo-txt h1 {
        font-size: 17px;
    }

    .main-logo .logo-txt span {
        font-size: 13px;
    }

    /* Nav */
    .desktop-menu .nav-item .nav-link {
        font-size: 15px;
        padding: 10px 11px;
    }

    /* Slider */
    .mySlider {
        height: 360px;
    }

    /* Feature cards */
    .feature-card {
        padding: 46px 28px;
    }

        .feature-card h5 a {
            font-size: 28px;
        }

    /* Spacing */
    .section-spacing {
        padding: 80px 0;
    }

    .link-sec {
        padding: 36px 20px;
    }

    /* News */
    .news-viewport {
        height: 450px;
    }

    /* Footer */
    .footer-header {
        gap: 20px;
    }

    .footer-newsletter-form,
    .footer-quick-links {
        margin-left: 0;
        margin-right: 0;
    }

    /* Org chart */
    .level-branch {
        width: 900px;
        min-width: 900px;
    }

    .org-chart {
        overflow-x: auto;
        align-items: flex-start;
    }

    /* Policy */
    .policy-shell {
        padding: 0 32px;
    }

    .policy-head h1 {
        font-size: 30px;
    }

    .policy-body p,
    .policy-body ul li {
        font-size: 17px;
    }

    .policy-body h2 {
        font-size: 23px;
    }

    /* Office */
    .office-hero {
        flex-direction: column;
        padding: 26px 22px;
    }

    .office-hero-card {
        min-width: 100%;
    }

    .office-hero-left h2 {
        font-size: 34px;
    }
}

/* ============================================================
   BREAKPOINT 2 — Tablet  (max: 991px)
   ============================================================ */
@media (max-width: 991.98px) {

    /* ── Top Bar ── */
    .top-bar::before, .top-bar::after {
        display: none;
    }

    .top-left-txt p {
        justify-content: center;
        font-size: 13px;
    }

    .top-right-txt ul.main-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 14px;
    }

        .top-right-txt ul.main-list li.top-list {
            padding-right: 0;
        }

    /* ── Logo Area ── */
    .logo-area.clip-sec::before {
        width: 60%;
    }

    .right-logo {
        justify-content: center;
        margin-top: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ── Slider ── */
    .mySlider {
        height: 300px;
        padding: 10px 6px;
    }

    .slider_bust_left, .slider_bust_right {
        display: none;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
    }

    /* ── Notice Bar ── */
    .notice-label {
        padding: 0 10px;
        font-size: 13px;
    }

    .notice-track {
        gap: 22px;
    }

        .notice-track span::after {
            right: -11px;
        }

    /* ── Member / BG Section ── */
    .member-profile, .bg-sec {
        padding: 36px 0 60px;
    }

    /* ── Content Section ── */
    .content-sec {
        padding: 26px 20px;
        border-radius: 0 0 12px 12px;
    }

        .content-sec h2 {
            font-size: 21px;
        }

        .content-sec p {
            font-size: 15px;
        }

        .content-sec ul li {
            font-size: 14px;
        }

    /* ── Feature Cards ── */
    .feature-wrapper {
        border-radius: 14px;
    }

    .feature-card {
        padding: 28px 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-right: 0;
        border-bottom: 1px solid #dedddd;
    }

        .feature-card:last-child {
            border-bottom: 0;
        }

        .feature-card h5 a {
            font-size: 22px;
        }

    /* ── Info Links ── */
    .link-sec {
        padding: 28px 0;
    }

    .info-box {
        padding: 22px 16px;
        border-radius: 10px;
    }

    /* ── News Section ── */
    .news-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .tabs {
        overflow-x: auto;
        padding-bottom: 4px;
    }

        .tabs .tab:first-child {
            margin: 0;
        }

    .tab {
        white-space: nowrap;
        padding: 8px 26px;
    }

        .tab:before {
            left: 12px;
            right: 12px;
        }

    .controls {
        padding-right: 0;
        align-self: flex-end;
    }

    .news-viewport {
        height: auto;
        max-height: none;
    }

    .news-track,
    .news-track.active {
        position: relative;
        padding-left: 0;
    }

    .news-item {
        flex-direction: column;
        gap: 10px;
        padding: 14px 0;
    }

    .date {
        min-width: auto;
        width: max-content;
    }

        .date:before, .date:after {
            display: none;
        }

    .view-all {
        text-align: center;
    }

        .view-all a {
            margin-right: 0;
            padding-left: 36px;
            padding-right: 36px;
        }

            .view-all a::before {
                left: 16px;
                right: 16px;
            }

    /* ── Breadcrumb ── */
    .breadcrumb-section {
        height: 115px;
        padding-top: 26px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 22px;
        }

        .breadcrumb-section .breadcrumb-part ul {
            gap: 8px;
            flex-wrap: wrap;
            padding: 0 10px;
        }

            .breadcrumb-section .breadcrumb-part ul li {
                font-size: 12px;
            }

    /* ── Org Chart Hex ── */
    .hex-stack {
        width: 120px;
        height: 120px;
    }

    .ribbon {
        position: relative;
        left: auto;
        top: auto;
        min-width: auto;
        display: inline-block;
        margin: 8px auto 0;
    }

    /* ── Sidebar Tabs (stb) ── */
    .stb-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .stb-sidebar, .stb-sidebar-two, .stb-sidebar-three {
        width: 100%;
        position: relative;
        top: 0;
        border-radius: 16px;
    }

    .stb-indicator {
        display: none;
    }

    .stb-tab {
        margin-bottom: 6px;
        border-radius: 10px;
        background: rgba(255,255,255,0.04);
    }

        .stb-tab.active {
            background: #eeecf9;
        }

    .stb-content-area {
        width: 100%;
        padding: 24px 18px;
        border-radius: 14px;
    }

    .stb-content ul.first-list.scheme-list li {
        flex: 0 0 47%;
        margin-right: 3%;
    }

    .vision-mission-sec .vm-box ul {
        min-height: auto;
    }

    .vision-mission-sec .vm-box h3 {
        width: 100%;
        max-width: 220px;
    }

    /* ── Footer ── */
    .main-footer {
        padding-top: 32px;
        border-radius: 14px 14px 0 0;
    }

    .footer-header {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .footer-logo {
        flex-wrap: wrap;
    }

    .footer-newsletter-form .form-group {
        flex-direction: column;
        gap: 10px;
    }

        .footer-newsletter-form .form-group .form-control {
            width: 100%;
        }

        .footer-newsletter-form .form-group .newsletter-btn {
            margin-left: 0;
        }

    /* ── Social Sidebar ── */
    .social-sidebar {
        top: auto;
        left: auto;
        right: 10px;
        bottom: 14px;
        transform: none;
    }

    .social {
        border-radius: 10px;
        margin-bottom: 6px;
    }

    /* ── KYR Form ── */
    .kyr-hero {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 18px;
    }

    .kyr-trust-card {
        min-width: 100%;
    }

    .kyr-form-shell {
        padding: 26px 18px 24px;
    }

    .kyr-hero-left h2 {
        font-size: 26px;
    }

    .kyr-captcha-row {
        flex-wrap: wrap;
    }

    .kyr-captcha-input, .kyr-captcha-box, .kyr-refresh-btn {
        max-width: 100%;
        width: 100%;
    }

    .kyr-refresh-btn {
        height: 54px;
        min-width: 54px;
    }

    .kyr-actions {
        justify-content: stretch;
    }

    .kyr-search-btn {
        width: 100%;
        min-width: 100%;
    }

    /* ── LES Form ── */
    .les-choice-grid {
        grid-template-columns: 1fr;
    }

    .les-actions {
        justify-content: stretch;
    }

    .les-reset-btn, .les-otp-btn {
        width: 100%;
        min-width: 100%;
    }

    /* ── Office Directory ── */
    .office-bg-sec {
        padding: 20px 0 28px;
    }

    .office-hero {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .office-hero-left h2 {
        font-size: 28px;
    }

    .office-table-shell {
        border-radius: 16px;
    }

    .office-table {
        min-width: 940px;
    }

    /* ── Updates Hero ── */
    .updates-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .notice-timeline-item {
        grid-template-columns: 1fr;
    }

    .press-media-top {
        flex-direction: column;
    }

    .press-media-dates {
        text-align: left;
    }

    /* ── Gov Orders ── */
    .gov-orders-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

        .gov-orders-header h2 {
            font-size: 28px;
        }

    .gov-orders-header-right {
        width: 90px;
        height: 90px;
    }

    /* ── Policy ── */
    .policy-page-section {
        padding: 32px 0 48px !important;
    }

    .policy-shell {
        padding: 0 20px;
    }

    .policy-panel {
        padding: 32px 28px;
        border-radius: 18px;
    }

    /* ── Press Gallery ── */
    .press-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Scheme Accordion ── */
    .stb-content .scheme-accordion-toggle {
        font-size: 20px;
        padding: 14px 16px;
    }

    .stb-content .scheme-accordion-panel {
        padding: 0 16px 16px;
    }

    /* ── Misc ── */
    .bg-color {
        height: 18px;
        border-radius: 14px 14px 0 0;
    }

    .table-responsive, .org-chart, .office-table-wrap {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
}

/* ============================================================
   BREAKPOINT 3 — Mobile  (max: 767px)
   ============================================================ */
@media (max-width: 767.98px) {

    /* ── Top Bar ── */
    .top-bar {
        padding: 4px 0;
    }

    .top-left-txt p {
        font-size: 12px;
    }

        .top-left-txt p img {
            width: 13px;
            margin-right: 6px;
        }

    .top-right-txt ul.main-list {
        gap: 6px 10px;
    }

        .top-right-txt ul.main-list li.top-list img {
            width: 18px;
        }

    .flag-icon img {
        width: 22px;
    }

    /* ── Logo ── */
    .logo-area {
        padding: 8px 0;
    }

        .logo-area.clip-sec::before {
            display: none;
        }

    .main-logo {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

        .main-logo img {
            width: 52px;
        }

        .main-logo .logo-txt {
            margin-left: 0;
            margin-top: 8px;
            text-align: center;
        }

            .main-logo .logo-txt h1 {
                font-size: 15px;
                line-height: 1.3;
            }

            .main-logo .logo-txt span {
                font-size: 12px;
            }

    .right-logo img, .right-logo img:first-child {
        width: 50px;
        margin-right: 0;
    }

    /* ── Slider ── */
    .mySlider {
        height: auto;
        padding: 6px 0;
    }

        .mySlider .swiper-slide {
            filter: none;
            opacity: 1;
            padding: 0 6px;
        }

            .mySlider .swiper-slide img {
                border-radius: 12px;
            }

    .swiper-button-prev {
        left: 6px;
    }

    .swiper-button-next {
        right: 6px;
    }

    /* ── Notice ── */
    .notice-label {
        font-size: 11px;
        padding: 0 7px;
    }

    .notice-track {
        gap: 18px;
    }

        .notice-track span::after {
            height: 12px;
            right: -9px;
        }

    /* ── Member Section ── */
    .member-profile, .bg-sec {
        padding: 28px 0 50px;
    }

    .title-heading h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .member-card.card.member-card-two .card-header {
        width: 110px;
        height: 110px;
    }

    .member-card-two.member-card.card .card-body {
        min-height: auto;
    }

    /* ── Buttons ── */
    .btn-default {
        width: 100%;
        text-align: left;
        padding: 12px 52px 12px 22px;
        font-size: 15px;
    }

    /* ── Initiatives ── */
    .initiative-title {
        font-size: 20px;
    }

    .initiative-card {
        padding: 16px 14px;
    }

        .initiative-card h2 {
            font-size: 15px;
        }

    .section-spacing {
        padding: 50px 0;
    }

    .initiatives-section.section-spacing {
        padding-bottom: 80px;
    }

    /* ── Info Boxes ── */
    .link-sec {
        padding: 20px 0;
    }

    .info-box {
        padding: 18px 12px;
        border-radius: 10px;
    }

        .info-box .icon {
            margin-bottom: 14px;
            padding: 10px;
        }

            .info-box .icon img {
                width: 38px;
            }

        .info-box h5 a {
            font-size: 15px;
        }

    /* ── News ── */
    .tab {
        font-size: 13px;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .ctrl-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .news-item {
        gap: 8px;
    }

    .content, .meta {
        font-size: 13px;
    }

    /* ── Breadcrumb ── */
    .breadcrumb-section {
        height: 96px;
        padding-top: 20px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 19px;
            letter-spacing: .3px;
        }

        .breadcrumb-section .breadcrumb-part {
            padding: 3px 0;
        }

    /* ── Hex / Org ── */
    .hex-stack {
        width: 108px;
        height: 108px;
    }

    .ribbon {
        padding: 8px 12px;
    }

        .ribbon .title h3 {
            font-size: 13px;
        }

    /* ── STB Sidebar ── */
    .stb-content h2 {
        font-size: 21px;
    }

    .stb-content h3 {
        font-size: 17px;
    }

    .stb-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .stb-content ul.first-list li {
        font-size: 14px;
    }

    .stb-content ul.first-list.scheme-list li {
        flex: 0 0 100%;
        margin-right: 0;
    }

    /* ── PDF Cards ── */
    .card-header.pdf-card-header {
        height: 40px;
    }

        .card-header.pdf-card-header img {
            width: 48px;
            margin-top: -18px;
        }

    .card-body.pdfcard-body {
        padding-top: 16px;
        padding-bottom: 26px;
    }

    /* ── Footer ── */
    .footer-links h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-links p, .footer-links ul li {
        font-size: 13px;
    }

    .footer-social-links ul li {
        margin-right: 7px;
    }

        .footer-social-links ul li a {
            width: 32px;
            height: 32px;
        }

            .footer-social-links ul li a i {
                font-size: 15px;
            }

    .footer-copyright-text p {
        font-size: 13px;
    }

    /* ── Social Sidebar ── */
    .social {
        width: 42px;
        max-width: 42px;
        height: 42px;
    }

        .social .icon {
            width: 16px;
            margin: 0 7px;
        }

        .social .text {
            font-size: 12px;
        }

    /* ── Office Directory ── */
    .office-hero-left h2 {
        font-size: 24px;
    }

    .office-hero-left p {
        font-size: 14px;
        line-height: 1.7;
    }

    .office-hero-card {
        min-width: 100%;
        padding: 14px 12px;
        border-radius: 14px;
    }

    .office-hero-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
    }

    .office-hero-card strong {
        font-size: 14px;
    }

    .office-hero-card span {
        font-size: 12px;
    }

    .office-table-shell {
        border-radius: 14px;
    }

    .office-table {
        min-width: 820px;
    }

        .office-table thead th, .office-table tr:first-child th {
            font-size: 13px;
            padding: 13px 11px;
        }

        .office-table tbody td, .office-table td {
            font-size: 13px;
            padding: 13px 11px;
        }

    /* ── KYR ── */
    .kyr-hero-left h2 {
        font-size: 22px;
    }

    .kyr-input, .kyr-captcha-box {
        height: 54px;
        border-radius: 14px;
    }

        .kyr-captcha-box span {
            font-size: 18px;
        }

    .kyr-search-btn {
        height: 54px;
        border-radius: 14px;
        font-size: 15px;
    }

    /* ── Updates / Press ── */
    .update-card {
        padding: 16px;
    }

    .update-card-top {
        flex-direction: column;
    }

    .update-date {
        text-align: left;
    }

    .updates-heading h2 {
        font-size: 1.4rem;
    }

    .press-media-body {
        flex-direction: column;
    }

    .notice-content-head {
        flex-direction: column;
    }

    .notice-period {
        white-space: normal;
    }

    /* ── Gov Orders ── */
    .gov-orders-header h2 {
        font-size: 24px;
    }

    .gov-orders-table th, .gov-orders-table td {
        font-size: 13px;
        padding: 8px 10px;
    }

    /* ── Policy ── */
    .policy-page-section {
        padding: 20px 0 32px !important;
    }

    .policy-shell {
        padding: 0 14px;
    }

    .policy-panel {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .policy-head h1 {
        font-size: 24px;
    }

    .policy-body p, .policy-body ul li {
        font-size: 15px;
        line-height: 1.75;
    }

    .policy-body h2 {
        font-size: 20px;
    }

    .policy-body ul {
        margin-left: 22px;
    }

    /* ── Press Gallery ── */
    .press-image-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .press-only-image, .press-doc-tile {
        height: 220px;
    }

    .press-gallery-heading-strip h2 {
        font-size: 22px;
    }

    /* ── Scheme Accordion ── */
    .stb-content .scheme-accordion {
        gap: 10px;
    }

    .stb-content .scheme-accordion-item {
        border-radius: 10px;
    }

    .stb-content .scheme-accordion-toggle {
        font-size: 16px;
        padding: 12px 12px;
    }

    .stb-content .scheme-accordion-panel {
        padding: 0 12px 12px;
    }

    /* ── Vision Mission ── */
    .vision-mission-sec .vm-box h3 {
        font-size: 17px;
    }

        .vision-mission-sec .vm-box h3::before,
        .vision-mission-sec .vm-box h3::after {
            display: none;
        }
}

/* ============================================================
   BREAKPOINT 4 — Small Mobile  (max: 575px)
   ============================================================ */
@media (max-width: 575.98px) {

    .top-bar {
        padding: 4px 0;
    }

    .main-logo .logo-txt h1 {
        font-size: 14px;
    }

    .main-logo img {
        width: 46px;
    }

    .notice-label {
        font-size: 10px;
    }

    /* Feature */
    .feature-card {
        padding: 20px 14px;
    }

        .feature-card h5 a {
            font-size: 20px;
        }

        .feature-card p {
            font-size: 13px;
        }

    .number-txt {
        font-size: 14px;
    }

    /* Spacing */
    .section-spacing {
        padding: 38px 0;
    }

    /* Breadcrumb */
    .breadcrumb-section {
        height: 88px;
        padding-top: 16px;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 17px;
        }

    /* STB */
    .stb-content-area {
        padding: 16px 12px;
    }

    .stb-content h2 {
        font-size: 19px;
    }

    .stb-content h3 {
        font-size: 15px;
    }

    /* Buttons */
    .btn-default {
        font-size: 14px;
        padding: 8px 24px 8px 20px;
        gap:20px;
    }

    /* Member cards */
    .member-card.card.member-card-two .card-header {
        width: 100px;
        height: 100px;
    }

    .member-card.card .card-body .card-title {
        font-size: 14px;
    }

    /* KYR */
    .kyr-input, .kyr-captcha-box {
        height: 50px;
    }

    .kyr-search-btn {
        height: 50px;
    }

    .kyr-form-shell {
        padding: 20px 14px;
    }

    .kyr-hero-left h2 {
        font-size: 20px;
    }

    /* Gov orders */
    .gov-orders-page {
        padding: 14px 10px 28px;
    }

    .gov-orders-header {
        padding: 18px 16px;
    }

        .gov-orders-header h2 {
            font-size: 21px;
        }

    /* Updates */
    .updates-hero {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .updates-hero-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
        border-radius: 18px;
    }

    /* Footer */
    .main-footer {
        padding-top: 26px;
    }

    .bg-color {
        height: 16px;
        border-radius: 12px 12px 0 0;
    }

    /* Scroll watcher hidden on very small */
    .scroll-watcher {
        height: 3px;
    }

    /* Office hero */
    .office-chip {
        font-size: 10px;
        padding: 6px 10px;
    }

    .office-hero-left h2 {
        font-size: 21px;
    }

    /* Press gallery */
    .press-gallery-heading-strip h2 {
        font-size: 19px;
    }

    .press-doc-icon {
        font-size: 50px;
    }

    /* Table */
    .cus-table tr td a {
        font-size: 12px;
    }
}

/* ============================================================
   BREAKPOINT 5 — Extra Small  (max: 375px)
   ============================================================ */
@media (max-width: 375px) {

    .main-logo .logo-txt h1 {
        font-size: 12px;
    }

    .main-logo img {
        width: 40px;
    }

    .breadcrumb-section .main-title h1 {
        font-size: 15px;
    }

    .kyr-hero-left h2 {
        font-size: 18px;
    }

    .stb-content h2 {
        font-size: 17px;
    }

    .feature-card h5 a {
        font-size: 18px;
    }

    .gov-orders-header h2 {
        font-size: 19px;
    }

    .office-hero-left h2 {
        font-size: 19px;
    }

    .policy-head h1 {
        font-size: 21px;
    }

    /* Nav tabs strip */
    .tab {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 12px;
    }

    /* Update cards */
    .update-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .update-title {
        font-size: 1rem;
    }
}

/* ============================================================
   PRINT STYLES (bonus – hides decorative elements)
   ============================================================ */
@media print {
    .top-bar, .desktop-menu, .slider-section, .notice-bar,
    .social-sidebar, .scroll-watcher, .main-footer, .bg-color,
    .swiper-button-prev, .swiper-button-next {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .content-sec, .stb-content-area {
        box-shadow: none !important;
    }
}

/* ============================================================
   GLOBAL CONTENT — Justified Text
   ============================================================ */
.global-content p,
.global-content li {
    text-align: justify;
    text-justify: inter-word;
}

/* ============================================================
   SMOOTH TRANSITION OVERRIDES — Reduce motion for accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-watcher {
        animation: none;
    }
}

/* Mobile navbar toggle button white karo */
.navbar-toggler-icon {
    filter: invert(1) brightness(2);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-logo div {
    margin-right: 16px;
    margin-bottom: 12px;
}

.footer-logo {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

    .footer-logo img {
        max-width: 65px;
        width: 65px;
    }



/* ── btn-default — SINGLE FINAL VERSION ── */
.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, #831218 0%, #ff202c 50%, #d01d1d 100%);
    background-size: 200% auto;
    border-radius: 100px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    padding: 9px 20px;
    transition: background-position 0.4s ease-in-out;
    text-decoration: none;
    width: auto;
}

    .btn-default::after {
        content: '\f0a9';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 16px;
        color: #fff;
        flex-shrink: 0;
    }

    .btn-default::before {
        content: none;
    }

    .btn-default:hover {
        background-position: right center;
        color: #fff;
    }

@media (max-width: 767.98px) {
    .btn-default {
        font-size: 13px;
        padding: 8px 16px;
        gap: 10px;
        width: auto;
    }

        .btn-default::after {
            font-size: 14px;
        }
}

@media (max-width: 575.98px) {
    .btn-default {
        font-size: 12px;
        padding: 7px 14px;
        gap: 8px;
    }
}

@media (max-width: 767.98px) {

    .breadcrumb-section {
        height: auto !important;
        min-height: 120px;
        padding-top: 50px !important; /* navbar height ke baad space */
        padding-bottom: 40px;
        justify-content: flex-start;
    }

        .breadcrumb-section .main-title h1 {
            font-size: 16px !important;
            line-height: 1.4;
            padding: 0 14px;
            word-break: break-word;
            text-align: center;
            margin-bottom: 8px;
        }

        .breadcrumb-section .breadcrumb-part {
            position: relative !important;
            bottom: auto;
            padding: 5px 10px;
        }

            .breadcrumb-section .breadcrumb-part ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 5px;
            }

                .breadcrumb-section .breadcrumb-part ul li {
                    font-size: 11px;
                }
}@media (max-width: 767.98px) {

    .global-content p,
    .global-content li,
    .content-sec p,
    .content-sec li,
    .stb-content p,
    .stb-content li {
        text-align: left !important;
        text-justify: unset !important;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-section {
       padding-bottom:0px!important;
        margin-bottom: 0px !important;
    }
}


@media (max-width: 767.98px) {
    .gov-orders-header {
        flex-direction: row !important;
        align-items: center !important;
    }

    .gov-orders-header-right {
        width: 60px !important;
        height: 60px !important;
    }

        .gov-orders-header-right img {
            width: 40px !important;
            height: 40px !important;
        }
}

.member-profile p,
.member-profile .card-body p {
    text-align: center !important;
    text-justify: unset !important;
}