html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "DM Sans", sans-serif;
    src: url(/assets/fonts/DM_Sans/static/DMSans-Bold.ttf) format('ttf');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Inter", sans-serif;
    src: url(/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf) format('ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Open Sans", sans-serif;
    src: url(/assets/fonts/OpenSans-Regular.ttf) format('ttf');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* ===== Brand Colors ===== */
    --primary: #162f6a;
    --primary-dark: #214AAB;
    --accent: #5279d7;
    --over-yellow: #ffc107;
    /* ===== Neutral Palette ===== */
    --bg-light: #a3bbf3;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #D2Dfff;
    --light-grey-blue: #e2e4e8;
    /* ===== Typography ===== */
    --font-primary: "Inter", sans-serif;
    --font-secondry: "DM Sans", sans-serif;
    --font-text: "Open Sans", sans-serif;
}

body {
    top: 0px !important;
    font-family: var(--font-text);
}

p {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: justify;
}

a {
    text-decoration: none;
    transform: 2s all linear;
   
}

a:hover {
    color: var(--accent);
    transform: 2s all linear;
}

h1, h2, h3, h4, h5,h6{
    font-family: var(--font-primary);
    font-weight: 600;
}
/* header */

.top-bar {
    background-color: var(--primary);
}
.container
{
    max-width: 1300px;
}
/* blue bar */
.wd-search-container {
    width: 300px;
    margin: 0px auto;
    position: relative;
}

#wdSearchInput {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.wd-results {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.wd-item {
    padding: 10px;
    cursor: pointer;
}

.wd-item:hover {
    background: #f2f2f2;
}
/* ================= TOP BAR ================= */

.top-bar-content {
    justify-content: space-between;
}

.top-bar a {
    font-size: 14px;
    font-weight: 500;
}

.sj-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.site-name h1 {
    font-family: var(--font-secondry);
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}

.site-name h4 {
    font-family: var(--font-secondry);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.title-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.title-center img {
    display: block;
    margin: 5px auto 0;
}

.divider-bottom {
    padding-bottom: 30px;
}


/* Keep responsive safe */

@media (max-width: 768px) {
    .title-center {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }
    .top-bar .container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-controls {
        width: 100%;
        justify-content: center;
    }
}

.bredcmps,
.bredcmps a {
    background-color: var(--light-grey-blue);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.bredcmps a {
    text-decoration: none;
    font-weight: 500;
}


/* header logo */

.logo img {
    width: 100%;
    max-width: 110px;
    height: 110px;
    object-fit: contain;
    flex: 1 0 0;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: var(--font-secondry);
    color: var(--primary);
    margin: 0;
    border-bottom: 4px solid;
    line-height: 1.2;
}

.logo-name h2 {
    font-size: 1rem;
    padding: 5px 0 0 0;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
}

.logo-name p {
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
}
.hindi-logo .logo-name p{
    text-align: center;
}
.logo-header .container {
    display: flex;
    align-items: center;
    gap:25px
}

/* .logo {
    flex: 1;
} */

.hindi-logo {
    flex: 1;
    text-align: center;
}

.sj-logo {
    flex: 1;
    text-align: right;
}
input.searchTerm {
    padding: 5px 10px;
    border: 2px solid var(--primary);
    border-radius: 50px 50px;
    width: 250px;
    position: relative;
}

.search {
    position: relative;
}

.searchButton {
    position: absolute;
    right: 2px;
    top: 2px;
    border: 0;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 40px;
    height: 34px;
    background: var(--accent);
    color: #fff;
}

.top-controls select {
    width: 110px;
    font-size: 13px;
}

.font-btn {
    background: #fff;
    color: #1b3b6f;
    border: none;
    padding: 3px 8px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 600;
}

.font-btn:hover {
    background: var(--over-yellow);
    color: #000;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    cursor: pointer;
    font-size: 16px;
}

#searchInput {
    position: absolute;
    right: 25px;
    top: -5px;
    width: 0;
    opacity: 0;
    transition: 0.3s ease;
    padding: 4px 8px;
    font-size: 13px;
    border-radius: 3px;
    border: none;
}

#searchInput.active {
    width: 180px;
    opacity: 1;
}

.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-primary);
}
div#navbarMain {
    justify-content: center;
    gap:18px;
}

/* Hide Google Translate Top Bar */

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


/* Navbar */

.custom-navbar {
    background: var(--primary);
}

.custom-navbar .nav-link {
    color: #fff;
}

.custom-navbar .nav-link:hover {
    color: #ffd700;
}

.navbar-expand-lg .navbar-nav {
    gap: 9px !important;
}


/* Hero Slider */

.main-slider .carousel-item {
    height: 75vh;
}

.main-slider img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: -10px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(to bottom, #162e6acf, #f5f6f778);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .3);
    border-radius: 12px;
    left: 0;
    right: 0;
}

.carousel-caption h2 {
    font-size: 28px;
    font-weight: 700;
}


/* Latest News */


/* ============================= */


/* Advanced Continuous News Ticker */


/* ============================= */

.news-ticker {
    display: flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    position: relative;
    height: 45px;
}


/* Fixed Label */

.ticker-label {
    background: var(--over-yellow);
    color: #000;
    font-weight: 700;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}


/* Container */

.ticker-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}


/* Fade edges */

.ticker-container::before,
.ticker-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.ticker-container::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.ticker-container::after {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}


/* Moving track */

.ticker-track {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerMove 25s linear infinite;
}


/* Pause on hover */

.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}


/* News items */

.news-item {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.news-item:hover {
    color: var(--over-yellow);
}


/* Animation */

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ================= Welcome Section ================= */

.welcome-section {
    background: #fff;
}
.welcome-section .row
{
    align-items: center;
}
.welcome-section .col-lg-7 
{
    padding-right: 30px;
}
.section-title,
.blue-hd,
.white-hd {
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-family: var(--primary);
    line-height: 1.2;
}

.white-hd {
    color: #fff;
    display: inline;
    border-bottom: 2px solid;
}

.section-title,
.blue-hd {
    color: var(--primary);
}

.blue-hd {
    display: inline;
    border-bottom: 2px solid;
}

.section-title {
    color: var(--primary);
    font-family: var(--primary);
    background: linear-gradient(to right, #f2f2f2a1, #f2f2f21f);
    border-left: 7px solid var(--primary);
    display: flex;
    align-items: center;
    padding: 10px 20px 11px;
}


/* ===== LEFT MINISTER CARDS ===== */
.pmo-content
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px
}
.pmo-content img{
    width: 100%;
    max-width: 450px;
}
.thoughts
{
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
}
.hme-profile-section {
    padding: 40px;
}

.hme-profile-container {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

/* .hme-profile-left {
    flex: 1;
} */

.hme-profile-right {
    flex: 1;
    background: #0d2c6c;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.hme-profile-heading {
    margin-bottom: 20px;
}


/* CARDS */

.hme-profile-section {
    background: #f4f7fb;
}

.hme-profile-left-cards {
    display: flex;
    gap: 20px;
}

.hme-profile-card,
.hme-profile-member-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
  justify-content: center;
}
.hme-profile-member-card 
{
    flex-direction: column;
}
.chr-prfl-hme {
    display: flex;
    width: 100%;
    justify-content: start;
    gap: 20px;
    align-items: center;
}
.ch-msg p {
    color: #fff !important;
}
.ch-full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease; /* control speed here */
}

.ch-full-text.active {
    max-height: 1000px; /* enough to fit content */
}

.ch-short-text.hide {
    display: none;
}

.ch-read-btn,
.ch-less-btn {
    color: var(--over-yellow);
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    margin-top: 8px;
}

.ch-less-btn {
    display: none;
}
.hme-profile-card {
   
    align-items: center;
    background: #fff;
    border: 1px solid #efefef;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, .09);
    justify-content: start;
    flex-basis: 50%;
}

.hme-profile-member-card {
    background: rgba(255, 255, 255, 0.1);
}

.hme-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: contain;
}

.hme-profile-info h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.hme-profile-info h4 {
    color: var(--primary-dark);
}

.hme-profile-right .hme-profile-info h4,
.hme-profile-right .hme-profile-info p {
    color: var(--bg-white);
}

.hme-profile-info p {
    margin: 5px 0;
}

.hme-profile-btn {
    margin-right: 8px;
    padding: 6px 12px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

img.hme-profile-img.member-img-hme {
    width: 125px;
    height: 125px;
    object-fit: contain;
}


/* MODAL */

.hme-profile-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hme-profile-modal-content {
    background: #fff;
    width: 600px;
    max-width: 95%;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.hme-profile-close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}

.hme-profile-modal-flex {
    display: flex;
    gap: 20px;
}

.hme-profile-modal-flex h3 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.hme-profile-modal-flex img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

#hmeProfileModalBody iframe {
    width: 100%;
    height: 500px;
}


/* ================= Overlay Section ================= */

.news-gallery-section {
    position: relative;
    background: url('https://picsum.photos/1920/900?blur=4') center/cover no-repeat;
    padding: 70px 0;
    color: #fff;
}

.news-gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 24, 60, 0.9);
}

.news-gallery-section .container {
    position: relative;
    z-index: 2;
}

.hme-news-hd {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-text);
}

.hme-news-hdr {
    background: var(--accent);
    color: var(--bg-white);
}


/* ================= Animated Tabs ================= */

.custom-tabs .nav-link {
    color: #fff;
    border: none;
    background: none;
    position: relative;
    margin-right: 2px;
    background: var(--accent);
}

ul.nav.custom-tabs {
    background: #a3bbf3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.custom-tabs .nav-link.active::after,
.custom-tabs .nav-link:hover::after {
    width: 100%;
}

.whats-new-tabs {
    border-radius: 10px;
}

.whats-new-tabs .tab-content {
    background-color: #f2f2f2;
    padding: 20px;
}


/* ================= Auto Vertical Scroll ================= */

.auto-scroll {
    max-height: 220px;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 18s linear infinite;
}

.auto-scroll:hover .scroll-track {
    animation-play-state: paused;
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}


/* ================= News List ================= */

.news-list {
    list-style: none;
    padding-left: 0;
}

.news-list li {
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    background: #fff;
    padding: 15px 15px;
    border-bottom: 1px solid;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .4);
    color: var(--text-dark);
}

.news-hd {
    margin-bottom: 30px;
}


/* .news-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--over-yellow);;
} */


/* gallery */


/* ========================================= */


/* NSB Vertical Tabs Gallery Section */


/* Fully Isolated - No Conflict */


/* ========================================= */

.nsb-gallery-section {
    padding: 80px 0;
}


/* Layout */

.nsb-gallery-wrapper {
    display: flex;
    gap: 40px;
}


/* ================= Vertical Tabs ================= */

.nsb-gallery-tabs {
    width: 220px;
    display: flex;
    flex-direction: column;
    background: #a3bbf3;
    border-radius: 10px;
}

.nsb-tab-btn {
    padding: 9px 18px;
    background: transparent;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    transition: all .3s ease;
    border: 0;
    border-bottom: 2px solid #fff;
}

.nsb-tab-btn:hover,
.nsb-tab-btn.active {
    background: var(--primary);
    color: #fff;
}


/* ================= Content Area ================= */

.nsb-gallery-content {
    flex: 1;
}

.nsb-tab-content {
    display: none;
}

.nsb-tab-content.active {
    display: block;
}


/* ================= Grid ================= */

.nsb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
    /* CENTER */
}


/* ================= Gallery Card ================= */

.nsb-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease;
}

.nsb-gallery-item:hover {
    transform: translateY(-6px);
}

.nsb-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .5s ease;
}


/* Zoom on hover */

.nsb-gallery-item:hover img {
    transform: scale(1.1);
}


/* ================= Always Visible Bottom Title ================= */

.nsb-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    padding: 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    display: flex;
    align-items: center;
    transition: background .3s ease;
    justify-content: center;
}

.nsb-gallery-overlay h6 {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    color: #f2f2f2;
    font-family: var(--primary);
}


/* Darken on hover */

.nsb-gallery-item:hover .nsb-gallery-overlay {
    background: rgba(0, 0, 0, 0.55);
    opacity: 1;
    color: #007bff;
}

.hme-media-cpshn {
    position: absolute;
    color: #fff !important;
    bottom: 0;
    left: 20px;
    right: 20px;
    text-align: center;
    z-index: 1;
    line-height: 1.3;
    font-size: 16px;
    background: #0d3b66a8;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #0d3b66;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}


/* ================= Responsive ================= */

@media (max-width: 991px) {
    .nsb-gallery-wrapper {
        flex-direction: column;
    }
    .nsb-gallery-tabs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .nsb-tab-btn {
        text-align: center;
        flex: 1;
    }
    .nsb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /*change by AG*/
    .hme-profile-section {
        padding: 0px;
    }
    .pmo-content{
        flex-direction: column;
    }
    .nsb-footer-grid{
        flex-direction:column;
    }
}

@media (max-width: 600px) {
    .nsb-gallery-grid {
        grid-template-columns: 1fr;
    }
    .nsb-gallery-item img {
        height: 220px;
    }
    .welcome-section .col-lg-7 
{
    padding-right: 12px;
}
}


/* ================= Buttons ================= */

.view-more-btn,
.hme-intro-btn {
    display: inline-block;
    /* padding: 6px 14px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500; */
}

.view-more-btn {
    /* background: var(--over-yellow);
    color: #000;
    border: 1px solid var(--over-yellow); */
}

.hme-intro-btn {
    /* background-color: var(--primary-dark);
    color: var(--bg-white);
    border: 1px solid var(--primary-dark); */
}

.hme-intro-btn:hover {
    /* background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark); */
}

/* .hme-profile-right .hme-intro-btn:hover {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.view-more-btn:hover {
    background: transparent;
    color: var(--over-yellow);
} */


/* ================= Responsive ================= */

@media(max-width:991px) {
    .news-gallery-section {
        padding: 50px 0;
    }
}


/* Gallery Wrapper */

.gallery-wrapper {
    display: flex;
    gap: 10px;
}


/* Thumbnails */

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.gallery-thumbs img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
    opacity: 1;
    border: 2px solid var(--over-yellow);
}


/* Make slider flexible */

#galleryCarousel {
    flex: 1;
}


/* ================= MOBILE FIX ================= */

@media (max-width: 991px) {
    .gallery-wrapper {
        flex-direction: column;
    }
    .gallery-thumbs {
        flex-direction: row;
        justify-content: center;
    }
    .gallery-thumbs img {
        width: 80px;
        height: 60px;
    }
}


/* ================= Social Media Section ================= */

.social-feed-section {
    background: #f4f7fb;
}

.social-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.social-header {
    padding: 12px 15px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.facebook .social-header {
    background: #1877f2;
}

.twitter .social-header {
    background: #000;
}

.instagram .social-header {
    background: #e1306c;
}

.linkedin .social-header {
    background: #0a66c2;
}

.post-item a{
    padding: 10px 15px;
    font-size: 15px !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    margin: 0;
   
}
.hme-news-hd
{
    padding: 0 30px;
}
.post-item{
    list-style-type: square;
     background: #f4f7fb;
     border-bottom: 1px solid var(--primary-dark);
}
.post-item:hover{
    list-style-type: none;
     background: var(--bg-white);
     border-bottom: 2px solid var(--primary);
     padding: 2px 15px;
     list-style-type: disclosure-closed;
}
.imp-link-group
 {
    margin: 10px 0;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.08);
    padding: 20px 40px;
    border-radius: 5px;
    border: 1px solid #efefef;
}
.imp-link-title {
    color: #000;
    list-style: none;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
/* Small vertical auto scroll */

.small-scroll {
    max-height: 240px;
    overflow-y: scroll;
    flex: 1;
}

.small-scroll .scroll-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 18s linear infinite;
}

.small-scroll:hover .scroll-track {
    animation-play-state: paused;
}


/* Responsive */

@media(max-width:991px) {
    .social-card {
        height: 260px;
    }
}


/* ================= Logo Scrolling Section ================= */

.partner-logos {
    background: var(--bg-white);
    overflow: hidden;
}

.logo-slider {
    position: relative;
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center !important;
    margin-left: 8px;
    margin-right: 8px;
    border-bottom: 5px solid #0f2f5f !important;
    min-height: 108px;
    border: 1px solid #0f2f5f;
    flex-direction: column;
}

.logo-track img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: 0.3s ease;
    background:#162f6a4a;
}

.logo-track a:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}
.logo-track p{
    text-align: center !important;
}

/* Pause on hover */

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}


/* Continuous Animation */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Responsive */

@media(max-width:768px) {
    .logo-track a {
        padding: 10px 25px;
    }
    .logo-track img {
        max-height: 45px;
    }
}


/* about page */


/* ===== PAGE BANNER ===== */

.about-banner {
    background: url('https://picsum.photos/1920/600?blur=2') center/cover no-repeat;
    height: 50vh;
    position: relative;
}

.banner-overlay {
    background: rgba(13, 24, 60, 0.75);
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
}

.about-banner h1 {
    font-size: 40px;
    font-family: var(--font-secondry);
}

.page-abt-content {
    padding-right: 40px;
    text-align: justify;
}


/* ===== ABOUT SECTION ===== */


/* ===== ABOUT PAGE FIXED STYLE ===== */
.logo-img {
    max-width: 250px;
    width: 100%;
    
}

.logo-content {
    padding: 0 15px;
}

.logo-meaning-list {
    padding-left: 18px;
}

.logo-meaning-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}



.about-images {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: 10px;
    height: 350px;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    width: 60%;
    bottom: -20px;
    right: -20px;
    border: 5px solid #fff;
    border-radius: 10px;
}
/* logo meaning */
.logo-meaning-section {
    background: #f8fbff;
}

.logo-meaning-section h2 {
    font-weight: 700;
    color: #0d3b66;
}

.logo-meaning-list {
    list-style-type: none;
    padding: 0;
}

.logo-meaning-list li {
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
    list-style-type: none;
    font-style: oblique;
}

.logo-meaning-list b{
    color:var(--primary-dark);
    font-weight:600;
    text-decoration: underline !important;
}

/* Match contact card style */

.vmv-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: .3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ✅ FIX */
}

.vmv-card:hover {
    transform: translateY(-5px);
}

.vmv-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.vmv-card:hover {
    transform: translateY(-5px);
}

.vmv-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.objectives-section {
    width: 100%;
    max-width: 900px;
    margin: auto;
    background: #f3f3f3;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    padding: 30px;
}

.objective-list ul {
    margin: 30px auto 0;
    list-style: none;
    padding: 0 !important;
}

.objective-list li {
    background: #fff;
    margin-bottom: 12px;
    padding: 12px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    list-style-type: none;
}


/* ===== Wave Ribbon Heading ===== 


/* Keep text above overlay */

.wave-ribbon {
    position: relative;
    text-align: center;
}

.wave-ribbon h2 {
    background: #1d3461;
    padding: 25px 15px 30px;
    color: #fff;
    position: relative;
    border-style: groove;
    border-color: #e8ecf373;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-width: 4px;
    line-height: 0;
    font-weight: 700;
    font-size: 1.8rem;
}

.wave-ribbon h2::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 54px;
    border-radius: 0 100% 100% 0 / 91%;
    aspect-ratio: cos(28deg);
    background: #1d3461;
    corner-shape: bevel;
    right: -25px;
    top: 0;
}


/* ===== Badge Panel Heading ===== */

.heading-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    padding: 18px 60px;
    background: linear-gradient(135deg, #244a86, #1d3461);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.heading-badge h2 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    letter-spacing: 1px;
}


/* ============================= */


/* NSB WHO'S WHO PAGE */


/* Fully Namespaced - No Conflict */


/* ============================= */
.nsb-secretariat
{
    padding-top:0 !important;
}
.nsb-whoswho {
    padding: 70px 0;
}

.nsb-whoswho-banner {
    background: linear-gradient(135deg, var(--primary), #162f58);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.nsb-whoswho-banner h1 {
    font-size: 42px;
    font-family: var(--font-secondry);
    margin: 0;
}

.nsb-members-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 6px;
}
.whos-who-min-model a {
    display: none !important;
}
/* Grid */

.nsb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px 30px;
    background-color: #f4f4f4;
}


/* Card */

.nsb-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
}

.nsb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nsb-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.nsb-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.nsb-card p {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 600 !important;
    text-align: center;
}


/* Buttons */

.nsb-btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nsb-btn, .hme-intro-btn, .view-more-btn{
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.nsb-btn-primary, .hme-intro-btn {
    background: var(--primary);
    color: #fff;
}

.nsb-btn-primary:hover,  .hme-intro-btn {
    background: var(--primary-dark);
}

.nsb-btn-secondary, .view-more-btn {
    background: var(--over-yellow);
    color: #000;
}


/* Modal */

.nsb-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.nsb-modal-content {
    background: #fff;
    width: 900px;
    max-width: 95%;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    animation: nsbFade .3s ease;
}

.nsb-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
}

.nsb-modal-profile {
    display: flex;
    gap: 30px;
}

.nsb-modal-profile img {
        width: 220px;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
}

.nsb-modal-profile h4 {
    margin-top: 0;
    color: var(--primary-dark);
}
.nsb-modal-profile strong
{
    color:var(--over-yellow);
    font-weight: 600;
}

.nsb-modal iframe {
    width: 100%;
    height: 500px;
    border: none;
}


/* Responsive */

@media(max-width:992px) {
    .nsb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .nsb-grid {
        grid-template-columns: 1fr;
    }
    .nsb-modal-profile {
        flex-direction: column;
        text-align: center;
    }
    .page-abt-content {
        padding-right: 0px;
        text-align: justify;
    }
}

@keyframes nsbFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================= */


/* MAIN FOOTER (4 COLUMN) */


/* ========================================= */

.nsb-footer {
    background: var(--primary);
    color: #fff;
    padding: 70px 0 40px;
    font-size: 14px;
}

.nsb-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.nsb-footer-col {
    flex-basis: 33.33%;
}
.nsb-footer-col h5 {
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.nsb-footer-col h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--over-yellow);
    ;
}

.nsb-footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.nsb-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nsb-footer-col ul li {
    margin-bottom: 10px;
}

.nsb-footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all .3s ease;
}

.nsb-footer-col ul li a:hover {
    color: var(--over-yellow);
    ;
    padding-left: 6px;
}


/* Social Links */

.nsb-social-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nsb-social-links a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 4px;
    transition: all .3s ease;
}

.nsb-social-links a:hover {
    background: var(--over-yellow);
    ;
    color: #000;
}


/* ========================================= */


/* GOVERNMENT POLICY FOOTER */


/* ========================================= */

.gov-footer-horizontal {
    background: #0f2f5f;
    color: #fff;
    padding: 25px 0;
    font-size: 13px;
    text-align: center;
}

.footer-policy-links {
    margin-bottom: 10px;
}

.footer-policy-links a {
    color: #dcdcdc;
    text-decoration: none;
    margin: 0 8px;
    transition: .3s ease;
}

.footer-policy-links a:hover {
    color: var(--over-yellow);
    ;
}

.footer-policy-links span {
    color: rgba(255, 255, 255, 0.4);
}


/* Visitor Counter */

.visitor-count {
    font-size: 14px;
    margin-top: 8px;
}

#visitorCounter {
    background: #162f58;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
}


/* Copyright */

.footer-copy {
    margin-top: 8px;
    font-size: 12px;
    color: #dcdcdc;
}


/* ========================================= */


/* RESPONSIVE */


/* ========================================= */

@media (max-width: 991px) {
    .nsb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .nsb-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .nsb-footer-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .nsb-social-links {
        justify-content: center;
    }
    .footer-policy-links a,
    .footer-policy-links span {
        display: inline-block;
        margin: 4px 6px;
    }
    .page-abt-content {
        padding-right: 0px;
        text-align: center;
    }
}


/* contact page */

.page-banner {
    background: linear-gradient(135deg, #0b4f8a, #083a66);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
}


/* Section title */

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0b4f8a;
    text-align: center;
}


/* Officials */

.official-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: .3s;
}

.official-card:hover {
    transform: translateY(-6px);
}

.designation {
    font-weight: 600;
    color: #0b4f8a;
    margin-bottom: 10px;
    text-align: center;
}
.official-card h4, .member-card h5{
    font-weight: 700 !important; 
}

/* Members */

.member-card {
    background: white;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: .3s;
    text-align: center;
}

.member-card:hover {
    transform: translateY(-5px);
}


/* Address */

.address-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}


/* Contact */

.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phn-icn,
.email-icn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
}

.email-icn {
    padding: 10px 0;
}

.phn-icn i,
.email-icn i {
    color: var(--primary-dark);
    font-size: 18px;
    padding-right: 10px;
}


/* RTI */

.rti-container {
    display: flex;
    margin: 50px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

.rti-acts li
{
  margin-bottom: 10px;
}
/* Sidebar Tabs */

.rti-tabs {
    width: 280px;
    background: #0d3b66;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.rti-tab {
    padding: 18px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.rti-tab:hover,
.rti-tab.active {
    background: var(--over-yellow);
    color: #000;
}


/* Content */

.rti-map h4 {
    font-weight: 600 !important;
    border-bottom: 2px solid;
    display: inline-block;
}

.rti-content {
    flex: 1;
    padding: 30px;
    height: 80vh;
    overflow-y: scroll;
}

.rti-section {
    display: none;
}

.rti-section.active {
    display: block;
}

.rti-content h2 {
    margin-top: 0;
    color: #0d3b66;
    font-size: 28px;
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #0d3b66;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-link:hover {
    background: #f4a261;
    color: #000;
}

.placeholder {
    color: #888;
    font-style: italic;
}

@media(max-width: 768px) {
    .rti-container {
        flex-direction: column;
    }
    .rti-tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    .rti-tab {
        flex: 1;
        text-align: center;
        white-space: nowrap;
    }
}


/* details of rti section 4 tab */

.rti-section4 {
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    background: #fff;
}

.rti-section4 h1 {
    color: #0d3b66;
    margin-bottom: 30px;
}

.rti-block {
    margin-bottom: 25px;
    padding: 20px;
    border-left: 5px solid #0d3b66;
    background: #f9f9f9;
    border-radius: 6px;
}
.rti-block h2 {
    font-size: 22px;
}
.rti-block h3 {
    font-size: 20px;
}
.rti-block h5 {
    font-size: 18px;
}
.rti-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.rti-table th {
    background: #0d3b66;
    color: #fff;
    padding: 10px;
}

.rti-table td {
    padding: 10px;
    border: 1px solid #ddd;
}


/* gallery inner */


/* ===== GALLERY GRID ===== */

.nsb-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0px auto;
}

.single-grid {
    box-shadow: 5px 10px 30px rgba(0, 0, 0, .09);
    padding: 30px 30px;
    border-radius: 5px;
}


/* ===== ITEM ===== */

.nsb-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}


/* IMAGE */

.nsb-gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


/* ZOOM */

.nsb-gallery-item:hover img {
    transform: scale(1.08);
}


/* ===== OVERLAY (CENTER TEXT STYLE) ===== */

.nsb-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: 0.4s ease;
    /* 🔥 IMPORTANT (LIGHTBOX FIX) */
    pointer-events: none;
}


/* SHOW OVERLAY */


/* .nsb-gallery-item:hover .nsb-gallery-overlay {
    opacity: 1;
} */


/* TEXT */

.nsb-gallery-overlay h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.nsb-gallery-item:hover .nsb-gallery-overlay h4 {
    transform: translateY(0);
}


/* ===== LIGHTBOX ===== */

.nsb-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}


/* IMAGE */

#nsbLightboxImg {
    max-width: 85%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}


/* CLOSE BUTTON */

/* .nsb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
} */


/* NAVIGATION */

.nsb-prev,
.nsb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    user-select: none;
}

.nsb-prev {
    left: 20px;
}

.nsb-next {
    right: 20px;
}


/* HOVER EFFECT ON NAV */

.nsb-prev:hover,
.nsb-next:hover,
.nsb-close:hover {
    color: #ccc;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .nsb-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nsb-gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* publications */

.pubshn-tabs .whats-new-tabs .tab-content {
    max-height: 70vh !important;
    overflow-y: scroll;
}

.pubshn-tabs .auto-scroll {
    max-height: 60vh !important;
}

.list-img li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.list-img :hover {
    background: var(--bg-light);
}

.custom-tabs .nav-link.active {
    background-color: var(--over-yellow) !important;
}


/* galeery with tabular layout for multi categories */


/* INNER HORIZONTAL TABS */

.inner-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.inner-tab-btn {
    padding: 8px 16px;
    border: none;
    background: #eee;
    cursor: pointer;
    font-weight: 600;
}

.inner-tab-btn.active {
    background: var(--primary);
    color: #fff;
}


/* INNER CONTENT */

.inner-tab-content {
    display: none;
}

.inner-tab-content.active {
    display: block;
}

.nsb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.nsb-lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.nsb-close {
    position: absolute;
    top: 3px;
    right: 5px;
    font-size: 19px;
    color: var(--primary) !important;
    cursor: pointer;
    background: #fff;
    padding: 6px 13px;
    border-radius: 100px;
    border: 1px solid;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.nsb-prev,
.nsb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.nsb-prev {
    left: 20px;
}

.nsb-next {
    right: 20px;
}

/* acts and rules */
.ar-content {
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.095);
    border: 1px solid #efefef;
}
.ar-list
 {
    display: flex;
    justify-content: space-around;
}
.ar-list li {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    transition: all .2s linear;
}
.ar-list li:hover
{
    margin-top:-5px;
    transition: all .2s linear;
    color:var(--accent) !important;
}
.ar-list img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.tenders-list-page
{
    display: flex;
    justify-content: start;
    flex-wrap:wrap;
    gap: 25px;
}
.tenders-list-page a {
    display: flex;
    width: 23%;
    flex-wrap: wrap;
    flex-direction: row;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.09);
    padding: 10px 15px;
    border: 1px solid #efefef;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}
.tenders-list-page li{
    text-align: center;
}

.tenders-list-page li{
    font-size: 18px;
}
.ar-list.tenders-list-page
 {
    flex-basis: 25%;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
}
/* organisational chart */
.org-chart img{
    width: 100%;
    margin:auto;
}
.org-chart
{
    text-align: center;
}

/* dummy box */
.dummy-content {
    margin: auto;
    text-align: center;
    width: 600px;
    background: var(--text-muted);
    padding: 40px 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .03);
    border: 1px solid #efefef;
    border-radius: 5px;
}


/*minister section */
.Minister-section {
    position: relative;
    background-position: center;
    background-color: #f7f7f7;
}
.minister-img {
    border: 2px solid #1c60a5;
    border-radius: 8px;
    height: auto;
}

.quicklink-sec:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.dg-section {
    border: 1px solid #fcbf098a;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 99;
}

.dg-img {
    margin-bottom: 10px;
}

.dg-section img {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.title-new {
    font-size: 15px;
    font-weight: 800;
    color: #010101;
}

.dg-content.text-center p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.profile-link {
    margin-top: 5px;
}

.profile-link a {
    color: #007bff;
    font-size: 15px;
}

.profile-link a i {
    font-size: 11px;
    padding-top: 8px;
}

.social-media {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
    position: relative;
    z-index: 6;
}

.social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media ul li {
    display: inline-block;
    border: 1px solid #e5e5e5;
    color: #3b5998;
    text-align: center;
    width: 32px;
    height: 32px;
    justify-content: center;
    font-size: 20px !important;
    align-items: center;
    margin: 0 3px;
    margin-bottom: 0px;
    text-decoration: none;
    color: #0a0a0a;
    border-radius: 2px;
    transition: .3s linear;
}

.social-media ul li:hover {
    background-color: #007bff;
    color: #fff;
}

/* .social-media ul li i:hover {
    color: #fff;
} */

.state-min {
    border: 1px solid #fcbf098a;
    padding: 21px;
    background-color: #fff;
    position: relative;
    z-index: 99;
    display: flex;
    margin-bottom: 10px;
}

.state-min.dd1 {
    border-top: 5px solid #8B70DB;
  border-radius: 20px;
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  position: relative;
    margin-bottom: 10px;
}

.side-new {
    margin-right: 89px;
    width: 80px;
    flex-shrink: 0;
}

.side-new img {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    max-width: 140px !important;
}

.state-title {
    padding-top: 15px;
}

.state-title h3 {
    font-size: 15px;
    font-weight: 800;
    color: #010101;
}

.state-title b {
    font-size: 14px;
}

.state-title p {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.social-media ul li .fa-facebook {
    color: #3b5998;
}
.social-media ul li .fa-x-twitter {
    color: #010101;
}
.social-media ul li .fa-instagram {
    color: #d9317a;
}
.social-media ul li .fa-youtube {
    color: #FF0000;
}