/* Breadcrumb Area */
.breadcrumb_area {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.breadcrumb_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 90, 128, 0.75);
    /* Theme blue with opacity */
    z-index: -1;
}

.breadcrumb_content h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.breadcrumb_content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    background: rgb(0 44 73 / 57%);
    padding: 10px 25px;
    border-radius: 10px;
}

.breadcrumb_content ul li {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb_content ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb_content ul li a:hover {
    color: #ffd700;
}

.breadcrumb_content ul li i {
    margin: 0 10px;
    font-size: 14px;
}

/* About Inner Section */
.about_inner_area {
    background-color: #f7f9fb;
}

.section_padding {
    padding: 40px 0;
}

/* Sidebar Tabs */
.sidebar_tabs {
    background: #008ebc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.sidebar_tabs h3{
    color:#fff;
}
.sidebar_tabs .nav-pills .nav-link {
     background-color: #f8f9fa; 
     border:1px solid #0d8bbf;
    color: #0d8bbf; 
    padding-left: 25px;
    margin-bottom: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar_tabs .nav-pills .nav-link:last-child {
    margin-bottom: 0;
}

.sidebar_tabs .nav-pills .nav-link:hover {
 background-color: #0d8bbf;
    color: #ffffff;
    border-color: #fff;
    box-shadow: 0 4px 10px rgba(13, 139, 191, 0.3);
}

/*.sidebar_tabs .nav-pills .nav-link.active {*/
/*    background-color: #0d8bbf;*/
/*    color: #ffffff;*/
/*    border-color: #0d8bbf;*/
/*    box-shadow: 0 4px 10px rgba(13, 139, 191, 0.3);*/
/*}*/

/*.sidebar_tabs .nav-pills .nav-link.active::after {*/
/*    content: '\ea6a';*/
    /* icofont-simple-right */
/*    font-family: 'IcoFont';*/
/*    position: absolute;*/
/*    right: 15px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*}*/

@media (max-width: 767px) {
    .sidebar_tabs .nav-pills .nav-link.active::after {
        display: none;
    }
  .other_tab_content{
       padding:15px !important; 
    }
    .other_wrapper h3{
        font-size: 20px !important;
    }
}

/* Tab Content */
.sidebar_tab_content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-height: 100%;
}
.sidebar_tab_content strong{
    color:#0d8bbf;
}
.content_wrapper h3 {
    color: #0d8bbf;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.content_wrapper h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 60px;
    background-color: #0d8bbf;
}

.content_wrapper p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content_wrapper ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.content_wrapper ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555555;
    line-height: 1.6;
}

.content_wrapper ul li::before {
    content: '\ea6a';
    /* icofont-simple-right */
    font-family: 'IcoFont';
    position: absolute;
    left: 0;
    top: 2px;
    color: #0d8bbf;
    font-size: 14px;
}

/* Dark Mode Support from Index */
body.dark-mode .about_inner_area {
    background-color: #1a1a1a;
}

body.dark-mode .sidebar_tabs,
body.dark-mode .sidebar_tab_content {
    background-color: #2a2a2a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .sidebar_tabs .nav-pills .nav-link {
    color: #f5f5f5;
    border-color: #444;
   background:#444;
}
body.dark-mode .employee-card {
    background:#444;
}
body.dark-mode .sidebar_tabs .nav-pills .nav-link:hover {
    background-color: #333;
}

body.dark-mode .content_wrapper h3 {
    border-bottom-color: #444;
}

body.dark-mode .content_wrapper p,
body.dark-mode .content_wrapper ul li {
    color: #dddddd;
}

body.dark-mode .table {
    color: #f5f5f5;
}

body.dark-mode .table-bordered td,
body.dark-mode .table-bordered th {
    border-color: #444;
}

body.dark-mode .table-primary th {
    background-color: #0d8bbf;
    color: #fff;
    border-color: #0d8bbf;
}

body.dark-mode .card {
    background-color: #333;
}

body.dark-mode .card-title {
    color: #f5f5f5;
}
/*home page*/
body.dark-mode .news-content p{
    color:#fff;
}
body.dark-mode h2 {
    color: #fff;
}
body.dark-mode .single_test{
    background: #000;
}
 body.dark-mode .test_text a
 {
     color: #fff;
 }
 body.dark-mode .footer_icon a i{
     color:#fff;
 }
  body.dark-mode  .info-box {
          background: #302f2f9e;
  }
  body.dark-mode   .notification_table a{
      color: #fff;
  }
  body.dark-mode .inner_main_nav_area ul li .sub_menu {

      background-color: #040404;
  }
 body.dark-mode  .inner_main_nav_area ul li .sub_menu li a {
           color: #fff;
 }
 body.dark-mode  .other_wrapper a{
     color:#fff;
 }
body.dark-mode h4{
    color: #fff;
}
body.dark-mode .service_btn a {
    color: #fff;
}
body.dark-mode .ab_text h4 a{
    color: #fff;
}
body.dark-mode .bg-white{
    background: #000 !important;
}
/* Footer Dark Mode */
body.dark-mode .footer_area {
    position: relative;
}


body.dark-mode .footer_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.85) !important;
    z-index: 0;
}

body.dark-mode .footer_area>.container,
body.dark-mode .footer_area>.footer_border {
    position: relative;
    z-index: 1;
}

body.dark-mode .subscrib_area {
    border-bottom: 1px solid #333 !important;
}

body.dark-mode .subscrib_area .sub_text h2,
body.dark-mode .sub_text h2 span {
    color: #f5f5f5 !important;
}

body.dark-mode .footer_item1 h2,
body.dark-mode .widged h2,
body.dark-mode .footer_item1 h2 span,
body.dark-mode .widged h2 span {
    color: #ffffff !important;
}

body.dark-mode .footer_item1 p,
body.dark-mode .widged p,
body.dark-mode .widged ul li a,
body.dark-mode .widged ul li p,
body.dark-mode .widged ul li p b span {
    color: #cccccc !important;
}

body.dark-mode .widged ul li a:hover {
    color: #0d8bbf !important;
}

body.dark-mode .footer_icon a {
    background: #333 !important;
    color: #fff !important;
    border: 1px solid #444;
}

body.dark-mode .footer_icon a:hover {
    background: #0d8bbf !important;
    border-color: #0d8bbf;
}

body.dark-mode .footer_border {
    border-top: 1px solid #333 !important;
    background-color: transparent !important;
}

body.dark-mode .copyright p {
    color: #aaaaaa !important;
}

/*director page css*/
/* Director Section Styling */
.director_desk_details {
    padding-top: 80px;
    background-color: #f8faff;
    transition: background-color 0.3s ease;
}

.director_page_img img {
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.director_page_img img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.director_page_content h2 {
    color: #042857;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.director_page_content .uppercase-spacing {
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

.director_meta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

/* Dark Mode Support for Director's Desk */
body.dark-mode .director_desk_details {
    background-color: #1a1a1a;
}

body.dark-mode .director_page_content h2 {
    color: #33b1d3;
}

body.dark-mode .director_page_content h4 {
    color: #aaa;
}

body.dark-mode .director_meta p {
    color: #ccc;
}

body.dark-mode .director_page_img img {
    border: 10px solid #2d2d2d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body.dark-mode .brief_info_card {
    background: #252525;
    color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .brief_info_card h3 {
    color: #33b1d3;
    border-bottom-color: #444;
}

body.dark-mode .brief_text p {
    color: #bbb;
}

body.dark-mode .brief_text p::first-letter {
    color: #33b1d3;
}

/* Button Styling (Premium Look) */
.download_btn_area .s_btn2 {
    background: linear-gradient(135deg, #042857 0%, #0e408a 100%);
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(14, 64, 138, 0.2);
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.download_btn_area .s_btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(14, 64, 138, 0.3);
    background: #33b1d3;
    color: #fff !important;
}

/* Brief Information Card */
.brief_info_card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    border-left: 10px solid #0e408a;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brief_info_card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

.brief_info_card h3 {
    color: #042857;
    font-weight: 700;
    position: relative;
    transition: color 0.3s ease;
}

.brief_text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    text-align: justify;
    transition: color 0.3s ease;
}

.brief_text p::first-letter {
    font-size: 1.3em;
    font-weight: bold;
    color: #0e408a;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .director_page_img {
        margin-bottom: 40px;
        text-align: center;
    }
    .director_page_content {
        text-align: center;
    }
    .download_btn_area {
        justify-content: center;
        display: flex;
    }
    .brief_info_card {
        padding: 30px !important;
    }
}


/*other inner pages  css*/
/* Sidebar Tabs */
.other_tabs {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
        box-shadow: 0 5px 20px rgb(0 0 0 / 26%);
    border-left: 5px solid #008ebc;
    
}
.other_wrapper strong{
    color:#008ebc;
}

.other_tabs .nav-pills .nav-link {
    color: #161616;
    background-color: transparent;
    border: 1px solid #e9ecef;
    margin-bottom: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.other_tabs .nav-pills .nav-link:last-child {
    margin-bottom: 0;
}

.other_tabs .nav-pills .nav-link:hover {
    background-color: #f8f9fa;
    border-color: #0d8bbf;
    color: #0d8bbf;
    padding-left: 25px;
}

.other_tabs .nav-pills .nav-link.active {
    background-color: #0d8bbf;
    color: #ffffff;
    border-color: #0d8bbf;
    box-shadow: 0 4px 10px rgba(13, 139, 191, 0.3);
}

.other .nav-pills .nav-link.active::after {
    content: '\ea6a';
    /* icofont-simple-right */
    font-family: 'IcoFont';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .other .nav-pills .nav-link.active::after {
        display: none;
    }
}
.other_wrapper a{
        text-decoration: underline;
    color: #051f46;
}
/* Tab Content */
.other_tab_content {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    min-height: 100%;
}

.other_wrapper h3 {
    color: #0d8bbf;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-top: 15px;
}

.other_wrapper h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 2px;
    width: 60px;
    background-color: #0d8bbf;
}

.other_wrapper p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.other_wrapper ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.other_wrapper ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555555;
    line-height: 1.6;
}

.other_wrapper ul li::before {
    content: '\ea6a';
    /* icofont-simple-right */
    font-family: 'IcoFont';
    position: absolute;
    left: 0;
    top: 2px;
    color: #0d8bbf;
    font-size: 14px;
}

/* Dark Mode Support from Index */
body.dark-mode .other_inner_area {
    background-color: #1a1a1a;
}

body.dark-mode .other_tabs,
body.dark-mode .other_tab_content {
    background-color: #2a2a2a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .other_tabs .nav-pills .nav-link {
    color: #f5f5f5;
    border-color: #444;
}

body.dark-mode .other_tabs .nav-pills .nav-link:hover {
    background-color: #333;
}

body.dark-mode .other_wrapper h3 {
    border-bottom-color: #444;
}

body.dark-mode .other_wrapper p,
body.dark-mode .other_wrapper ul li {
    color: #dddddd;
}

body.dark-mode .table {
    color: #f5f5f5;
}

body.dark-mode .table-bordered td,
body.dark-mode .table-bordered th {
    border-color: #444;
    color: #fff;
}
body.dark-mode .council_card{
    background: #000;
}
body.dark-mode .council_card h5 {
    color: #008ebc;
}
body.dark-mode .table-primary th {
    background-color: #0d8bbf;
    color: #fff;
    border-color: #0d8bbf;
}

body.dark-mode .card {
    background-color: #333;
}

body.dark-mode .card-title {
    color: #f5f5f5;
}