/* ---------- 1) Core tokens (light mode default) ---------- */
:root{
  /* Brand colors (from supplied doc) */
  --color-primary: #174A7E;    /* primary blue */
  --color-secondary: #4D9FEA;  /* secondary blue */
  --color-accent: #F4B400;     /* accent yellow */

  /* Neutrals */
  --bg: #F2F4F7;       /* page background */
  --card-bg: #FFFFFF;  /* card background */
  --text: #333333;     /* primary text */
  --muted: #666666;    /* secondary text */
  --border: #E5E7EB;

  /* Status */
  --success: #2E7D32;
  --warning: #FB8C00;
  --danger: #C62828;

  /* Elevation / shadows */
  --shadow-sm: 0 1px 3px rgba(16,24,40,0.06);
  --shadow-md: 0 6px 20px rgba(16,24,40,0.08);

  /* Typography */
  --font-family-system: "Inter", "Roboto", Arial, sans-serif;
  --h1-size: 32px;
  --h2-size: 24px;
  --base-size: 16px;
  --radius-base: 8px;

  /* Spacing / layout */
  --container-padding: 1rem;

  --text-size-1rem:1rem;
  --text-size-0_8rem:0.8rem;

}

/* ---------- 2) Dark mode overrides when body.dark-mode present ---------- */
body.theme-dark{
  --bg: #0D1117;        /* page background */
  --card-bg: #161B22;   /* card / surface */
  --text: #E6E6E6;      /* primary text */
  --muted: #A0AAB3;     /* secondary text */
  --border: #2D333B;
  --shadow-sm: none;
  --shadow-md: none;

  /* keep brand readable — adjust if needed */
  --color-primary: #4D9FEA;   /* slightly brighter primary in dark mode */
  --color-secondary: #4D9FEA;
  --color-accent: #F4B400;
  background-color: #000000;
}
body.theme-dark .top_header .top_header_left a,
body.theme-dark .top_header .lang_outter_div,
body.theme-dark .top_header .contrast_outter_div .contrast-trigger,
body.theme-dark .top_header .fontsize_outter_div .fontsize-trigger{
    background-color: #f2f4f7;
}

body.theme-dark .quick_access_section .tiles_heading,
body.theme-dark .quick_access_section  .top_task_div  ul li a,
body.theme-dark .quick_access_section .links_heading,
body.theme-dark .audience_hub_secction .ah_card_heading,
body.theme-dark .top_goverments_links .goverments_heading{
    color: #f2f4f7;
}
body.theme-dark .blog_section h1,
body.theme-dark .blog_section h2,
body.theme-dark .blog_section h3,
body.theme-dark .blog_section h4,
body.theme-dark .blog_section h5,
body.theme-dark .blog_section p,
body.theme-dark .blog_section ul li{
    color: #f2f4f7;
}
body.theme-dark .ah_section h2,
body.theme-dark .ah_section p{
    color: #f2f4f7;
}
body.theme-dark .content .content_list ul li a{
    color:#333333;

}
body.theme-dark .content ul li a{
    color: #f2f4f7;
}
body.theme-dark .links_heading{
    color: #f2f4f7;
}

/* ---------- 3) Respect user's OS preference (first load) ---------- */
@media (prefers-color-scheme: dark) {
  :root:not(.force-light){
    /* apply dark tokens as defaults for users who prefer dark */
    --bg: #0D1117;
    --card-bg: #161B22;
    --text: #E6E6E6;
    --muted: #A0AAB3;
    --border: #2D333B;
    --shadow-sm: none;
    --shadow-md: none;
  }
}

body a{
 font-size: var(--text-size-1rem);
}
html, 
body {
    font-family: "Inter", "Roboto", Arial, sans-serif;
    
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* jitni height bachegi woh lega */
}



/* =================================== Top Header Start ========================== */

.top_header{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2px 0px;
}
.top_header_left{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    gap: 10px;

}
.top_header_left a{
    border: 1px solid #e8eaed;
    text-decoration: none;
    padding: 6px;
    cursor: pointer;
    color: #4a4a4a;
    font-size: 0.8rem;
}
.top_header_left a:hover{
    background: rgba(0,0,0,0.08);
}
.top_header_right{
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 10px;
}
.lang_outter_div{
    border:1px solid #e8eaed;
    position: relative;
    display: inline-block;
}
.lang_outter_div span{
    font-size: 0.8rem;
    font-weight: 400;
}
.lang-trigger {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.49rem;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: background 0.2s;
}
.lang-trigger:hover {
    background: rgba(0,0,0,0.08);
}

.lang-trigger .material-icons {
    font-size: 1rem;
    color: #4a4a4a;
}
/* Dropdown */
.lang-dropdown {
    position: absolute;
    right: 0;
    top: 110%;
    min-width: 100px;
    background: #ffffff;    
    padding: 8px 0;
    box-shadow: 
        0 1px 2px 0 rgba(60, 64, 67, 0.3), 
        0 2px 6px 2px rgba(60, 64, 67, 0.15);   
    display: none;
    z-index: 2000;
    animation: fadeIn 0.18s ease;
}
.lang-item {
    padding: 6px 13px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.lang-item:hover {
    background: #f1f3f4;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-4px);}
    to   {opacity: 1; transform: translateY(0);}
}
.lang-container {
    position: relative;
    display: inline-block;
}




/* Outer div */
.fontsize_outter_div {
    position: relative;
    display: inline-block;
}

/* Button */
.fontsize-trigger {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: background 0.2s;
    border-radius: 50%;
}
.fontsize-trigger:hover {
    background: rgba(0,0,0,0.08);
}


.fontsize-trigger .material-icons {
    font-size: 24px;
    color: #4a4a4a;
}

/* Dropdown */
.fontsize-dropdown {
    position: absolute;
    left: 0;
    top: 110%;
    min-width: 150px;
    background: #ffffff;    
    padding: 8px 0;
    box-shadow: 
        0 1px 2px 0 rgba(60, 64, 67, 0.3), 
        0 2px 6px 2px rgba(60, 64, 67, 0.15);   
    display: none;
    z-index: 2000;
    animation: fadeIn 0.18s ease;
}

.fontsize-item {
    padding: 6px 13px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.fontsize-item:hover {
    background: #f1f3f4;
}

.fontsize_outter_div span{
    font-size: 0.8rem;
}
.fontsize_outter_div .material-icons{
    font-size: 1rem;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-4px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* Example classes for applying contrast and font size */



body.fontsize-small { font-size: 14px !important; }
body.fontsize-medium { font-size: 16px !important; }
body.fontsize-large { font-size: 21px !important; }




/* Outer div */
.contrast_outter_div{
    
    position: relative;
    display: inline-block;
}

/* Button */
.contrast-trigger{
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: background 0.2s;
    border-radius: 50%;
}
.contrast-trigger:hover {
    background: rgba(0,0,0,0.08);
}

.contrast-trigger .material-icons{
    font-size: 1rem;
    color: #4a4a4a;
}

/* Dropdown */
.contrast-dropdown{
    position: absolute;
    left: 0;
    top: 110%;
    min-width: 137px;
    background: #ffffff;    
    padding: 8px 0;
    box-shadow: 
        0 1px 2px 0 rgba(60, 64, 67, 0.3), 
        0 2px 6px 2px rgba(60, 64, 67, 0.15);   
    display: none;
    z-index: 2000;
    animation: fadeIn 0.18s ease;
}

.contrast-item{
    padding: 6px 13px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.contrast-item:hover{
    background: #f1f3f4;
}
.contrast_outter_div span{
    font-size: 0.8rem;
}
.contrast_outter_div .material-icons{
    font-size: 1rem;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-4px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* Example classes for applying contrast and font size */

body.contrast-high { filter: contrast(150%); }
body.contrast-low { filter: contrast(80%); }


@media (max-width: 480px) {
    .top_header{
            display: none;
    }
}


@media (min-width: 481px) and (max-width: 768px) {
    .top_header{
            display: none;
    }
}

@media (min-width: 769px) and (max-width: 991px){
    .top_header{
            display: none;
    }
}


/* =================================== Top Header End ============================ */

/* =============================== Middle Header Start================================ */


.middle_header{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    background-color: #0a2752;
    padding: 7px 2px;
    position: sticky;
    top: 0px;
    z-index: 99;
}
.middle_header_logo_div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-left: 20px;
    width: 100%;
    
}
.middle_header_logo_div h1{
    margin: 0px;
    font-size: 2rem;
    color: #FFFFFF;
}
.middle_header_logo_div .small_heading{
    display: none;
}
.middle_header_logo_div img{
    width: auto;
    height: 80px;
}

.header_municipal_name p{
    margin: 0px;
    color: white;
    font-size: 1.5rem;
}
.middle_header_logo_div .english_name{
    font-size: 2rem;
    font-weight: 600;
}
.middle_header_search_div{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.middle_header_search_div .login_button_large{
    background-color: #F4B400;
    color: #000000;
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
}

.middle_header_search_div .login_button_large:hover{
    background-color:  #DFA706;
}





.search-wrapper {
  position: relative;
  width: 220px;
  height: 2rem;
  transition: width .25s ease;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #ddd;
  padding-left: 36px;
}

.search-wrapper:focus-within {
  width: 400px; /* EXPAND LIKE ANDROID DOCS */
  background: #f5f5f5;
  /* border-color: #aaa; */
  /* box-shadow: 0 2px 8px rgb(0 0 0 / 10%); */
}

.search-wrapper .search-icon {
  position: absolute;
  left: 7px;
  top: 4px;
  pointer-events: none;
}

.search-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
}

.search-wrapper .shortcut-key {
  position: absolute;
  right: 10px;
  font-size: 13px;
  padding: 2px 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #eee;
  color: #666;
  font-family: monospace;
}
.login_button_small{
    display: none;
}
.lang_button_small{
    display: none;
}

/* ------------------------------ */
/*   1. Small Phones (up to 480)  */
/* ------------------------------ */
@media (max-width: 480px) {
    .middle_header_logo_div .small_heading{
        display: flex;
    }
    .middle_header_logo_div .big_heading{
        display: none;
    }
     /* Your styles */
    .login_button_large{
        display: none;
    }
    .login_button_small{
         position: relative;
        display: flex;
        border: none;
    }
    .login_button_small a{
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .login_button_small a span{
        font-size: 1.5rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    .lang_button_small{
        border:1px solid #e8eaed;
        position: relative;
        display: inline-block;
        border-radius: 50%;
    }
    .lang_button_small span{
        font-size: 1.5rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    .lang_trigger_phone {
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.49rem;
        border: none;
        cursor: pointer;
        padding: 0px;
        transition: background 0.2s;
        border-radius: 50%
    }
    .lang_dropdown_phone:hover {
        background: rgba(0,0,0,0.08);
    }

    .lang_dropdown_phone .material-icons {
        font-size: 1rem;
        color: #4a4a4a;
    }
    /* Dropdown */
    .lang_dropdown_phone {
        position: absolute;
        right: 0;
        top: 110%;
        min-width: 100px;
        background: #ffffff;    
        padding: 8px 0;
        box-shadow: 
            0 1px 2px 0 rgba(60, 64, 67, 0.3), 
            0 2px 6px 2px rgba(60, 64, 67, 0.15);   
        display: none;
        z-index: 2000;
        animation: fadeIn 0.18s ease;
    }
    .lang_item_phone {
        padding: 6px 13px;
        cursor: pointer;
        font-size: 0.8rem;
        transition: background 0.2s ease;
    }

    .lang_item_phone:hover {
        background: #f1f3f4;
    }

    /* Animation */
    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(-4px);}
        to   {opacity: 1; transform: translateY(0);}
    }
    .lang-container {
        position: relative;
        display: inline-block;
    }
    .middle_header_logo_div img {
        width: auto;
        height: 3.4rem;
        border-radius: 0%;
    }
    .middle_header_logo_div{
        padding-left: 10px;
        width:100%
    }
    .header_sidebar_button_div span{
        color: white;
    }
    .middle_header_logo_div .english_name {
        font-size: 1rem;
    }
    .header_municipal_name p {
        font-size: 1.2rem;
    }
}

/* ---------------------------------------- */
/*   2. Big Phones (481px to 768px)        */
/* ---------------------------------------- */
@media (min-width: 481px) and (max-width: 768px) {
    .middle_header_logo_div .small_heading{
        display: flex;
    }
    .middle_header_logo_div .big_heading{
        display: none;
    }
    /* Your styles */
    .login_button_large{
        display: none;
    }
    .login_button_small{
         position: relative;
        display: flex;
    }
    .login_button_small a{
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }
    .login_button_small a span{
        font-size: 1.5rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    .lang_button_small{
        border:1px solid #e8eaed;
        position: relative;
        display: inline-block;
        border-radius: 50%;
    }
    .lang_button_small span{
        font-size: 1.5rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    .lang_trigger_phone {
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.49rem;
        border: none;
        cursor: pointer;
        padding: 0px;
        transition: background 0.2s;
        border-radius: 50%
    }
    .lang_dropdown_phone:hover {
        background: rgba(0,0,0,0.08);
    }

    .lang_dropdown_phone .material-icons {
        font-size: 1rem;
        color: #4a4a4a;
    }
    /* Dropdown */
    .lang_dropdown_phone {
        position: absolute;
        right: 0;
        top: 110%;
        min-width: 100px;
        background: #ffffff;    
        padding: 8px 0;
        box-shadow: 
            0 1px 2px 0 rgba(60, 64, 67, 0.3), 
            0 2px 6px 2px rgba(60, 64, 67, 0.15);   
        display: none;
        z-index: 2000;
        animation: fadeIn 0.18s ease;
    }
    .lang_item_phone {
        padding: 6px 13px;
        cursor: pointer;
        font-size: 0.8rem;
        transition: background 0.2s ease;
    }

    .lang_item_phone:hover {
        background: #f1f3f4;
    }

    /* Animation */
    @keyframes fadeIn {
        from {opacity: 0; transform: translateY(-4px);}
        to   {opacity: 1; transform: translateY(0);}
    }
    .lang-container {
        position: relative;
        display: inline-block;
    }
    .middle_header_logo_div img {
        width: auto;
        height: 3.4rem;
        border-radius: 0%;
    }
    .middle_header_logo_div{
        padding-left: 10px;
        width: 100%;
    }
    .header_sidebar_button_div span{
        color: white;
    }
    .middle_header_logo_div .english_name {
        font-size: 1.4rem;
    }

}

        .header_sidebar{
            display: none;
        }
        .header_sidebar_overlay{
            display: none;
        }
        .header_sidebar_outter_div{
            display: none;
        }
        @media (max-width: 480px) {
            .header_sidebar{
                display: flex;
            }
            .header_sidebar_button_div{
                display:flex; 
                align-items: center;
                justify-content: center;
                padding-left:10px;
            }
            .header_sidebar_outter_div{
                display: flex;
                flex-direction: column;
                width: 85%;
                background-color: white;
                height: 100%;
                position: fixed;
                z-index: 999;
                transform: translateX(-101%);
                transition: transform 0.35s ease-in-out;
                overflow: hidden;
                left: 0px;
                bottom: 0px;
                        top: 0px;
            }
            .header_sidebar_overlay{
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.4);
                display: none;
                z-index: 9;
            }
            .hs_top_div{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 20px;
                padding: 10px 15px;
                border-bottom:1px solid #dadce0;
            }
            .hs_top_div_close{
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%
            }
            .hs_top_div_close span{
                font-size: 2rem;
            }
            .hs_top_div_image img{
                width: 40px;
                border-radius: 50%;
            }
            .hs_top_div_name{

            }
            .hs_top_div_name p{
                margin: 0px;
                padding: 0px;
                font-size: 1.5rem;
                font-weight: bold;
                letter-spacing: 4px;
            }
            .hs_bottom_div{
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .hs_link_div{
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 15px 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_link_div p{
                margin: 0px;
                padding: 0px;
                font-size: 1.1rem;
                font-weight:500;
            }
            .hs_link_div a{
                color: #000000;
                 margin: 0px;
                padding: 0px;
                font-size: 1.1rem;
                font-weight:500;
            }
            .hs_link_div span{
                font-size: 30px;
                font-weight: 600;
            }
            .hs_sub_link_panel{
                display: flex;
                flex-direction: column;
                width: 100%;
                background-color: white;
                height: 100%;
                position: absolute;
                z-index: 999;
                transform: translateX(102%);
                transition: transform 0.35s ease-in-out;
            }
            .hs_sub_header{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 15px 20px;
                gap: 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_header p{
                margin: 0px;
                padding: 0px;
                font-size: 1.3rem;
                font-weight: 500;
            } 
            .hs_sub_content{
                height:100%;
                overflow: scroll;
            }  
            .hs_sub_content_ul{
                padding: 0px;
                margin: 0px;
                list-style-type: none;
            }
            .hs_sub_content_li{
                display: flex;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_content_li a{
                text-decoration: none;
                color: #333333;
                padding: 15px 20px;
            }

        }

    @media (min-width: 481px) and (max-width: 768px) {
            .header_sidebar{
                display: flex;
            }
            .header_sidebar_button_div{
                display:flex; 
                align-items: center;
                justify-content: center;
                padding-left:10px;
            }
            .header_sidebar_outter_div{
                display: flex;
                flex-direction: column;
                width: 85%;
                background-color: white;
                height: 100%;
                position: fixed;
                z-index: 999;
                transform: translateX(-101%);
                transition: transform 0.35s ease-in-out;
                overflow: hidden;
                left: 0px;
                bottom: 0px;
                        top: 0px;
            }
            .header_sidebar_overlay{
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.4);
                display: none;
                z-index: 9;
            }
            .hs_top_div{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 20px;
                padding: 10px 15px;
                border-bottom:1px solid #dadce0;
            }
            .hs_top_div_close{
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%
            }
            .hs_top_div_close span{
                font-size: 2rem;
            }
            .hs_top_div_image img{
                width: 40px;
                border-radius: 50%;
            }
            .hs_top_div_name{

            }
            .hs_top_div_name p{
                margin: 0px;
                padding: 0px;
                font-size: 1.5rem;
                font-weight: bold;
                letter-spacing: 4px;
            }
            .hs_bottom_div{
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .hs_link_div{
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 15px 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_link_div p{
                margin: 0px;
                padding: 0px;
                font-size: 1.1rem;
                font-weight:500;
            }
            .hs_link_div span{
                font-size: 30px;
                font-weight: 600;
            }
            .hs_sub_link_panel{
                display: flex;
                flex-direction: column;
                width: 100%;
                background-color: white;
                height: 100%;
                position: absolute;
                z-index: 999;
                transform: translateX(102%);
                transition: transform 0.35s ease-in-out;
            }
            .hs_sub_header{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 15px 20px;
                gap: 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_header p{
                margin: 0px;
                padding: 0px;
                font-size: 1.3rem;
                font-weight: 500;
            } 
            .hs_sub_content{
                height:100%;
                overflow: scroll;
            }  
            .hs_sub_content_ul{
                padding: 0px;
                margin: 0px;
                list-style-type: none;
            }
            .hs_sub_content_li{
                display: flex;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_content_li a{
                text-decoration: none;
                color: #333333;
                padding: 15px 20px;
            }
                .middle_header_logo_div .english_name {
                font-size: 1.4rem;
            }
    }


    @media (min-width: 769px) and (max-width: 991px){
            .header_sidebar{
                display: flex;
            }
            .bottom_header{
                display: none;
            }
            .header_sidebar_button_div{
                display:flex; 
                align-items: center;
                justify-content: center;
                padding-left:10px;
            }
            .header_sidebar_outter_div{
                display: flex;
                flex-direction: column;
                width: 85%;
                background-color: white;
                height: 100%;
                position: fixed;
                z-index: 999;
                transform: translateX(-101%);
                transition: transform 0.35s ease-in-out;
                overflow: hidden;
                left: 0px;
                bottom: 0px;
                        top: 0px;
            }
            .header_sidebar_overlay{
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.4);
                display: none;
                z-index: 9;
            }
            .hs_top_div{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                gap: 20px;
                padding: 10px 15px;
                border-bottom:1px solid #dadce0;
            }
            .hs_top_div_close{
                display: flex;
                align-items: center;
                justify-content: center;
                height: 100%
            }
            .hs_top_div_close span{
                font-size: 2rem;
            }
            .hs_top_div_image img{
                width: 40px;
                border-radius: 50%;
            }
            .hs_top_div_name{

            }
            .hs_top_div_name p{
                margin: 0px;
                padding: 0px;
                font-size: 1.5rem;
                font-weight: bold;
                letter-spacing: 4px;
            }
            .hs_bottom_div{
                display: flex;
                flex-direction: column;
                width: 100%;
            }
            .hs_link_div{
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                padding: 15px 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_link_div p{
                margin: 0px;
                padding: 0px;
                font-size: 1.1rem;
                font-weight:500;
            }
            .hs_link_div span{
                font-size: 30px;
                font-weight: 600;
            }
            .hs_sub_link_panel{
                display: flex;
                flex-direction: column;
                width: 100%;
                background-color: white;
                height: 100%;
                position: absolute;
                z-index: 999;
                transform: translateX(102%);
                transition: transform 0.35s ease-in-out;
            }
            .hs_sub_header{
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 15px 20px;
                gap: 20px;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_header p{
                margin: 0px;
                padding: 0px;
                font-size: 1.5rem;
                font-weight: 500;
            } 
            .hs_sub_content{
                height:100%;
                overflow: scroll;
            }  
            .hs_sub_content_ul{
                padding: 0px;
                margin: 0px;
                list-style-type: none;
            }
            .hs_sub_content_li{
                display: flex;
                border-bottom:1px solid #dadce0;
            }
            .hs_sub_content_li a{
                text-decoration: none;
                color: #333333;
                padding: 15px 20px;
            }
            .header_sidebar_button_div span{
                color: white;
            }

            .middle_header_logo_div .small_heading{
                display: none;
            }
            .middle_header_logo_div .big_heading{
                display: flex;
                font-size: 1.4rem;
            }
            /* Your styles */
            .login_button_large{
                display: none;
            }
            .login_button_small{
                position: relative;
                display: flex;
                display: none;
            }
            .login_button_small a{
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
            }
            .login_button_small a span{
                font-size: 1.5rem;
                font-weight: 100;
                color: white;
                font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
            }
            .lang_button_small{
                border:1px solid #e8eaed;
                position: relative;
                display: inline-block;
                border-radius: 50%;
                display: none;
            }
            .lang_button_small span{
                font-size: 1.5rem;
                font-weight: 100;
                color: white;
                font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
            }
            .lang_trigger_phone {
                background: transparent;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.49rem;
                border: none;
                cursor: pointer;
                padding: 0px;
                transition: background 0.2s;
                border-radius: 50%
            }
            .lang_dropdown_phone:hover {
                background: rgba(0,0,0,0.08);
            }

            .lang_dropdown_phone .material-icons {
                font-size: 1rem;
                color: #4a4a4a;
            }
            /* Dropdown */
            .lang_dropdown_phone {
                position: absolute;
                right: 0;
                top: 110%;
                min-width: 100px;
                background: #ffffff;    
                padding: 8px 0;
                box-shadow: 
                    0 1px 2px 0 rgba(60, 64, 67, 0.3), 
                    0 2px 6px 2px rgba(60, 64, 67, 0.15);   
                display: none;
                z-index: 2000;
                animation: fadeIn 0.18s ease;
            }
            .lang_item_phone {
                padding: 6px 13px;
                cursor: pointer;
                font-size: 0.8rem;
                transition: background 0.2s ease;
            }

            .lang_item_phone:hover {
                background: #f1f3f4;
            }

            /* Animation */
            @keyframes fadeIn {
                from {opacity: 0; transform: translateY(-4px);}
                to   {opacity: 1; transform: translateY(0);}
            }
            .lang-container {
                position: relative;
                display: inline-block;
            }
            .middle_header_logo_div img {
                width: auto;
                height: 3.4rem;
                border-radius: 0%;
            }
            .middle_header_logo_div{
                padding-left: 10px;
                width: 85%;
            }
            .header_sidebar_button_div span{
                color: white;
            }
    }


/* =================================== Middle Header End ============================ */


/* =============================== Navbar Start================================ */

.bottom_header{
    border-bottom:1px solid #dadce0;
    position: sticky;
    top: 98px;
    z-index: 99;
}
.bottom_header .navbar {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F2F4F7;
}

.bottom_header .nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0px;
    padding: 0px;
}

.bottom_header .nav-item {
    position: static;
}

.bottom_header .nav-link {
    padding:0.5rem 0;
    padding-inline: 1.3rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.3s;
    color: #333333;
}

.bottom_header .nav-link:hover {
    background: #4d9fea;
    color: #fff;
}
.bottom_header .nav-item.active > .nav-link{
    background: #4d9fea;
    color: #fff;
}
.bottom_header .nav-link.drop::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

/* ==================== Mega Menu ==================== */
.bottom_header .mega_menu {
    position: absolute;
    top: 100%;
    
    background: #fff;
    box-shadow:
    0 1px 2px 0 rgba(60,64,67,.3),
    0 2px 6px 2px rgba(60,64,67,.15),
    inset 0 4px 6px -4px hsla(210,6%,63%,.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
   
    z-index: 99;
}

.bottom_header .nav-item:hover .mega_menu,
.bottom_header .nav-item.active .mega_menu {
    opacity: 1;
    visibility: visible;
}

.bottom_header .mega_menu h3 {
    color: #174A7E;
    margin-bottom: 20px;
}

.mega_menu_inner_div{
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;

}
.mega_menu_inner_div .mega_menu_ul{
    padding: 0px;
    list-style-type: none;
}
.mega_menu_li{
    display: flex;
}
.mega_menu_li a{
    padding:0.5rem 0;
    padding-inline: 1rem;
    width: 100%;
    text-decoration: none;
    color: #333333;
}
.mega_menu_li a:hover{
    text-decoration: underline;
    text-decoration-color: #F4B400;
}

@media (max-width: 480px) {
    .bottom_header{
        display: none;
    }
}


@media (min-width: 481px) and (max-width: 768px) {
    .bottom_header{
        display: none;
    }
}



 /* ========================= quick_access_section ===============================*/
.quick_access_outter_div{
    display: flex;
    align-items: flex-start;
    gap:20px;
}
.quick_access_tiles{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
}
.quick_access_links{
    width: 30%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px
}
.tiles_heading{
    font-size: 24px;
    font-weight: 700;
    position: relative;
    height: 35px;
    background: none
}
.tiles_heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        #174A7E 0%,       /* solid start */
        rgba(23, 74, 126, 0) 100%  /* fade to transparent */
    );
}
.links_heading{
    font-size: 20px;
    position: relative;
    height: 30px;
    background: none;
}

.links_heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        #174A7E 0%,       /* solid start */
        rgba(23, 74, 126, 0) 100%  /* fade to transparent */
    );
}
.tiles_outter_div{
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 31.9% 31.9% 31.9%;;
}
.tiles{
    border-radius: 7px;
    background-color: #F9FAFB ;
    border: 1px solid #E5E7EB ;
    Padding: 16px  ;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: #333333;
}
.tiles:hover {
    transform: scale(1.01); /* slightly bigger */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* subtle shadow */
    text-decoration: none;
    color: inherit;
}
.tiles span{
    font-size: 50px;
}
.tiles p{
    margin: 0px;
    text-align: center;
    padding-inline: 10px;
    font-weight: bold;
}

.quick_links_select_div{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.select_div{
    width: 100%;
}
.select_div select{
    width: 100%;
    height: 40px;
    border-radius: 7px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    Padding-left: 16px;
    cursor: pointer;
}
.select_div select:focus-visible{
    border: none;
    outline: none;
}
.input_button_div{

}
.input_button_div button{
    background-color: #174A7E;
    color:#FFFFFF;
    border-radius: 6px;
    Padding: 12px 20px;
    border: none;
}
.input_button_div button:hover{
    background-color: #123A63;
}
.top_task_div ul{
}
.top_task_div ul li a{
    color: #333;
    font-size: 16px;
    text-decoration: none;
}
.top_task_div ul li a:hover{
    text-decoration: underline;
    text-decoration-color: #F4B400;
}

@media (max-width: 480px) {
    .quick_access_outter_div{
        flex-direction: column;
        gap: 30px;
    }
    .quick_access_tiles{
        width: 100%;
    }
    .quick_access_links{
        width:100%;
        justify-content: flex-start;
    }
    .tiles_outter_div {
        gap: 1rem;
        grid-template-columns: 30% 30% 30%;
    }
    .tiles{
        padding: 8px;
    }
    .tiles span{
        font-size: 35px;
    }
    .tiles p{
        font-size: 13px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .quick_access_outter_div{
        flex-direction: column;
        gap: 30px;
    }
    .quick_access_tiles{
        width: 100%;
    }
    .quick_access_links{
        width:100%;
        justify-content: flex-start;
    }
    .tiles_outter_div {
        gap: 1rem;
        grid-template-columns: 30% 30% 30%;
    }
    .tiles{
        padding: 8px;
    }
    .tiles span{
        font-size: 35px;
    }
    .tiles p{
        font-size: 13px;
    }
}
@media (min-width: 769px) and (max-width: 991px){
    .quick_access_section .container{
        max-width: 927px;
    }
    .tiles{
        padding: 8px;
    }
    .tiles span{
        font-size: 35px;
    }
    .tiles p{
        font-size: 13px;
    }
}


/* ========================= audience_hub_secction ===============================*/

.audience_hub_secction{
        padding: 40px 0px 40px 0px;
}
.ah_card_outter_div{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap:40px;
}
.ah_card_heading{
    font-size: 24px;
    font-weight: 700;
    position: relative;
    height: 35px;
    background: none;
    width:100%;
}
.ah_card_heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        #174A7E 0%,       /* solid start */
        rgba(23, 74, 126, 0) 100%  /* fade to transparent */
    );
}
.ah_card_div{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:2rem;
    width: 100%;
}
.ah_card{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    color: #333333;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth hover */
    cursor: pointer;
}
.ah_card:hover {
    transform: scale(1.01); /* slightly bigger */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* subtle shadow */
    text-decoration: none;
}

@media (max-width: 480px) {
    .ah_card_div{
        grid-template-columns: auto;
        gap: 1rem;
    }
    .ah_card{
        padding: 9px 10px;
        gap:5px;
    }
    .ah_card p{
        font-size:13px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .ah_card_div{
        grid-template-columns: auto;
        gap: 1rem;
    }
    .ah_card{
        padding: 10px 10px;
    }
    .ah_card p{
        font-size:14px;
    }
}
@media (min-width: 769px) and (max-width: 991px){
    .audience_hub_secction .container {
        max-width: 927px;
    }
}





































/* =======================================Phone search=========================== */

/* =========== DESKTOP =========== */
 .search_button_small{
    display: none;
}

@media (max-width: 480px) {
    .middle_header_search_div{
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        width:40%;
        display: none;
    }

    .search_button_small{
        display: flex;
        position: relative;
        align-items: center;
    }

    .phone-search-box{
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 3px;
        right: 2px;
        background: white;
        box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
        padding: 5px 10px;
        z-index: 999;
        width: calc(100% - 45px);
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out, visibility 0s 0.35s;
        visibility: hidden;
    }

    
    .phone-search-box.active{
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.35s ease-in-out, visibility 0s 0s;
    }
    
    .phone-search-trigger{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }
    .phone-search-trigger span{
        font-size: 1.7rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    
    .phone-search-close{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 0px;
        margin-left: auto;
    }
    .phone-search-close span{
        font-size: 0.8rem;
        font-weight: 400;
    }
    
    #phone_globalSearch{
        flex: 1;
        border: none;
        outline: none;
        padding: 10px;
        font-size: 16px;
        background: #f5f5f5;
        border-radius: 4px;
        margin-right: 10px;
    }
    .phone-search-trigger,
    .phone-search-close {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none; 
    }

}

@media (min-width: 481px) and (max-width: 768px) {

     .middle_header_search_div{
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 40%;
        
    }

    .search_button_small{
        display: flex;
        position: relative;
        align-items: center;
    }

    .phone-search-box{
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 3px;
        right: 2px;
        background: white;
        box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
        padding: 5px 10px;
        z-index: 999;
        width: calc(100% - 45px);
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out, visibility 0s 0.35s;
        visibility: hidden;
    }

    
    .phone-search-box.active{
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.35s ease-in-out, visibility 0s 0s;
    }
    
    .phone-search-trigger{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }
    .phone-search-trigger span{
        font-size: 1.7rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
    
    .phone-search-close{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 0px;
        margin-left: auto;
    }
    .phone-search-close span{
        font-size: 0.8rem;
        font-weight: 400;
    }
    
    #phone_globalSearch{
        flex: 1;
        border: none;
        outline: none;
        padding: 10px;
        font-size: 16px;
        background: #f5f5f5;
        border-radius: 4px;
        margin-right: 10px;
    }
    .phone-search-trigger,
    .phone-search-close {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        user-select: none; 
    }
    
}


@media (min-width: 769px) and (max-width: 991px){
     .middle_header_search_div{
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 20%;
    }

    .search_button_small{
        display: flex;
        position: relative;
        align-items: center;
        display: none;
    }

    .phone-search-box{
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 3px;
        right: 2px;
        background: white;
        box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.1);
        padding: 5px 10px;
        z-index: 999;
        width: calc(100% - 45px);
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out, visibility 0s 0.35s;
        visibility: hidden;
    }

    
    .phone-search-box.active{
        transform: translateX(0);
        visibility: visible;
        transition: transform 0.35s ease-in-out, visibility 0s 0s;
    }
    
    .phone-search-trigger{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
    }
    
    .phone-search-close{
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 0px;
        margin-left: auto;
    }
    .phone-search-close span{
        font-size: 0.8rem;
        font-weight: 400;
    }
    
    #phone_globalSearch{
        flex: 1;
        border: none;
        outline: none;
        padding: 10px;
        font-size: 16px;
        background: #f5f5f5;
        border-radius: 4px;
        margin-right: 10px;
    }
    .phone-search-trigger,
    .phone-search-close {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        -webkit-tap-highlight-color: transparent; 
        touch-action: manipulation; 
        user-select: none; 
    }
    .phone-search-trigger span{
        font-size: 1.7rem;
        font-weight: 100;
        color: white;
        font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    }
}



/* =============================For Slick Slide============================ */


.slick-slide img {
    /* display: block; */
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* =============================For notification Section ============================ */

.important-notice-section .container {
    /* max-width: 75%; */
    margin: 0 auto;
    position: relative;
    padding-bottom: 3rem;
}

.important-notice-inner-div {
    display: flex;
    align-items: stretch;
    position: relative;
    height: 40px;
    overflow: hidden;
    background-color: #EFF6F8;
}

.notice-banner-div {
    background-color: #F1B702;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    z-index: 2;
    white-space: nowrap;
}

.notice-display-div {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 100%;
    top: 0;
    height: 100%;
    animation: scroll 30s linear infinite;
}

.notice-display-div-data {
    white-space: nowrap;
    padding: 0 20px;
    color: #494949;
    display: flex;
    align-items: center;
    height: 100%;
}

.notice-display-div-data:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 60%;
    background: #b8b8b8;
    position: absolute;
    top: 20%;
    right: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive font sizes */
@media screen and (max-width: 768px) {
    .notice-banner-div, .notice-display-div-data {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .important-notice-section .container{
        max-width: 100%;
    }
    .important-notice-inner-div {
        height: 30px;
    }
    .notice-banner-div, .notice-display-div-data {
        font-size: 12px;
    }
    .notice-display-div-data {
        padding: 0 10px;
    }
}



/* ===================================== For  Usefull Goverment links section==============================*/

.top_goverments_links .slide{
    padding-inline: 20px;
}
.top_goverments_links .slick-slide a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 5px 0px;
}
.top_goverments_links .slick-slide a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}
.goverments_heading{
    font-size: 24px;
    font-weight: 700;
    position: relative;
    height: 35px;
    background: none
}
.goverments_heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
        to right,
        #174A7E 0%,       /* solid start */
        rgba(23, 74, 126, 0) 100%  /* fade to transparent */
    );
}
@media (max-width: 480px) {
    .top_goverments_links .slick-slide a img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }
    .top_goverments_links .slide{
        padding-inline: 5px;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .top_goverments_links .slick-slide a img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }
    .top_goverments_links .slide{
        padding-inline: 5px;
    }
}
@media (min-width: 769px) and (max-width: 991px){
    .top_goverments_links .container{
        max-width: 927px;
    }
}
        
/* ===============================For footer=============================== */

.footer_section{
        background-color: #0a2752;
        
    }
    .footer_div{
        display: grid;
        grid-template-columns: 29% 15% 35% 21%;
        padding: 40px 0px;
    }
    .footer_brand_div{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: space-evenly;
    }
    .fb_image_div img{
        border-radius: 0%;
        width: auto;
        height: 100px;
    }
    .fb_name_div h2{
        color: #ffffff;
        font-size: 1.5rem;
    }
    .fb_address_div p{
        color: #ffffff;
    }
    .footer_sitemap_div{
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0px 30px;
    }
    .footer_sitemap_div h3{
        color: #ffffff;
        font-size: 21px;
        margin: 0px;
    }
    .footer_sitemap_div ul{
        padding: 0px;
        text-decoration: none;
    }
    .footer_sitemap_div ul li{
        list-style-type: none;
        margin: 10px 0px;

    }
    .footer_sitemap_div ul li a{
        text-decoration: none;
        color: #ffffff;
    }
    .footer_sitemap_div ul li a:hover{
        text-decoration: underline;
        text-decoration-color: #F4B400;
    }
    .social_links{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer_social_div{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer_social_div .social_links{
        border-radius: 7px;
        background-color: #F9FAFB ;
        border: 1px solid #E5E7EB ;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }
    .social_links i{
        font-weight: 400;
        font-size: 1.2rem;
    }
    .footer_social_div  .social_links:hover {
        transform: scale(1.01); /* slightly bigger */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* subtle shadow */
    }
    .connecting_div{
        display: flex;
    }
    .copy_right{
        text-align: center;
        color: white;
        font-size: 0.8rem;
        margin: 0px;
    }
    @media (min-width: 1400px) {
        .footer_section .container{
            max-width: 1387px;
        }
    }

    @media (max-width: 480px) {
        .footer_div{
            grid-template-columns: auto;
            gap: 20px;
        }
        .footer_sitemap_div{
            padding: 0px 0px;
        }
        .connecting_div {
            gap: 30px;
        }
        .footer_social_div{
            justify-content: space-evenly;
        }
    }
    @media (min-width: 481px) and (max-width: 768px) {
        .footer_div{
            grid-template-columns: auto;
            gap: 20px;
        }
        .footer_sitemap_div{
            padding: 0px 0px;
        }
        .connecting_div {
            gap: 30px;
        }
        .footer_social_div{
            justify-content: space-evenly;
        }
    }
    @media (min-width: 769px) and (max-width: 991px){
        .footer_section .container{
            max-width: 1387px;
        }
        .footer_div{
            grid-template-columns: 29% 16% 31% 24%;
        }
        .footer_sitemap_div{
            padding: 0px 10px;
        }
    }









/* ----------------------------------------------------------------------------- */

    .citizen_section{
        background-color: #E7E7E7;
        padding: 40px 0px 40px 0px;
    }
    .programmes_and_schemes {
        background-color: #E7E7E7;
        padding: 0px 0px 40px 0px;
    }

    .citizen_section_outer_div {
        grid-template-columns: 22% 50% 22%;
        gap: 3%;

    }

    .citizen_services_outer_div {
        display: flex;
        flex-direction: column;
        border-radius: 5px;
    }

    .citizen_services_heading {
        background-color: #ffffff;
        padding: 29px 20px;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        text-align: center;
    }

    .citizen_services_heading h2 {
        font-size: 15px;
    }

    .citizen_services_scroll_outer_div {
        background-color: #0A2752;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .citizen_services_scroll_outer_div ul {
        padding: 10px;
        list-style-type: none;
        margin: 0px;
    }

    .citizen_services_scroll_outer_div ul li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .citizen_services_scroll_outer_div ul li a {

        width: 100%;
        padding: 8px 2px;
        color: #000000;
        background-color: #C4D9F8;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
    }

    .citizen_services_scroll_outer_div ul li a {
        overflow: hidden;
        position: relative;
        display: inline-block;
    }

    .citizen_services_scroll_outer_div ul li a::before,
    .citizen_services_scroll_outer_div ul li a::after {
        content: '';
        position: absolute;
        width: 100%;
        left: 0;
    }

    .citizen_services_scroll_outer_div ul li a::before {
        height: 2px;
        bottom: 0;
        transform-origin: 100% 100%;
        transform: scaleX(0);
        transition: transform .5s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .citizen_services_scroll_outer_div ul li a::after {
        content: attr(data-replace);
        height: 100%;
        top: 0;
        transform-origin: 100% 100%;
        transform: translate3d(200%, 0, 0);
        transition: transform .5s cubic-bezier(0.76, 0, 0.24, 1);
        /* color: #54b3d6; */
        padding: 8px 2px;
    }

    .citizen_services_scroll_outer_div ul li a:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }

    .citizen_services_scroll_outer_div ul li a:hover::after {
        transform: translate3d(0, 0, 0);
    }

    .citizen_services_scroll_outer_div ul li a span {
        display: inline-block;
        transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
        width: 100%;
    }

    .citizen_services_scroll_outer_div ul li a:hover span {
        transform: translate3d(-200%, 0, 0);
    }

    .citizen_notices_outer_div {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        border-radius: 5px;
        padding: 25px 0px 16px 0px;
    }

    .citizen_notices_heading {
        flex-direction: column;
        align-items: flex-start;
        flex-direction: column;
        align-items: flex-start;
        border-left: 7px solid #F4B400;
        padding-left: 1rem;
    }

    .citizen_notices_heading p,
    .citizen_notices_heading h2 {
        margin: 0px;
    }

    .citizen_notices_heading p {
        font-size: 21px;
        line-height: 23px;
        font-weight: 400;
    }

    .citizen_notices_heading h2 {
        font-size: 28px
    }

    .citizen_notices_outter_div {
        margin-top: 10px;
        padding: 0px 23px;
    }

    .citizen_notices_outter_div ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    .citizen_notices_outter_div ul li {
        margin: 10px 0px;
        border-bottom: 1px dashed #5f5f5f;
        padding-bottom: 10px;
    }

    .citizen_notices_outter_div ul li a {
        text-decoration: none;
        color: #000000;
        display: flex;
        gap: 10px;
        width: 100%;
    }

    .citizen_notices_outter_div ul li a .citizen_notices_detail_outter_div {
        gap: 1rem;
    }

    .citizen_notices_outter_div ul li a:hover h6 {
        color: #F4B400;
    }

    .citizen_notices_detail_heading {
        flex-direction: column;
    }

    .citizen_notices_outter_div ul li a h6 {
        font-size: 15px;
        font-weight: 600;
        margin: 0px;
    }

    .citizen_notices_outter_div ul li a .notice_detail_type {
        font-style: italic;
        color: #5f5f5f;
        font-weight: 400;
        margin: 0px;
        font-size: 13px;
    }

    .citizen_notices_know_more_outter_div {
        display: flex;
        align-items: center;
        justify-content: end;
        padding: 0px 22px;
    }

    .citizen_notices_know_more_outter_div button {
        padding: 0px;
        border-radius: 6px;
        border: 1px solid #F4B400;
    }

    .citizen_notices_know_more_outter_div button a {
        background-color: #ffffff;
        text-decoration: none;
        color: #F4B400;
        width: 100%;
        display: block;
        padding: 5px 10px;
        border-radius: 5px;

    }

    .morebtn2::after {
        font-family: FontAwesome;
        content: "\f178";
        display: inline-block;
        padding-left: 8px;
        vertical-align: middle;
        font-size: 15px;
    }

    .citizen_notices_know_more_outter_div button a:hover {
        background-color: #F4B400;
        color: #fff;
        border-radius: 5px
    }

    .citizen_section_leader_outter_div {
        display: flex;
        flex-direction: column;
        background-color: #ffffff;
        border-radius: 5px;

    }

    .citizen_leader_heading {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        padding: 29px 22px 0px 0px;
    }

    .citizen_leader_outter_div {
        display: flex;
        flex-direction: column;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        height: 100%;
    }

    .citizen_leader_heading h2 {
        font-size: 28px;
        border-left: 7px solid #F4B400;
        padding: 10px 0px 10px 10px;
    }

    .citizen_leader {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .citizen_leader img {
        width: 80px;
        /* height: 100%; */
        border-radius: 50%;
    }

    .citizen_leader p {
        margin: 0px;
        margin-bottom: 9px;
        text-align: center;
        line-height: 25px;
    }

    .citizen_leader h5 {
        margin: 0px;
        text-align: center;
        line-height: 25px;
    }


    @media only screen and (max-width: 768px) {
        .citizen_section_outer_div {
            gap: 40px;
            display: flex !important;
            flex-direction: column-reverse;
        }
        .citizen_leader_outter_div {
            gap: 20px;
            padding: 0px 0px 20px 0px;
        }
        .citizen_leader{
            flex-direction: row;
            justify-content: space-evenly;
        }

    }

    @media (min-width: 769px) and (max-width: 991px){
        .citizen_section .container, .citizen_section .container-md, .citizen_section .container-sm {
            max-width: 1020px;
        }
    }

    /* program and schemes */
    .program_and_schemes_outter_div {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .program_and_schemes_inner_div {
        display: grid;
        grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
        gap: 22px;
    }

    .program_and_schemes_card {
        background-color: #ffffff;
        position: relative;
        border-radius: 5px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .program_and_schemes_card_image_div {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .program_and_schemes_card_image_div img {
        width: 100%;
        height: 230px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

    .program_and_schemes_card_detail {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 15px;
    }

    .program_and_schemes_card_detail p {
        color: #636363;
    }

    .program_and_schemes_card_link_div {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 100%;
        height: 100%;
    }

    .program_and_schemes_card_link_div a {
        width: 100%;
        display: block;
        height: 100%;
    }

    .program_and_schemes_card_link_div a img {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 30px;
        height: 30px;
        padding: 10px;
    }

    .program_and_schemes_card_link_div a:hover img {
        background-color: #F4B400;
    }
    @media only screen and (max-width: 768px) {
        .programmes_and_schemes{
          padding-top: 4rem;  
        }
        .program_and_schemes_inner_div{
           grid-template-columns: auto; 
        } 
        
        .program_and_schemes_outter_div h1{
            font-size: 28px;
        }
    }
    .ward_and_image {
        background-color: #E7E7E7;
        padding: 40px 0px 40px 0px;
    }
    .ward_and_image_outer_div {
        grid-template-columns: 48% 48%;
        gap: 4%;
    }

    .ward_map_image {
        border: 1px solid #e3e3e3;
        border-radius: 5px;
        padding: 0px 0px 0px 0px;
    }

    .ward_map_image h2 {
        border-left: 7px solid #f4b400;
        padding: 0px 10px;
    }

    .ward_image_municipal {
        border: 1px solid #e3e3e3;
        padding: 26px 0px 0px 0px;
        border-radius: 5px;
        background-color: white;
    }

    .ward_image_municipal_heading {
        justify-content: space-between;
        border-left: 7px solid #f4b400;
        padding: 0px 10px 0px 9px;
    }

    .ward_image_municipal_heading h2 {
        margin: 0px;
    }

    .ward_image_municipal_heading button {
        padding: 0px;
        border-radius: 6px;
        border: 1px solid #f4b400
    }

    .ward_image_municipal_heading button a {
        background-color: #ffffff;
        text-decoration: none;
        color: #f4b400;
        width: 100%;
        display: block;
        padding: 6px 10px;
        border-radius: 5px;

    }

    .morebtn2::after {
        font-family: FontAwesome;
        content: "\f178";
        display: inline-block;
        padding-left: 8px;
        vertical-align: middle;
        font-size: 15px;
    }

    .ward_image_municipal_heading button a:hover {
        background-color: #f4b400;
        color: #fff;
        border-radius: 5px
    }

    .ward_image_municipal_outter_div {
        display: grid;
        grid-template-columns: 49% 49%;
        gap: 2%;
        padding: 1rem;
    }

    .ward_image_div {
        position: relative;
        width: 100%;
    }

    .ward_image_div a {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .ward_image_overlay {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 999;
        cursor: pointer;
        top: 0px;
    }

    .ward_image_hover_heading {
        position: absolute;
        bottom: 0%;
        left: 0%;
        right: 0%;
        display: none;
        /* Initially hidden */
        opacity: 0;
        /* Fully transparent initially */
        background: rgba(0, 0, 0, 0.7);
        /* Optional for better visibility */
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        transition: opacity 0.3s ease, transform 0.3s ease;

    }





    .ward_image_div img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }



    .ward_image_overlay:hover+.ward_image_hover_heading {
        display: block;
        opacity: 1;
        /* Fully visible */
        /* Optional zoom effect */
    }

    .ward_map_image {
        background-image: url("{% static './images/sujangarh_ward_map.png' %}");
        background-position: center;
        background-size: 93%;
        background-repeat: no-repeat;
        min-height: 363px;
        position: relative;
    }

    .ward_detail {
        position: absolute;
        bottom: 138px;
        right: 77px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
    }

    .ward_detail h2,
    .ward_detail p {
        margin: 0px;
    }

    .ward_detail h2 {
        border-left: 0px;
        font-size: 48px;
        padding: 10px 0px;
        color: #f4b400;;
    }
    .ward_detail p {
        font-size: 30px;
        line-height: 14px;
        color:  #646464;
    }

    .ward_detail_button {
        position: absolute;
        bottom: 30px;
        right: 30px;

    }
    .ward_detail_button button {
    padding: 0px;
    border-radius: 6px;
    border: 1px solid #f4b400;
    }
    .ward_detail_button button a {
        background-color: #ffffff;
        text-decoration: none;
        color: #f4b400;
        width: 100%;
        display: block;
        padding: 5px 10px;
        border-radius: 5px;
    }
    .ward_detail_button button a:hover {
    background-color: #f4b400;
    color: #fff;
    border-radius: 5px;
    }

    @media only screen and (max-width: 768px) {
        .ward_and_image_outer_div{
           grid-template-columns: auto; 
        } 
    }

    @media (min-width: 769px) and (max-width: 991px) {
    .ward_and_image .container, .ward_and_image .container-md, .ward_and_image .container-sm {
        max-width: 1020px;
    }
}

/* ------------------------------------------------------------ */


    .footer-outer-div {
        background-color: #0a2754;
    }

    .footer-inner-div {
        display: flex;
        align-items: flex-start;
        justify-content: space-evenly;
        padding: 2rem 0rem;
        height: 16rem;
    }

    .footer-branding-div {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1.3rem;
        padding-right: 1rem;
        border-right: 2px solid #b8b8b8;
        height: 100%;
        width: 50%;
    }

    @media screen and (min-width: 1135px) {
        .footer-branding-div {

            gap: 4rem;

        }
    }


    .footer-branding-logo-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo-image {
        width: auto;
        height: 80px;
        border-radius: 4px;
    }

    .footer-branding-name-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-branding-name-div,
    h1,
    h3 {
        color: #ffffff;
    }

    .footer-brand-name {
        font-size: 1rem;
        white-space: nowrap;
    }

    .footer-brand-name-small {
        font-size: 0.8rem;
    }

    .footer-branding-address-div {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
    }

    .footer-branding-address-div h1 {
        font-size: 0.9rem;
    }

    .footer-branding-address-div p {
        font-size: 0.9rem;
        padding: 0;
        margin: 0;
        color: white;
    }

    .footer-branding-address-div a {
        color: white;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .footer-branding-address-div-link {
        display: flex;
        flex-direction: column;
    }

    .footer-links-div {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        padding-left: 2rem;

    }

    .footer-links-div-links {
        display: flex;

    }

    .left-side-border {
        border-left: 2px solid #b8b8b8;
        padding-left: 0.5rem;
    }

    .footer-links-div-links a {
        font-size: 0.8rem;
        color: white;
        text-decoration: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-div-links-one-side {
        display: flex;
        flex-direction: column;
        padding-right: 0.5rem;
    }

    .footer-links-div h1 {
        font-size: 0.9rem;
    }

    .footer-links-div-footer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .footer-links-div a:hover {
        color: #ffffff;
    }

    #visitor-count-container {
        text-align: center;
    }

    #visitor-count-label {
        font-size: 18px;
        margin-bottom: 5px;
    }

    #visitor-count {
        background-color: #7b7b7b45;
        color: #fff;
        font-size: 1rem;
        padding: 5px 8px;
        border-radius: 5px;
        display: inline-block;
        font-family: 'Courier New', monospace;
        min-width: 150px;
    }

    .footer-copyright-div {
        background-color: #f5f5f5;
    }

    .footer-copyright-div p {
        color: #000000;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* .footer-outer-div h1, p{
    color: white;
}
.footer-links-div-links a{
    color: white;
} */
@media screen and (max-width: 768px) {
    .footer-inner-div {
        flex-direction: column;
        height: 100%;
    }

    .footer-branding-div {
        flex-direction: column;
        border: none;
        width: 100%;
        align-items: flex-start;
    }

    .footer-branding-logo-div {
        align-items: flex-start;
    }

    .footer-branding-name-div {
        align-items: flex-start;
    }

    .footer-brand-name {
        font-size: 1.4rem;
    }

    .footer-brand-name-small {
        font-size: 0.7rem;
    }

    .footer-branding-address-div {
        width: 100%;
    }

    .footer-links-div {
        padding: 0;
        width: 100%;
        padding-top: 1rem;
    }

    .footer-copyright-div p {
        font-size: 0.5rem;
    }
}

.footer-map {
    height: 100%;
    padding-left: 2rem;
}

.footer-map iframe {
    height: 100%;
}

@media screen and (max-width: 768px) {
    .footer-map {
        padding: 0;
        width: 100%;
        margin-top: 1rem;
    }
}