@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@font-face {
    font-family: 'SolaimanLipi';
    src: url('/fonts/SolaimanLipi.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'SolaimanLipi';
    src: url('/fonts/SolaimanLipi_Bold.ttf') format('truetype');
    font-weight: bold;
}


:root {
    --light-green: #179147c7;
    --light-blue: #709fa99e;
    --ligth-gray: #7078a912;
    --dark-green: #112a00c9;
    --pest: #04AA6D;
    --primary: #016455;
    --bg-primary: #03ab91;
    --text-primary: #2c3e50;
    --text-secondary: #666666;
    --border-radius: 8px;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SolaimanLipi', 'Noto Sans Bengali', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-primary);
}

html {
    scroll-behavior: smooth;
}

.container {
    padding: 0 1%;
    width: 100%;
    align-items: center;

}

.container_front {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.authentication_body {
    width: 50%;
}

.authentication_button {
    width: 50%;
    margin: 0 auto;
}

.authentication_register {
    width: 25%;
    margin: 0 auto;
}

.app-navbar #hamburger_menu_btn {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.menu .menu_container aside#sidebar {
    position: absolute;
    top: 95px;
    left: -100%;
    /* Initially hidden off-screen */
    width: 60%;
    height: auto;
    background: var(--bg-primary);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    .menu .menu_container aside#sidebar {
        position: absolute;
        top: 95px;
        left: -100%;
        /* Initially hidden off-screen */
        width: 100%;
        height: auto;
        background: var(--bg-primary);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }
}


.menu .menu_container aside#sidebar .submenu-wrapper {
    display: none;
}

.menu .menu_container aside#sidebar li:hover .submenu-wrapper {
    display: block;
}

.menu .menu_container aside#sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu .menu_container aside#sidebar li {
    padding: 0.6rem;
    border-bottom: 1px solid #5cdcc9;
}

.menu .menu_container aside#sidebar a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    z-index: 100;
}

.menu .menu_container aside#sidebar .submenu-item .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.menu .menu_container aside#sidebar .submenu-item.active .arrow {
    transform: rotate(90deg);
}

.menu .menu_container aside#sidebar .submenu-item.active .submenu-wrapper {
    display: block;
}

.menu .menu_container aside#sidebar .submenu-wrapper {
    display: none;
}

.menu .menu_container aside#sidebar.active {
    left: 0;
}

img {
    width: 100%;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul {
    list-style: none;
}


.btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #05b79c, var(--bg-primary));
    margin-top: 20px;
    color: #fff;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn:hover {
    background: linear-gradient(135deg, var(--bg-primary), #028a73);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* app-navbar start */
.menu {
    background-color: #00a087;
    position: relative;
}

.menu_container {
    position: relative;
}

.active_menu {
    /* background-color: #0c564b; */
    border-bottom: 2px solid #0c564b !important;
}

nav {
    width: 100%;
    /* height: 100px; */
    /*z-index: 99;*/
    white-space: nowrap;
}

.fixed-nav-bar {
    background-color: #00a087;
}

nav .app-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
}

.app-navbar .logo {
    flex: 0 0 auto;
}

.app-navbar .logo a {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.app-navbar .logo a img {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

@media screen and (max-width: 768px) {
    .app-navbar .logo a img {
        margin-left: 10px;
        width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.app-navbar .logo a h4 {
    font-size: 20px;
}

nav .app-navbar .nav-links {
    line-height: 70px;
    height: 100%;
    flex: 0 0 auto;
    margin-left: auto;
}

nav .app-navbar .links {
    display: flex;
    align-items: center;
}

nav .app-navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .app-navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

nav .app-navbar .links li a:hover {
    border-bottom: 2px solid #0c564b;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .app-navbar .links li .arrow {
    /* background: red; */
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .app-navbar .links li .sub-menu {
    position: absolute;
    top: 73px;
    border-top: 2px solid var(--bg-primary);
    left: 0;
    line-height: 40px;
    background: var(--bg-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
}

nav .app-navbar .links li:hover .htmlCss-sub-menu,
nav .app-navbar .links li:hover .js-sub-menu {
    display: block;
}

.app-navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-navbar .links li .sub-menu a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.app-navbar .links li .sub-menu a:hover {
    padding-left: 2px;
}

.app-navbar .nav-links .sidebar-logo {
    display: none;
}

.app-navbar .bx-menu {
    display: none;
}

/* nav bar end  */

/* news ticker start */
.ticker_container {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.ticker_container marquee {
    background-color: rgba(238, 234, 234, 0.53);
    padding: 10px 32px;
    flex-basis: 87%;
}

.ticker_container h4 {
    background-color: var(--bg-primary);
    padding: 10px 50px;
    color: white;
    font-size: 19px;
    text-align: left;
    font-weight: 600;
}

/* news ticker end */

/* banner section start */
.banner_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.banner {
    margin: 24px 0;
    padding: 0 8px;
}

.banner-col {
    width: 25%;
    min-width: 280px;
}

.banner-col .mayor,
.banner-col .ceo {
    background: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.banner-col .mayor:hover,
.banner-col .ceo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.banner-col h2 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--bg-primary), #028a73);
    color: white;
    padding: 12px 16px;
    font-size: 21px;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-align: center;
}

.banner-col img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 12px;
    border: 3px solid var(--bg-primary);
    transition: all 0.3s ease;
}

.banner-col img:hover {
    transform: scale(1.05);
    border-color: #028a73;
}

.banner_container h4 {
    padding: 8px 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
}

.banner-col p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}


/* .banner_container .dashboard {
  background-color:var(--light-blue) ;

  overflow: hidden;
  margin: 0px auto;

}

.banner_container .dashboard ul li{
  border: 0.5px solid;
  margin-bottom: 10px;
  padding: 5px;
}


.banner_container .dashboard .notice{
  padding: 5px;
} */

.banner_container .slider {
    width: 73%;
    position: relative;

}

.slider .single_slider {
    padding: 5px;
    width: 700px;
    height: 300px;
    position: relative;
    display: block;
}

.slick-slider img {
    width: 100%;
    height: 650px;
}

.slick-slider button {
    position: absolute;
    top: 40%;
    outline: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 35px;
    background-color: #dcd6d6;
    color: black;
    z-index: 99;
}

.slick-slider .slick-prev {
    left: -13px;
    font-size: 0;
}

.slick-slider .slick-prev::before {
    content: '<';
    line-height: 1;
    font-size: 25px;
    /* position: absolute; */
}

.slick-slider .slick-next {
    right: -20px;
    font-size: 0;
}

.slick-slider .slick-next::after {
    content: '>';
    line-height: 1;
    font-size: 25px;
}

.slick-dots {
    padding-top: 10px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    padding: 1px;
    background-color: #ccc;
    margin: 10px 5px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.slick-dots button {
    display: none;
}

.slick-dots li.slick-active {
    background: var(--bg-primary);
}

.slick-slide {
    padding: 40px 0;
    position: relative;
    height: auto !important;
    opacity: 1;
    transition: all 900ms ease;
}

/* notice board */
.notice {
    margin-bottom: 3rem;
    padding: 0 8px;
}

.notice_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.notice_container .notice-col {
    width: calc(50% - 0.75rem);
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    min-height: 420px;
}

.notice_container .notice-col h2 {
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary), #028a73);
    color: white;
    padding: 16px 20px;
    font-size: 21px;
    font-weight: 600;
    border: none;
}

.notice_container .notice-col .dashboard {
    background-color: #f8f9fa;
    height: 280px;
    overflow-y: auto;
    margin: 0;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-primary) #f1f1f1;
}

.notice_container .notice-col .dashboard::-webkit-scrollbar {
    width: 4px;
}

.notice_container .notice-col .dashboard::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notice_container .notice-col .dashboard::-webkit-scrollbar-thumb {
    background: var(--bg-primary);
    border-radius: 2px;
}

.notice_container .notice-col .dashboard ul li {
    border: 1px solid #e0e0e0;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

.notice_container .notice-col .dashboard ul li:hover {
    transform: translateX(3px);
    border-color: var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.notice_container .notice-col .dashboard ul li p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.notice_container .notice-col .dashboard ul li h5 {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.notice_container .dashboard .notice {
    padding: 0;
}


.notice_container .paragraph {
    position: relative;
    padding: 20px;
}

.notice_container .paragraph p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 16px;
}

.notice_container .text .paragraph a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    color: #fff;
    width: 120px;
    text-align: center;
}


/* notice board */

/* about section start */


.about_container .text .image {
    flex-basis: 40%;
}

.about2_container {
    padding: 20px 3% 30px 10%;
}

.about2_container p {
    text-align: justify;
}

.about2_container p span {
    font-size: 19px;
    font-weight: 500;
    text-decoration: underline;
}

/* about section end  */


/* ceo section start */
.ceo_container {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px 0;
    padding: 20px 20px;
}

.ceo_container .image img {
    width: 20%;
}

.ceo_container .image {
    padding: 40px;
    background-color: var(--ligth-gray);
}

.ceo_container .image a {
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: green;
    font-size: 17px;
    font-weight: 600;
}

.ceo_container .image a:hover {
    margin-left: 3px;
}

.ceo_container h2 {
    margin-bottom: 10px;
    border-bottom: 3px solid green;
    border-width: 100%;
    padding-bottom: 10px;
}

/* ceo section end  */


/* officers_container start */

.officers_container {

    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 12px;
}

.officers_container h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.officers_container h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-primary), #028a73);
    border-radius: 2px;
}

.officers_container h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.officers_container h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-primary);
    margin-bottom: 12px;
}

.officers_container .all_officers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 0;
    background: none;
}

.officers_container .all_officers .single_officers {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.officers_container .all_officers .single_officers:hover {
    transform: translateY(-5px);
    border-color: var(--bg-primary);
    box-shadow: 0 8px 24px rgba(3, 171, 145, 0.15);
}

.officers_container .all_officers img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 3px solid var(--bg-primary);
    transition: all 0.3s ease;
}

.officers_container .all_officers .single_officers:hover img {
    transform: scale(1.05);
    border-color: #028a73;
}

.officers_container .all_officers p {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.officers_container .all_officers a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: #38c9b1;
    color: #fff;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.officers_container .all_officers a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #028a73, #026b5c);
    text-decoration: none;
    color: #fff;
}

/* officers_container end  */

/* mayor section start */

.pannel_mayor_container {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 12px;
}

.pannel_mayor_container h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.pannel_mayor_container h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-primary), #028a73);
    border-radius: 2px;
}

.pannel_mayor_container h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-primary);
    margin-bottom: 12px;
}

.pannel_mayor_container .all_mayor {
    /* display: grid; */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 0;
    background: none;
}

.pannel_mayor_container .all_mayor .single_mayor {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 0 12px;
}

.pannel_mayor_container .all_mayor .single_mayor:hover {
    transform: translateY(-5px);
    border-color: var(--bg-primary);
    box-shadow: 0 8px 24px rgba(3, 171, 145, 0.15);
}

.pannel_mayor_container .all_mayor img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid var(--bg-primary);
    transition: all 0.3s ease;
}

.pannel_mayor_container .all_mayor .single_mayor:hover img {
    transform: scale(1.05);
    border-color: #028a73;
}

.pannel_mayor_container .all_mayor p {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pannel_mayor_container .all_mayor a {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--bg-primary), #028a73);
    color: #fff;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.pannel_mayor_container .all_mayor a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #028a73, #026b5c);
    text-decoration: none;
    color: #fff;
}

/* mayor section end  */

/* counselor_container start */
.counselor_container {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px 0;
    padding: 20px 20px;
}

.counselor_container h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.counselor_container .all_counselor {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    background-color: var(--ligth-gray);
}

.counselor_container .all_counselor img {
    width: 30%;
    padding: 10px;
}

.counselor_container .all_counselor a {
    padding: 10px;
    color: green;
    font-size: 17px;
    font-weight: 600;
}

.counselor_container .all_counselor a:hover {
    margin-left: 3px;
}

/* counselor_container end */

/* lady_counselor start */
.lady_counselor_container {
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 30px 0;
    padding: 20px 20px;

}

.lady_counselor_container h2 {
    margin-bottom: 10px;
    padding-bottom: 10px;

}

.lady_counselor_container .all_lady_counselor img {
    width: 30%;
    padding: 10px;
}

.lady_counselor_container .all_lady_counselor {
    display: flex;
    padding: 40px;
    background-color: var(--ligth-gray);
}

.lady_counselor_container .all_lady_counselor a {
    padding: 10px;
    color: green;
    font-size: 17px;
    font-weight: 600;
}

.lady_counselor_container .all_lady_counselor a:hover {
    margin-left: 3px;
}

/* lady_counselor end */


/* social activity start */

.social_activity_container {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 12px;
}

.social_activity_container h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.social_activity_container h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-primary), #028a73);
    border-radius: 2px;
}

.social_activity_container .all_social_activity {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0;
    background: none;
}

.social_activity_container .all_social_activity .single_social_activity {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social_activity_container .all_social_activity .single_social_activity:hover {
    transform: translateY(-5px);
    border-color: var(--bg-primary);
    box-shadow: 0 8px 24px rgba(3, 171, 145, 0.15);
}

.social_activity_container .all_social_activity img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.social_activity_container .all_social_activity .single_social_activity:hover img {
    transform: scale(1.1);
}

.social_activity_container .all_social_activity a {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social_activity_container .all_social_activity a:hover {
    color: var(--bg-primary);
    transform: translateY(-1px);
    text-decoration: none;
}

/* social activity end */

/* section start */
.common_container {

    padding: 50px 10%;
    text-align: center;

}

.common_container h2 {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pest);
    font-size: 24px;
    font-weight: 600;
}

.common_container .image img {
    padding-top: 20px;
    width: 30%;
    padding-bottom: 20px;
    margin: 0 auto;
}

.common_container .image h4 {
    font-size: 17px;
    font-weight: 600;
}

/* section end  */

/* table section start */

.all_officers_container {
    padding: 30px 5%;
}

#customers {
    border-collapse: collapse;
    width: 100%;
}

#customers td,
#customers th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

#customers tr:nth-child(even) {
    background-color: #f2f2f2;
}

#customers tr:hover {
    background-color: #ddd;
}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: var(--pest);
    color: white;
}

#customers td:nth-child(2) {
    text-align: left;
}

#customers img {
    width: 120px;
}

/* table section end */

/* mayor */
.all_counselor_container {
    padding: 50px 10%;
}

.all_counselor_container h2 {

    border-bottom: 2px solid var(--pest);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
}

/* mayor */

/* citizen */


.citizen_container h2 {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid var(--dark-green);
    font-size: 24px;
    font-weight: 600;
}

.citizen_table_container {
    padding-bottom: 40px;
}

.citizen_table_container h3 {
    text-align: center;
    padding: 20px;
    color: var(--pest);
    font-size: 21px;
    font-weight: 600;
}

.citizen_table_container table,
td,
th {
    border: 1px solid black;
}

.citizen_table_container table {
    border-collapse: collapse;
    width: 100%;
}

.citizen_table_container td {
    text-align: center;
}

/* citizen */

/* commitee */

.committee_container h2 {
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid var(--dark-green);
    font-size: 24px;
    font-weight: 600;
}

.committee_table_container {
    padding-bottom: 40px;
}

.committee_table_container h3 {
    text-align: center;
    padding: 20px;
    color: var(--pest);
    font-size: 21px;
    font-weight: 600;
}

.committee_table_container table,
td,
th {
    border: 1px solid black;
}

.committee_table_container table {
    border-collapse: collapse;
    width: 100%;
}

.committee_table_container td {
    text-align: center;
}

/* commitee */
/* buttons */
.button_container {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    column-gap: 25px;
    row-gap: 40px;
    padding-bottom: 20px;
}

.button_container h3 {
    padding: 5px 10px;
    background-color: var(--pest);
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
}

.button_container .buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.single_icon {
    background-color: #0bbb7a;
}

.button_container .buttons .single_btn {
    background-color: #54a936;
    text-align: center;
    color: white;
    padding: 5px;
    border-radius: 2px;
}

.button_container .buttons .single_btn:hover {
    background-color: #72a160;
    font-weight: bold;
}

/* buttons */
/* footer section start */
.footer_container .row {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    background-color: var(--primary);
    padding: 50px 0;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 21px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: var(--primary);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li a {
    font-size: 17px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    padding-left: 8px;
}

/* footer section end */

/* bottom footer section  */
.bottom_footer {
    background-color: #95b3a8;
    padding: 10px 0;
    text-align: center;
}

.bottom_footer a {
    color: blue;
}

table#municipalityOverview tr td,
table#municipalityOverview tr th {
    text-align: left;
    padding: 2px 10px;
    border: 1px solid #e3e2e2;
}

table#developmentActivity tr td,
table#developmentActivity tr th {
    padding: 2px 10px;
    border: 1px solid #999;
}

table#developmentActivity tr td:nth-child(2) {
    text-align: left;
}

/* Nagorik Image */
.application_img .nagorik_img {
    width: 200px;
    height: 200px;
    border: 2px solid #999;
    border-radius: 3%;
    overflow: hidden;
    display: inline-block;
    padding: 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.application_img .nagorik_img img {
    width: 100%;
    height: 100%;
    border-radius: 3%;
    display: block;
    object-position: center center;
}

/* bottom footer section  */


/* =================== responsive 920 px  start =================== */
@media (max-width: 920px) {
    .authentication_body {
        width: 70%;
    }

    .authentication_button {
        width: 70%;
    }

    .authentication_register {
        width: 50%;
    }
}

@media (max-width: 768px) {
    nav {
        width: 100%;
        padding: 10px 0 10px 0;
    }

    nav .app-navbar {
        width: 100%;
        align-items: center;
        margin: auto;
    }

    .app-navbar .logo {
        display: flex;
        justify-content: space-between;
    }

    .app-navbar .logo a img {
        width: 75px;
    }

    .app-navbar .logo a .logo-title {
        display: flex;
        justify-content: space-between;
    }

    .app-navbar .logo a .title {
        font-size: 21px;
        margin: 20px 0 0 20px;
    }

    nav .app-navbar {
        max-width: 100%;
        padding: 0 25px;
        justify-content: flex-start;
    }

    nav .app-navbar .links li .sub-menu {
        top: 50px;
    }

    nav .app-navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .app-navbar .links li a {
        font-size: 16px;
    }

    .banner_container {
        flex-direction: column;
        gap: 1rem;
    }

    .banner_container .slider {
        width: 100%;
        order: 1;
    }

    .slider .single_slider {
        width: 100%;
        height: 280px;
    }

    .banner_container .banner-col {
        width: 100%;
        min-width: auto;
        order: 2;
    }

    .banner-col .mayor,
    .banner-col .ceo {
        margin-bottom: 16px;
        padding: 16px;
    }

    .banner-col img {
        width: 120px;
        height: 120px;
    }

    .footer_container .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        width: 50%;
        padding-top: 10px;
    }

    .authentication_body {
        width: 75%;
    }

    .authentication_button {
        width: 75%;
    }

    .authentication_register {
        width: 50%;
    }
}


@media (max-width: 768px) {

    /* nav{
       position: relative;
    } */
    .app-navbar .bx-menu {
        display: block;
    }

    nav .app-navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: var(--primary);
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    nav .app-navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }


    nav .app-navbar .links li:hover .htmlCss-sub-menu,
    nav .app-navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .app-navbar .nav-links.show1 .links .htmlcss-arrow,
    .app-navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .app-navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 370px) {
    nav .app-navbar .nav-links {
        max-width: 100%;
    }

    .container_front {
        padding: 0 4px;
    }

    .social_activity_container .all_social_activity {
        grid-template-columns: 1fr;
    }

    .officers_container h2,
    .pannel_mayor_container h2,
    .social_activity_container h2 {
        font-size: 22px;
    }

    .banner-col h2 {
        font-size: 18px;
        padding: 10px 12px;
    }

    .notice_container .notice-col h2 {
        font-size: 18px;
        padding: 12px 16px;
    }

    .authentication_body {
        width: 100%;
    }

    .authentication_button {
        width: 100%;
    }

    .authentication_register {
        width: 100%;
    }
}

@media (min-width: 768px) {}

/* For small devices: Change to 1 column */
@media (max-width: 768px) {
    .notice {
        margin-bottom: 2rem;
        padding: 0 4px;
    }

    .notice_container {
        flex-direction: column;
        gap: 1rem;
    }

    .notice_container .notice-col {
        width: 100%;
        min-height: auto;
        margin-bottom: 20px;
    }

    .notice_container .notice-col .dashboard {
        height: 220px;
    }

    .ceo_container .image img {
        width: 100%;
        object-fit: cover;
    }

    .officers_container {
        padding: 0 8px;
        margin: 32px 0;
    }

    .officers_container h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .officers_container .all_officers {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .officers_container .all_officers .single_officers {
        padding: 20px 16px;
    }

    .officers_container .all_officers img {
        width: 140px;
        height: 140px;
    }

    .pannel_mayor_container {
        padding: 0 8px;
        margin: 32px 0;
    }

    .pannel_mayor_container h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .pannel_mayor_container .all_mayor {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pannel_mayor_container .all_mayor .single_mayor {
        padding: 20px 16px;
    }

    .pannel_mayor_container .all_mayor img {
        width: 140px;
        height: 140px;
    }

    .counselor_container .all_counselor img {
        width: 100%;
    }

    .social_activity_container {
        padding: 0 8px;
        margin: 32px 0;
    }

    .social_activity_container h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .social_activity_container .all_social_activity {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social_activity_container .all_social_activity .single_social_activity {
        padding: 16px 12px;
    }

    .social_activity_container .all_social_activity img {
        width: 48px;
        height: 48px;
    }

    .social_activity_container .all_social_activity a {
        font-size: 15px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-col {
        width: 100%;
        padding: 0 15px;
    }

    .footer-col h4 {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-col ul li a:hover {
        padding-left: 5px;
    }

    .bottom_footer {
        padding: 5px 0;
    }

    .button_container h3 {
        font-size: 19px;
    }

    .button_container .buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .button_container .buttons .single_btn {
        padding: 5px;
    }

    .button_container .buttons .single_btn:hover {
        font-weight: bold;
    }

    .footer_container .row {
        display: block;
    }

    .footer-col {
        width: 100%;
        padding-top: 10px;
    }

    .app-navbar .bx-menu {
        display: block;
    }

    nav .app-navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: var(--light-green);
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .app-navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo i,
    .app-navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .app-navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .app-navbar .links li .arrow {
        line-height: 40px;
    }

    nav .app-navbar .links li {
        display: block;
    }

    nav .app-navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .app-navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    nav .app-navbar .links li:hover .htmlCss-sub-menu,
    nav .app-navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .app-navbar .nav-links.show1 .links .htmlcss-arrow,
    .app-navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .app-navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    nav .app-navbar .nav-links {
        max-width: 100%;
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .app-navbar .nav-links.show1 .links .htmlcss-arrow,
    .app-navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .app-navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .app-navbar .nav-links.show1 .links .htmlcss-arrow,
    .app-navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .app-navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .app-navbar .nav-links.show1 .links .htmlcss-arrow,
    .app-navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .app-navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }

    .app-navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .app-navbar .nav-links.show3 .links .js-sub-menu {
        display: block;
    }

    .banner_container .slider {
        width: 100%;
    }

    .banner_container .slider img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

}
