    @import url("https://db.onlinewebfonts.com/c/465749543b0a51df0a5cfcf1d129e392?family=EMprint+Semibold");
    /*@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
    @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');*/

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
        font-weight: 400;
        font-style: normal;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-v31-latin-italic.woff2') format('woff2');
        font-weight: 400;
        font-style: italic;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
        font-weight: 600;
        font-style: normal;
    }

    @font-face {
        font-family: 'Montserrat';
        src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
    }

    @font-face {
        font-family: 'Rajdhani';
        src: url('../fonts/rajdhani-v15-latin-600.woff2') format('woff2');
        font-weight: 600;
        font-style: normal;
    }

    @font-face {
        font-family: 'Rajdhani';
        src: url('../fonts/rajdhani-v15-latin-700.woff2') format('woff2');
        font-weight: 700;
        font-style: normal;
    }




    :root {
        --default-font: "EMprint Semibold";
        --heading-font: "EMprint Semibold";
        --nav-font: "EMprint Semibold";
    }

    :root {
        --primary: #022255;
        --accent: #eb5d31;
        --background-color: #ffffff;
        --default-color: #444444;
        --heading-color: #222222;
        --accent-color: #106eea;
        --nav-color: #222222;
        --nav-hover-color: #106eea;
        --nav-dropdown-background-color: #ffffff;
        --nav-dropdown-color: #222222;
        --nav-dropdown-hover-color: #106eea;
        scroll-behavior: smooth;
    }

    body {
        color: var(--default-color);
        background-color: var(--background-color);
        font-family: var(--default-font); 
    }

    a {
        color: var(--accent-color);
        text-decoration: none;
        transition: 0.3s;
    }

        a:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
            text-decoration: none;
        }

    h1, h2, h3, h4, h5, h6 {
        color: var(--heading-color);
        font-family: var(--heading-font);
    }

    p {
        font-family: Montserrat, serif;
    }

    section {
        padding: 30px 0px;
    }


    img {
        max-width: 100%;
        display: block;
    }

    .header {
        color: rgb(255, 255, 255);
        z-index: 99999;
        padding: 2px 0px;
        position: sticky;
        top: 0px;
        background: rgb(255, 255, 255);
        transition: 0.1s ease-in-out !important;
    }

        .header .topbar {
            background-color: var(--accent-color);
            height: 40px;
            padding: 0px;
            font-size: 14px;
            transition: 0.5s;
        }

            .header .topbar .contact-info i {
                font-style: normal;
                color: var(--contrast-color);
            }

                .header .topbar .contact-info i a, .header .topbar .contact-info i span {
                    padding-left: 5px;
                    color: var(--contrast-color);
                }

    @media (max-width: 575px) {
        .header .topbar .contact-info i a, .header .topbar .contact-info i span {
            font-size: 13px;
        }
    }

    .header .topbar .contact-info i a {
        line-height: 0;
        transition: 0.3s;
    }

        .header .topbar .contact-info i a:hover {
            color: var(--contrast-color);
            text-decoration: underline;
        }

    .header .topbar .social-links a {
        color: color-mix(in srgb, var(--contrast-color), transparent 40%);
        line-height: 0;
        transition: 0.3s;
        margin-left: 20px;
    }

        .header .topbar .social-links a:hover {
            color: var(--contrast-color);
        }

    .header .branding {
        min-height: 60px;
        padding: 10px 0px;
    }

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-width: 290px;
            width: 100%;
        }

        .header .logo h1 {
            font-size: 30px;
            margin: 0px;
            font-weight: 600;
            color: var(--heading-color);
        }

        .header .logo span {
            color: rgb(86, 86, 86);
            font-size: 16px;
            font-weight: bold;
            margin-top: 8px;
        }

    .scrolled .header {
        box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
        position: static;
    }

    .bottom-header .navmenu {
        background-color: rgb(22, 47, 106);
        padding: 0px;
    }

    .scrolled .header .bottom-header {
        transition: 0.4s ease-in-out;
    }

    .scrolled .header .bottom-header {
        position: fixed;
        top: 0px;
        z-index: 99999;
        left: 0px;
        right: 0px;
    }

    .accdiv {
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

    @media (min-width: 1200px) {
        .container {
            max-width: 95%;
            width: 100%;
        }

        .navmenu {
            padding-top: 0px;
            display: flex;
            justify-content: space-between;
            width: 100%;
            padding-right: 10px;
        }

            .navmenu ul {
                margin: 0px;
                padding: 0px;
                display: flex;
                list-style: none;
                align-items: center;
                position: relative;
            }

            .navmenu > .container > ul > li + li {
                margin-left: 10px;
            }

            .navmenu a, .navmenu a:focus {
                color: rgb(0, 0, 0);
                padding: 14px 12px; 
                line-height: 1;
                display: flex;
                align-items: center;
                justify-content: space-between;
                white-space: nowrap;
                transition: 0.3s;
                position: relative;
                font-family: Montserrat, serif;
            }

                .navmenu a i, .navmenu a:focus i {
                    font-size: 12px;
                    line-height: 0;
                    margin-left: 5px;
                    transition: 0.3s;
                }

            .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
                color: rgb(243, 112, 34);
                border-radius: 0px;
            }

            .navmenu .dropdown ul {
                margin: 0px;
                padding: 5px 0px;
                background: rgb(0, 37, 89);
                display: block;
                position: absolute;
                visibility: hidden;
                left: 0px;
                top: 130%;
                opacity: 0;
                transition: 0.3s;
                border-radius: 0px 0px 10px 10px;
                z-index: 99;
                box-shadow: rgba(128, 128, 128, 0.25) 0px 7px 2px;
                min-width: 200px;
                border-bottom: 3px solid rgb(235, 91, 56);
            }

                .navmenu .dropdown ul li {
                    min-width: 120px;
                    width: 100%;
                }

                .navmenu .dropdown ul a {
                    padding: 4px 5px;
                    font-size: 13px;
                    text-transform: none;
                    color: rgb(255, 255, 255);
                    line-height: 20px;
                    font-family: Montserrat, serif;
                    font-weight: 400;
                    white-space: inherit;
                }

                    .navmenu .dropdown ul a i {
                        font-size: 14px;
                        float: right;
                    }

                    .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
                        color: rgb(255, 255, 255);
                    }

            .navmenu .dropdown:hover > ul {
                opacity: 1;
                top: 102%;
                visibility: visible;
            }

            .navmenu .dropdown .dropdown ul {
                top: 0px;
                left: auto;
                visibility: hidden;
                right: -90%;
            }

            .navmenu .dropdown .dropdown:hover > ul {
                opacity: 1;
                top: 0px;
                right: -100%;
                visibility: visible;
            }
    }

    @media (max-width: 1199px) {
        .mobile-nav-toggle, .btnaccessblity {
            color: var(--nav-color);
            font-size: 28px;
            line-height: 0;
            margin-right: 10px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .navmenu {
            padding: 0px;
            z-index: 9997;
            display: flex;
            align-items: center;
            justify-content: end;
            width: 100%;
        }

            .navmenu ul {
                display: none;
                position: absolute;
                inset: 60px 20px 20px;
                padding: 10px 0px;
                margin: 0px;
                border-radius: 6px;
                background-color: var(--nav-dropdown-background-color);
                overflow-y: auto;
                transition: 0.3s;
                z-index: 9998;
                box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
            }

            .navmenu a, .navmenu a:focus {
                color: var(--nav-dropdown-color);
                padding: 10px 20px;
                font-family: var(--nav-font);
                font-size: 17px;
                font-weight: 500;
                white-space: nowrap;
                transition: 0.3s;
            }

                .navmenu a i, .navmenu a:focus i {
                    margin-left: auto;
                    font-size: 12px;
                    line-height: 0;
                    margin-left: auto;
                    border-radius: 50%;
                    transition: 0.3s;
                    background-color: #f8f8f8;
                }

                    .navmenu a i:hover, .navmenu a:focus i:hover {
                        background-color: var(--accent-color);
                        color: #f8f8f8;
                    }

                .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
                    color: var(--nav-dropdown-hover-color);
                }

                    .navmenu .active i, .navmenu .active:focus i {
                        background-color: var(--accent-color);
                        color: white;
                        transform: rotate(180deg);
                    }

            .navmenu .dropdown ul {
                position: static;
                display: none;
                z-index: 99;
                padding: 10px 0px;
                margin: 10px 20px;
                background-color: var(--nav-dropdown-background-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                box-shadow: none;
                transition: 0.5s ease-in-out;
            }

                .navmenu .dropdown ul ul {
                    background-color: rgba(33, 37, 41, 0.1);
                }

            .navmenu .dropdown > .dropdown-active {
                display: block;
                background-color: rgba(33, 37, 41, 0.03);
            }

        .mobile-nav-active {
            overflow: hidden;
        }

            .mobile-nav-active .mobile-nav-toggle {
                color: rgb(255, 255, 255);
                position: absolute;
                font-size: 32px;
                top: 15px;
                right: 15px;
                margin-right: 0px;
                z-index: 9999;
            }

            .mobile-nav-active .navmenu {
                position: fixed;
                overflow: hidden;
                inset: 0px;
                background: rgba(33, 37, 41, 0.8);
                transition: 0.3s;
            }

                .mobile-nav-active .navmenu > ul {
                    display: block;
                }
    }

    @media (max-width: 1199px) {

        .dropdown .dropdown.active > a > span > i {
            background: rgb(16 110 234) !important;
            rotate: 0deg;
            color: white !important;
        }

        .dropdown .dropdown > a > span > i {
            rotate: 180deg;
        }

        .navmenu a span {
            align-items:center;
            display: flex;
            justify-content: space-between;
            width: 100%;
        }

        .navmenu a i::before {
            padding: 6px;
        }

        .navmenu a, .navmenu a:focus {
            color: rgb(0 0 0);
            padding: 10px 10px;
            font-size: 13px;
            font-family: var(--nav-font);
            font-weight: 400;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            width: 100%;
        }
    }

    .service-details .services-list {
        padding: 10px 30px;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        margin-bottom: 20px;
    }

        .service-details .services-list a {
            display: block;
            line-height: 1;
            padding: 8px 0px 8px 15px;
            border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
            margin: 20px 0px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            transition: 0.3s;
        }

            .service-details .services-list a.active {
                color: var(--heading-color);
                font-weight: 700;
                border-color: var(--accent-color);
            }

            .service-details .services-list a:hover {
                border-color: var(--accent-color);
            }

    .service-details .services-img {
        margin-bottom: 20px;
    }

    .service-details h3 {
        font-size: 26px;
        font-weight: 700;
    }

    .service-details h4 {
        font-size: 20px;
        font-weight: 700;
    }

    .service-details p {
        font-size: 15px;
    }

    .service-details ul {
        list-style: none;
        padding: 0px;
        font-size: 15px;
    }

        .service-details ul li {
            padding: 5px 0px;
            display: flex;
            align-items: center;
        }

        .service-details ul i {
            font-size: 20px;
            margin-right: 8px;
            color: var(--accent-color);
        }

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: color-mix(in srgb, var(--default-color), transparent 85%);
            opacity: 1;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0px;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

    .theme-change ul li {
        margin: 0px 0.5rem;
    }

        .theme-change ul li .theme-item {
            height: 16px;
            width: 18px;
            display: flex;
            border: 1px solid rgb(228, 228, 228);
            cursor: pointer;
        }

            .theme-change ul li .theme-item::before, .theme-change ul li .theme-item::after {
                width: 50%;
                content: "";
            }

            .theme-change ul li .theme-item.theme-1::before {
                background-color: rgb(121, 121, 121);
            }

            .theme-change ul li .theme-item.theme-1::after {
                background-color: rgb(3, 3, 3);
            }

            .theme-change ul li .theme-item.theme-2::before {
                background-color: rgb(223, 26, 20);
            }

            .theme-change ul li .theme-item.theme-2::after {
                background-color: rgb(255, 255, 255);
            }

    .topnav-list li + li button {
        padding-left: 10px;
        margin-left: 10px;
    }

    .topnav-list li button, .font-adjust button {
        font-size: 15px;
        font-weight: 500;
        color: rgb(2, 22, 79);
        box-shadow: none;
        outline: 0px;
        border: none;
        background: transparent;
        padding: 5px;
    }

    .topnav {
        margin-bottom: 10px;
    }

    .top-search form {
        width: 40%;
        margin-left: auto;
    }

    .logo-img {
        margin: 0px 10px;
    }

    li.dropdown.lang-dropdown a {
        color: rgb(2, 22, 79);
        margin: 0px 5px;
    }

    .top-search a {
        color: rgb(255, 255, 255);
        font-weight: 500;
        font-size: 13px;
    }


    .date_box p {
        margin: 0px;
        font-size: 13px;
        color: rgb(34, 34, 34);
        font-weight: 500;
    }

    .date_box img {
        margin-right: 10px;
    }

    .date_time_section {
        padding: 7px 0px;
        background-color: rgb(65, 165, 224);
    }

    .banner-text {
        position: absolute;
        bottom: 0px;
        width: 100%;
        background-color: rgba(7, 34, 46, 0.8);
        padding: 10px 30px;
    }

        .banner-text h1 {
            font-size: 24px;
            font-weight: 500;
            color: rgb(255, 255, 255);
            line-height: 35px;
        }

        .banner-text p {
            color: rgb(255, 255, 255);
            margin: auto auto 10px;
        }

        .banner-text span {
            color: rgb(255, 255, 255);
        }

    .play-pause {
        position: absolute;
        bottom: 13px;
        right: 40px;
        z-index: 9999;
        border: 1px solid rgb(22, 47, 106);
        width: 25px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        border-radius: 50%;
        color: rgb(22, 47, 106);
        cursor: pointer;
        display: block !important;
    }

    .banner-section .owl-prev {
        width: 20px;
        height: 21px;
        top: auto;
        bottom: 15px;
        right: 70px;
        position: absolute;
    }

    .banner-section .owl-next {
        width: 20px;
        height: 16px;
        top: auto;
        bottom: 20px;
        position: absolute;
        right: 15px;
    }

    .banner-wrapper {
        position: relative;
    }

    .banner-section .owl-prev i, .banner-section .owl-next i {
        color: rgb(22, 47, 106);
    }

    .banner-section {
        padding: 0px;
        position: relative;
        height: 58vh;
    }

    .logo-box {
        padding: 31px 15px;
        border-radius: 10px;
        box-shadow: gray 0px 0px 4px;
    }

        .logo-box + .logo-box {
            margin-top: 22px;
        }

    .gov-logo-img img {
        height: 75px;
    }

    .whats_link_box {
        overflow: hidden;
        padding: 15px 12px;
        background-color: rgb(7, 34, 46);
        border-radius: 0px 0px 0px 30px;
    }

        .whats_link_box ul {
            height: 250px;
        }

    .whats_new {
        padding: 10px 12px;
        background-color: rgb(65, 165, 224);
    }

        .whats_new h3 {
            color: rgb(255, 255, 255);
            margin: 0px;
            font-size: 20px;
        }

    .whats_link_box ul li p {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 5px;
    }

    .whats_link_box ul li + li {
        margin-top: 7px;
        border-top: 1px dashed rgba(255, 255, 255, 0.3);
        padding-top: 7px;
    }

    .whats_link_page a {
        color: rgb(255, 255, 255);
        text-transform: capitalize;
        display: flex;
        align-items: center;
        font-size: 17px;
        justify-content: end;
        font-weight: 500;
    }

        .whats_link_page a span {
            display: inline-block;
            height: 35px;
            width: 35px;
            line-height: 35px;
            border-radius: 50%;
            background-color: rgb(65, 165, 224);
            text-align: center;
            color: rgb(255, 255, 255);
            margin-left: 10px;
        }

    .whats_link_box ul li span {
        color: rgb(255, 255, 255);
        display: inline-block;
        padding: 6px 10px;
        background-color: rgba(65, 165, 224, 0.2);
        border-radius: 30px;
        font-size: 12px;
    }

    .fdf-list span {
        background-color: transparent !important;
        padding: 0px !important;
    }

    .fdf-list a {
        display: flex;
    }

    .marquee-wrapper a {
        color: rgb(255, 255, 255);
    }

    .marquee-section .marquee-wrapper {
        background-color: rgb(7, 34, 46);
    }

    .marquee-wrapper {
        line-height: 1;
        padding: 15px;
    }

    .government_text {
        border-radius: 0px 0px 30px;
    }

    .about-section {
        background-color: rgb(211, 223, 239);
        padding: 0px;
    }

    .about-wrapper {
        padding: 20px 0px;
    }

        .about-wrapper h1 {
            color: rgb(32, 72, 121);
            font-weight: 600;
            text-transform: capitalize;
            font-size: 32px;
        }

        .about-wrapper h4 {
            color: rgb(32, 72, 121);
            font-weight: 600;
            text-transform: capitalize;
            margin-bottom: 5px;
            font-size: 20px;
        }

        .about-wrapper p {
            color: rgb(34, 34, 34);
            font-size: 15px;
            font-weight: 400;
            line-height: 28px;
            margin-bottom: 10px;
        }

    .about-button a {
        color: rgb(248, 116, 8);
        justify-content: start;
        font-weight: 500;
    }

    .about-img {
        height: 100%;
        width: 100%;
        position: relative;
    }

        .about-img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            object-position: left center;
        }

        .about-img::before {
            content: "";
            position: absolute;
            inset: 20px;
            border: 1px solid rgba(255, 255, 255, 0.7);
        }

    .post-wrapper {
        padding: 5px;
        border-radius: 10px;
    }

        .post-wrapper.facebook {
            background-color: rgb(255, 255, 255);
            padding: 50px 10px 0px;
            position: relative;
            margin-top: 20px;
            box-shadow: rgba(168, 168, 168, 0.3) 0px 0px 16px 0px;
            border-radius: 0px;
        }

        .post-wrapper.twitter {
            background-color: rgb(0, 191, 243);
        }

        .post-wrapper.contact {
            background-color: rgb(32, 72, 121);
        }

        .post-wrapper .heading-box {
            padding: 20px;
        }

            .post-wrapper .heading-box h3 {
                display: flex;
                align-items: center;
                padding: 15px;
                position: absolute;
                top: -20px;
                left: 0px;
                right: 0px;
                box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px;
                width: calc(100% - 20px);
                background-color: rgb(255, 255, 255);
                border-radius: 0px 0px 5px 5px;
                margin: 0px auto;
                font-size: 1.5rem;
                font-weight: normal;
            }

                .post-wrapper .heading-box h3::before {
                    content: "";
                    position: absolute;
                    right: 100%;
                    top: 0px;
                    border-right: 10px solid rgb(223, 223, 223);
                    border-top: 19px solid transparent;
                    border-bottom: 0px solid transparent;
                }

                .post-wrapper .heading-box h3::after {
                    content: "";
                    position: absolute;
                    left: 100%;
                    top: 0px;
                    border-left: 10px solid rgb(223, 223, 223);
                    border-top: 19px solid transparent;
                    border-bottom: 0px solid transparent;
                }

    section.faceboo_twitter_section {
        background: rgb(255, 245, 233);
    }

    .fblef > div {
        width: 100% !important;
        border-radius: 10px !important;
    }

    .fblef > iframe {
        display: block;
        margin: auto;
        border-radius: 10px !important;
    }

    .new_logo-box {
        text-align: center;
        display: flex;
        height: 100%;
    }

        .new_logo-box img {
            margin: auto;
            object-fit: contain;
        }

    .new_logo-box {
        padding: 10px;
        box-shadow: lightgray 0px 0px 3px;
    }

    .list_headings {
        background-color: rgb(32, 72, 121);
        padding: 15px;
    }

        .list_headings h3 {
            font-size: 22px;
            color: rgb(255, 255, 255);
            margin: 0px;
        }

    .list-wrapper {
        background-color: rgb(240, 240, 240);
    }

    .impHomeLinks {
        padding: 15px;
    }

        .impHomeLinks li + li {
            margin-top: 8px;
        }

        .impHomeLinks li a {
            color: rgb(34, 34, 34);
            font-weight: 500;
            font-size: 15px;
            transition: 0.4s ease-in-out;
        }

            .impHomeLinks li a:hover {
                color: rgb(32, 72, 121);
            }

    .Marquee {
        width: 100%;
        box-sizing: border-box;
        color: rgb(255, 255, 255);
        font-weight: 200;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        overflow: hidden;
        padding: 0px;
    }

    .Marquee-content {
        display: flex;
        animation: 25s linear 0s infinite normal none running marquee;
    }

        .Marquee-content:hover {
            animation-play-state: paused;
        }

    .Marquee-tag {
        width: 300px;
        margin: 0px 0.5em;
        padding: 0.5em;
        background: rgb(255, 255, 255);
        display: inline-flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        transition: 0.2s;
        border: 1px solid lightgray;
    }

        .Marquee-tag:hover {
            transform: scale(1.1);
            cursor: pointer;
        }

    @-webkit-keyframes marquee {
        0% {
            transform: translateX(0px);
        }

        100% {
            transform: translate(-50%);
        }
    }

    @keyframes marquee {
        0% {
            transform: translateX(0px);
        }

        100% {
            transform: translate(-50%);
        }
    }

    footer#footer {
        padding: 40px 0px 0px;
        background-color: rgb(226, 79, 45);
        color: rgb(255, 255, 255);
    }

    .right_inner.embaddresscontent.tabHCI h4, .footer-links h4 {
        color: rgb(255, 255, 255);
        margin-bottom: 15px;
        font-size: 22px;
        font-weight: 600;
    }

    .right_inner.embaddresscontent.tabHCI p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .footer-links ul li a {
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-family: Montserrat, serif;
    }

    .copyright {
        padding: 10px 0px;
        border-top: 1px solid rgba(255, 255, 255, 0.43);
        background: rgb(2, 22, 79);
    }

    .container.footer-top {
        margin-bottom: 10px;
    }

    .footer-top .logo {
        padding: 10px;
        width: fit-content;
        margin: auto;
    }

    .footer-links {
    }

    .copyright p {
        margin: 0px;
        font-size: 14px;
    }

    .dropdown ul li:hover a {
        border-radius: 0px;
    }

    .inner_breadcrumb {
        background: rgb(255, 255, 255);
        position: relative;
        margin: 0px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
    }

        .inner_breadcrumb .breadcrumb li {
            font-weight: 500;
            color: rgb(238, 238, 238);
            float: left;
            display: inline-block;
            line-height: 40px;
        }

            .inner_breadcrumb .breadcrumb li a {
                color: rgb(65, 165, 224);
            }

            .inner_breadcrumb .breadcrumb li.active {
                color: rgb(7, 34, 46);
            }

            .inner_breadcrumb .breadcrumb li + li::before {
                content: "/";
                float: left;
                padding: 0px 10px;
                color: rgb(7, 34, 46);
            }

    section.heading_banner {
        padding: 40px 0px;
        background-color: rgb(65, 165, 224);
    }

        section.heading_banner h1 {
            font-size: 30px;
            color: rgb(255, 255, 255);
            margin: 0px;
            font-weight: 600;
        }

    ul.breadcrumb {
        margin: 0px;
        padding: 0px;
    }

    .form-wrapper input, .form-wrapper input:focus {
        border: none;
        outline: none;
        border-radius: 0px;
        background-color: transparent;
        padding: 0px 25px;
        height: 45px;
        box-shadow: none;
    }

    .form-wrapper button {
        border: none;
        outline: none;
        box-shadow: none;
        text-align: center;
        width: 45px;
        line-height: 45px;
        height: 45px;
        font-size: 22px;
        display: block;
        color: rgb(0, 0, 0);
        background-color: transparent;
        padding-right: 15px;
    }

    .offcanvas.offcanvas-top {
        z-index: 999999;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
    }

    .post-box {
        height: 400px;
        overflow: auto;
    }

    .logo-img p {
        font-size: 26px;
        font-weight: 700;
        padding: 0px 15px;
        color: rgb(7, 34, 46);
    }

    .recent_wrapper {
    }

        .recent_wrapper ul {
            columns: 2;
        }

            .recent_wrapper ul li {
                border-bottom: 1px dashed rgb(204, 204, 204);
                padding: 10px 0px;
            }

            .recent_wrapper ul li {
                display: flex;
            }

                .recent_wrapper ul li .recent_img {
                    margin-right: 10px;
                    flex-shrink: 0;
                }

                    .recent_wrapper ul li .recent_img img {
                        width: 110px;
                    }

                .recent_wrapper ul li a {
                    color: rgb(34, 34, 34);
                    font-weight: 500;
                    font-size: 15px;
                }

                .recent_wrapper ul li span {
                    display: block;
                    font-size: 13px;
                    margin-top: 5px;
                }

        .recent_wrapper .whats_link_page a {
            color: rgb(7, 34, 46);
        }

    .recentupdate-nav {
        background: rgb(7, 34, 46);
        height: 100%;
        width: 350px;
        margin-right: 30px;
        border-radius: 10px;
    }

        .recentupdate-nav.nav-pills .nav-link.active {
            background-color: rgb(65, 165, 224);
            color: rgb(255, 255, 255);
        }

        .recentupdate-nav.nav-pills .nav-link {
            outline: none;
            border-bottom: 1px solid rgb(255, 255, 255);
            padding: 47px 4px;
            font-size: 20.6px;
            display: block;
            color: rgb(255, 255, 255);
            border-radius: 0px;
            position: relative;
            background: rgb(7, 34, 46);
        }

            .recentupdate-nav.nav-pills .nav-link.active::before {
                content: "";
                position: absolute;
                width: 0px;
                height: 0px;
                border-left: 7px solid transparent;
                border-right: 7px solid transparent;
                border-top: 12px solid rgb(65, 165, 224);
                top: 50%;
                right: -10px;
                margin: auto;
                transform: translateY(-50%) rotate(-210deg);
            }

    .twitter-tweet.twitter-tweet-rendered {
        margin: 0px !important;
    }

    .heading-box h3 img {
        width: 50px;
        margin-right: 20px;
    }

    .heading-box h3 {
        font-weight: 600;
    }

    .logo_wrap {
        box-shadow: gray 0px 0px 3px;
        margin: 5px 10px;
        padding: 10px 30px;
        background-color: rgb(255, 255, 255);
        border-radius: 10px;
    }

    .Initiatives-section {
        background: url("../img/inibg.svg") 0% 0% / cover no-repeat;
    }

    .initiatives-text h3 {
        font-size: 35px;
        font-weight: 600;
    }

    section.Initiatives-section button.owl-dot {
        background: rgb(65, 165, 224);
        border-radius: 50%;
        margin: 5px;
        padding: 5px !important;
    }

        section.Initiatives-section button.owl-dot.active {
            border-radius: 30px;
            background: rgb(7, 34, 46);
            padding: 5px 20px !important;
        }

    .Initiatives-section .owl-dots {
        text-align: center;
    }

    .footer-about p span {
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: bold;
        margin-top: 0px;
    }

    .footer-about a {
        padding: 10px;
        background: transparent;
    }

    .loginbtn + .loginbtn {
        margin-left: 15px;
    }

    .loginbtn a {
        display: inline-block;
        padding: 15px 20px;
        border-radius: 10px;
        color: rgb(255, 255, 255);
        background-color: rgb(7, 34, 46);
        text-align: center;
        line-height: 20px;
    }

    @media (max-width: 1300px) {
        .about-img img {
            height: 100%;
            width: 100%;
            object-fit: contain;
            object-position: center center;
        }
    }

    .post_content h4 {
        font-size: 18px;
        color: rgb(7, 34, 46);
        font-weight: bold;
        margin: 0px;
    }

    .post_content h2 {
        color: rgb(65, 165, 224);
        font-weight: 500;
        font-size: 25px;
        line-height: 32px;
    }

    .event_posts {
        padding: 12.5px;
        background: rgb(255, 255, 255);
        box-shadow: lightgray 0px 0px 8px;
    }

    .postallnew a {
        color: rgb(65, 165, 224);
        font-weight: 500;
    }

    .post_content {
        margin-top: 10px;
    }

        .post_content h6 {
            font-size: 14px;
            color: rgb(65, 165, 224);
            font-weight: 400;
        }

        .post_content p {
            font-size: 15px;
            color: rgb(34, 34, 34);
        }

    .posts_img img {
        aspect-ratio: 3 / 3;
        object-fit: cover;
    }

    .post_img img {
        aspect-ratio: 3 / 2;
    }

    .formbox {
        border-left: 1px solid rgba(7, 34, 46, 0.26);
        padding: 20px;
    }

    section.services_section, section.event-section {
        background: url("../img/inibg.svg") 0% 0% / cover no-repeat;
    }

    .services_ {
        background: rgb(255, 255, 255);
        border-radius: 8px;
        box-shadow: lightgray 0px 4px 4px;
    }

        .services_ img {
            margin: auto;
        }

    .govlogo {
        margin-right: 15px;
    }

        .govlogo img {
            max-width: 100px;
        }

    #menuLeft li a {
        background: url("../img/bullet-list-icon.png") left 1em no-repeat;
        color: rgb(81, 81, 81);
        display: block;
        line-height: 1.583em;
        padding: 8px 0px 8px 15px;
        text-decoration: none;
    }

    #menuLeft li {
        display: block;
        width: 100%;
        border-bottom: 1px dotted rgb(219, 219, 219);
    }

    .innerContentPart .rightPart {
        padding: 30px 0px 30px 20px;
        font-size: 1.25em;
    }

    .rightPart .menuTitle h3 {
        font-size: 36px;
        line-height: 1.228em;
        font-weight: 600;
        color: rgb(0, 0, 0);
        display: block;
        margin: 10px 0px;
    }

    ul#menuLeft {
        padding: 15px;
        box-shadow: rgba(41, 102, 173, 0.37) 0px 0px 5px;
        border-radius: 15px;
        background: rgb(255, 255, 255);
    }

    span.menuTitle h3 {
        font-size: 32px;
        color: rgb(32, 72, 121);
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 18px;
    }

    div#ContentPlaceHolder1_UserLeftMiddleMenu1_LeftMenu {
        position: sticky;
        top: 50px;
    }

    .recentupdate-nav.nav-pills .nav-link:nth-child(1) {
        border-radius: 10px 10px 0px 0px;
    }

    .recentupdate-nav.nav-pills .nav-link:nth-child(3) {
        border-radius: 0px 0px 10px 10px;
    }

    .top-header {
        padding: 5px 0px;
        background-color: rgb(255, 255, 255);
    }

    .form-wrapper {
        border-bottom: 1px solid lightgray;
        border-radius: 0px;
        width: 75%;
        margin: auto;
    }

        .form-wrapper input, .form-wrapper input:focus {
            border: none;
            outline: none;
            background-color: transparent;
            padding: 0px 25px 0px 0px;
            height: 60px;
            box-shadow: none;
            font-size: 40px;
            font-family: Montserrat;
            font-weight: 400;
            letter-spacing: 1px;
            border-radius: 0px;
            color: rgb(255, 255, 255);
        }

            .form-wrapper input::placeholder {
                color: rgb(255, 255, 255);
            }

        .form-wrapper button {
            border: none;
            outline: none;
            box-shadow: none;
            text-align: center;
            line-height: 45px;
            height: 45px;
            font-size: 22px;
            display: block;
            color: rgb(255, 255, 255);
            background-color: transparent;
            padding-right: 7px;
            font-family: Montserrat;
            font-weight: 600;
        }

    .header .social-links a {
        color: rgb(255, 255, 255);
        transition: 0.3s;
        line-height: 35px;
        width: 35px;
        height: 35px;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        margin-left: 10px;
    }

    .instagram {
        background: linear-gradient(45deg, rgb(240, 148, 51) 0%, rgb(230, 104, 60) 25%, rgb(220, 39, 67) 50%, rgb(204, 35, 102) 75%, rgb(188, 24, 136) 100%);
    }

    .header .social-links a.twitter {
        background-color: rgb(0, 0, 0) !important;
    }

    .theme-change {
        padding: 0px 5px 0px 0px;
        border-left: 1px solid rgb(2, 22, 79);
        height: 18px;
    }

    .font-adjust {
        padding: 0px 5px;
        border-right: 1px solid rgb(2, 22, 79);
        line-height: 1;
    }

    .news-lang {
        padding: 0px 5px;
    }

    .topnav-list {
        padding: 0px 5px;
    }

    .sidebtn-box {
        position: fixed;
        bottom: 20px;
        right: 0px;
        transform: translateY(-50%);
        z-index: 99999;
    }

        .sidebtn-box img {
            max-width: 100px;
        }

    .announcment-section {
        background: rgb(17, 78, 133);
        height: 47px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .announcment-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }

        .announcment-wrapper .a_leftText {
            padding-right: 30px;
        }

        .announcment-wrapper .a_leftText, .announcment-wrapper .a_rightText {
            color: rgb(255, 255, 255);
            font-size: 1.6rem;
            line-height: 28px;
            font-weight: 500;
            height: 47px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

            .announcment-wrapper .a_leftText::before {
                content: "";
                height: 55px;
                border-left: 22px solid rgb(255, 255, 255);
                position: absolute;
                transform: rotate(22deg);
                right: -9px;
                top: 0px;
            }

            .announcment-wrapper .a_leftText::after {
                content: "";
                height: 54px;
                border-left: 8px solid rgb(22, 47, 106);
                position: absolute;
                transform: rotate(20deg);
                right: 8px;
                top: -5px;
            }

    .announcment-section {
        background: rgb(0, 165, 84);
        height: 47px;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0px;
    }

    .announcment-wrapper .a_rightText::before {
        content: "";
        height: 55px;
        border-left: 22px solid rgb(255, 255, 255);
        position: absolute;
        transform: rotate(22deg);
        left: -9px;
        top: -5px;
    }

    .announcment-wrapper .a_rightText::after {
        content: "";
        height: 54px;
        border-left: 8px solid rgb(1 38 90);
        position: absolute;
        transform: rotate(20deg);
        left: 8px;
        top: -3px;
    }

    .lending_announce_dtls {
        overflow: hidden;
        background: rgb(255, 255, 255);
        height: 47px;
        display: flex;
        align-items: center;
        width: calc(100% - 260px);
        color: rgb(0, 0, 0);
    }

    .announcment-wrapper .a_rightText {
        padding-left: 30px;
        color: transparent;
    }

    .newscontainer {
        position: relative;
        padding: 30px;
        background-color: rgb(255, 255, 255);
        z-index: 1;
        overflow: hidden;
        border: 1px solid lightgray;
    }

        .newscontainer::before {
            position: absolute;
            top: 0px;
            left: -130px;
            content: "";
            height: 100%;
            width: 30%;
            background-color: rgb(22, 47, 106);
            z-index: -1;
            transform: skewX(-15deg);
        }

    .newlist-wrapper {
        padding: 25px;
        background-color: rgb(255, 255, 255);
        border-width: 1px 1px 5px;
        border-style: solid;
        border-color: rgb(182, 182, 182) rgb(182, 182, 182) rgb(0, 165, 84);
        border-image: initial;
    }

    .news-text p {
        font-size: 20px;
        color: rgb(22, 47, 106);
        font-weight: bold;
    }

    .news-text {
        margin-bottom: 10px;
    }

    .newsdate span {
        color: rgb(22, 47, 106);
        position: relative;
        font-size: 24px;
        font-weight: 600;
    }

        .newsdate span sup {
            font-size: 16px;
            font-weight: 500;
            left: 0px;
            top: -0.7em;
        }

            .newsdate span sup::before {
                content: "";
                position: absolute;
                top: 50%;
                right: -95px;
                height: 2px;
                width: 90px;
                background: rgb(182, 182, 182);
            }

    .newsdate p {
        font-size: 20px;
        font-weight: 600;
        color: rgb(22, 47, 106);
    }

    .newsbtn a {
        background-color: rgb(22, 47, 106);
        padding: 10px 12px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        text-transform: capitalize;
        border-radius: 10px;
        border-bottom: 4px solid rgb(0, 165, 84);
        display: inline-block;
        line-height: 1;
        z-index: 1;
        position: relative;
        overflow: hidden;
    }

        .newsbtn a::before {
            content: "";
            position: absolute;
            bottom: auto;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 0px;
            z-index: -1;
            transition: 0.4s ease-in-out;
            background-color: rgb(0, 165, 84);
        }

        .newsbtn a:hover::before {
            height: 100%;
            top: auto;
            bottom: 0px;
        }

    .newsbtn {
        margin-top: 10px;
    }

    .headingbox {
        margin-top: 15px;
    }

        .headingbox h2 {
            color: rgb(255, 255, 255);
            font-weight: 600;
            text-align: center;
        }

    .newsicon-img img {
        margin: auto;
    }

    .news-headingbox {
        padding: 15px;
    }

    .news-section button.owl-prev, .news-section button.owl-next {
        position: absolute;
        top: 50%;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        transform: translateY(-50%);
        transition: 0.4s ease-in-out;
        background: rgb(255, 255, 255) !important;
        border: 1px solid rgb(182, 182, 182) !important;
        color: rgb(22, 47, 106) !important;
    }

    .news-section button.owl-prev {
        left: -20px;
    }

        .news-section button.owl-prev:hover, .news-section button.owl-next:hover {
            background: rgb(0, 165, 84) !important;
            color: rgb(255, 255, 255) !important;
        }

    .news-section button.owl-next {
        right: -20px;
    }

    .chairmen-links {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

        .chairmen-links a {
            border: 1px solid rgb(255, 255, 255);
            font-size: 13px;
            color: rgb(255, 255, 255);
            display: inline-block;
            padding: 5px;
        }

    .chairmenbox {
        text-align: center;
    }

    .chairmen-img img {
        margin: auto;
        background: rgb(255, 255, 255);
        border-radius: 50%;
        width: 85px;
        height: 85px;
        object-fit: contain;
        border: 5px solid rgb(22, 47, 106);
    }

    .chairmenbox {
        padding: 30px 24px;
        height: 100%;
        background: linear-gradient(90deg, rgb(22, 47, 106), rgb(0, 165, 84));
    }

    .chairmenttext h3 {
        font-size: 20px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        margin-bottom: 5px;
    }

    .chairmenttext p {
        color: rgb(255, 255, 255);
        font-weight: 500;
    }

    .chairmenttext {
        margin-top: 20px;
    }

    .about-section {
        background: linear-gradient(90deg, rgb(22, 47, 106), rgb(0, 165, 84));
        padding: 50px 0px;
    }

    .about-wrapper p {
        color: rgb(255, 255, 255);
        font-size: 17px;
        font-weight: 500;
    }

    .about-wrapper h1 {
        font-size: 40px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        margin-bottom: 15px;
    }

    .about-btn a {
        display: inline-block;
        padding: 10px 12px;
    }

    .photo-wrapper {
        position: relative;
    }

    .gallery-wrapper .nav-pills .nav-link.active {
        background: rgb(0, 165, 84);
        color: rgb(255, 255, 255);
    }

    .gallery-wrapper .nav-pills .nav-link {
        font-size: 18px;
        font-weight: 600;
        color: rgb(22, 47, 106);
        border-radius: 0px;
    }

    .gallery-wrapper .nav.nav-pills {
        border-bottom: 2px solid rgb(22, 47, 106);
    }

    .gallery-img img {
        aspect-ratio: 3 / 2;
        object-fit: cover;
    }

    .photo-wrapper button.owl-prev, .photo-wrapper button.owl-next {
        position: absolute;
        top: -17%;
        right: 50px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        transform: translateY(-50%);
        transition: 0.4s ease-in-out;
        background: rgb(255, 255, 255) !important;
        border: 1px solid rgb(182, 182, 182) !important;
        color: rgb(22, 47, 106) !important;
    }

    .photo-wrapper button.owl-prev {
        right: 90px;
    }

    .photo-wrapper .play-pause {
        top: -24%;
        right: 5px;
        border-color: rgb(158, 158, 158);
        color: rgb(22, 47, 106);
        bottom: auto;
        height: 35px;
        width: 35px;
        line-height: 34px;
    }

    .viewbox {
        margin-right: 140px;
    }

        .viewbox a {
            color: rgb(22, 47, 106);
            font-weight: 600;
            font-size: 15px;
        }

    .gallery-box {
        border: 1px solid rgb(214, 214, 214);
        height: 100%;
        margin: 5px;
    }

    .gallery-text p {
        color: rgb(34, 34, 34);
        margin: 0px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-weight: 600;
    }

    .gallery-text {
        padding: 10px;
    }

    .pdf-wrapper img {
        height: 183px;
        object-fit: contain;
        box-shadow: rgb(197, 197, 197) 0px 0px 10px;
        aspect-ratio: auto;
        margin: auto;
        padding: 9px;
        width: auto !important;
    }

    .footer-links ul li + li {
        border-top: 1px dashed rgb(255, 255, 255);
        margin: 4px 0px;
        padding: 4px 0px;
    }

    .font-adjust ul li + li {
        margin-left: 8px;
    }

    .header.fixed {
        left: 0px;
        right: 0px;
    }

    .gallery-text span {
        color: rgb(34, 34, 34);
        font-size: 14px;
        font-weight: 500;
    }

    .sec-title h6 {
        color: rgb(34, 34, 34);
        font-weight: 600;
    }

    .sec-title h2 {
        margin-top: 15px;
        font-size: 34px;
        font-weight: bold;
        color: rgb(0, 165, 83);
    }

    .sec-title p {
        color: rgb(22, 47, 106);
        font-weight: 500;
        font-size: 17px;
        width: 80%;
        line-height: 28px;
    }

    .gallery-img {
        position: relative;
    }

    .youtube-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    section.calculatore-section {
        position: relative;
    }

        section.calculatore-section::before {
            position: absolute;
            content: "";
            top: 0px;
            left: 0px;
            height: 7px;
            width: 100%;
            background: linear-gradient(45deg, rgb(22, 47, 106), rgb(0, 165, 83));
        }

    .headermenus {
        width: 100%;
        flex-direction: column;
    }

    .dropinner {
        position: absolute;
        top: 100px;
        left: 0px;
        background-color: rgb(255, 255, 255);
        padding: 10px;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease-in-out;
        z-index: 9;
    }

    .dropdown:hover .dropinner {
        opacity: 1;
        visibility: visible;
        top: 47px;
    }

    .bannerlayer {
        position: absolute;
        top: 0px;
        left: 0px;
        opacity: 0.4;
    }

    video {
        width: 100%;
        height: 58vh;
        object-fit: cover;
        object-position: center center;
    }

    .header.header-hover {
        background: rgb(255, 255, 255);
    }

    .navmenu .dropdown > a {
        position: relative;
    }

    .navmenu > .dropdown > a::before {
        content: "";
        position: absolute;
        bottom: 0px;
        left: auto;
        right: 0px;
        height: 3px;
        width: 0%;
        transition: 0.4s ease-in-out;
        background: rgb(243, 112, 34);
    }

    .navmenu .dropdown > a:hover::before {
        width: 100%;
        right: auto;
        left: 0px;
    }

    .header-wrapper {
        border-bottom: 1px solid rgb(85, 85, 85);
        width: 100%;
        padding: 5px 0px;
        display: flex;
        justify-content: end;
        align-items: center;
    }

    .bannertext p {
        color: rgb(109, 110, 113);
        font-size: 15px;
        margin-top: 15px;
    }

    .pagelinks.hover-border-2::before, .pagelinks.hover-border-2::after {
        position: absolute;
        content: "";
        width: 10%;
        height: 25%;
        transition: 0.35s;
    }

    .pagelinks.hover-border-2::before {
        bottom: 0px;
        left: 0px;
        border-left: 1px solid rgb(2, 22, 79);
        border-bottom: 1px solid rgb(2, 22, 79);
    }

    .pagelinks.hover-border-2::after {
        top: 0px;
        right: 0px;
        border-right: 1px solid rgb(2, 22, 79);
        border-top: 1px solid rgb(2, 22, 79);
    }

    .pagelinks.hover-border-2:hover::before, .pagelinks.hover-border-2:hover::after {
        width: 99%;
        height: 99%;
    }

    .pagelinks-holder {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1000px;
        margin: 10px auto 35px;
    }

    .pagelinks {
        position: relative;
        width: auto;
        height: auto;
        background-color: transparent;
        border: none;
        cursor: pointer;
        margin: 0px;
        min-width: 150px;
        text-align: center;
        display: inline-block !important;
        color: rgb(2, 22, 79) !important;
    }

        .pagelinks span {
            position: relative;
            display: inline-block;
            font-size: 14px;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: capitalize;
            top: 0px;
            left: 0px;
            width: 100%;
            padding: 15px 20px;
            transition: 0.3s;
        }

    .aboutpage {
        padding: 0px 20px;
        border-right: 1px solid rgb(109, 110, 113);
    }

    .business-box {
        text-align: center;
        position: relative;
    }

        .business-box::before {
            content: "";
            position: absolute;
            bottom: -10px;
            left: auto;
            right: 0px;
            height: 5px;
            width: 0%;
            background: rgb(233, 130, 71);
            transition: 0.4s ease-in-out;
        }

        .business-box:hover::before {
            width: 100%;
            right: auto;
            left: 0px;
        }

    .business-wrapper {
        display: flex;
        justify-content: space-around;
    }

    .business-img img {
        margin: auto;
        height: 70px;
    }

    .business-text span {
        width: 35px;
        height: 35px;
        display: inline-block;
        border: 1px solid rgb(233, 130, 71);
        line-height: 35px;
        border-radius: 50%;
        color: rgb(233, 130, 71);
        transition: 0.4s ease-in-out;
    }

    .business-box:hover .business-text span {
        background: rgb(233, 130, 71);
        color: rgb(255, 255, 255);
    }

    .business-text h5 {
        font-size: 18px;
        font-weight: 400;
        height: 50px;
        margin-top: 10px;
    }

    .business-heading {
        margin-bottom: 30px;
        overflow: hidden;
        position: relative;
    }

        .business-heading h3 {
            font-size: 40px;
            color: rgb(2, 22, 79);
            position: relative;
            display: inline-block;
        }

            .business-heading h3::before {
                content: "";
                position: absolute;
                top: 50%;
                left: -100%;
                height: 2px;
                width: 170px;
                background: rgba(2, 22, 79, 0.52);
                transform: translateY(-50%);
            }

            .business-heading h3::after {
                content: "";
                position: absolute;
                top: 50%;
                right: -100%;
                height: 2px;
                width: 170px;
                background: rgba(2, 22, 79, 0.52);
                transform: translateY(-50%);
            }

    section.business-section {
        padding: 50px 0px 150px;
        background: rgb(252, 226, 216);
        position: relative;
    }

    .header.fixed .container-fluid.topheader {
        display: none;
    }

    .container-fluid.topheader, .navheader {
        transition: 0.4s ease-in-out;
    }

    .header.fixed .navheader {
        align-items: center !important;
    }

    .report-section .business-heading h3::before {
        left: -60%;
    }

    .report-section .business-heading h3::after {
        right: -60%;
    }

    .set > button {
        display: block;
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-weight: bold;
        transition: 0.2s linear;
        width: 50px;
        height: 50px;
        text-align: center;
        position: absolute;
        top: -75px;
        right: 180px;
        line-height: 50px;
        border-radius: 50%;
        z-index: 9999;
        border: none !important;
        background: none !important;
    }

    .set {
        position: relative;
        height: auto;
        background-color: rgb(32, 72, 121);
    }

    .accordion-container {
        position: relative;
        height: auto;
        margin: 10px auto;
        background: rgb(32, 72, 121);
    }

    .report-wrapper img {
        margin: auto;
        width: 100%;
    }

    .content {
        display: none;
        background: rgb(226, 79, 45);
        transition: 0.4s ease-in-out;
    }

    .searchModule--popular {
        padding: 40px 0px;
        width: 75%;
        margin: auto;
    }

        .searchModule--popular h4 {
            margin-bottom: 20px;
            color: rgb(226, 79, 45);
        }

    .searchModule--popular-item:not(:last-child) {
        margin-right: 40px;
    }

    .searchModule--popular-item a {
        line-height: 2rem;
        font-size: 1.05rem;
        color: rgb(229, 229, 229);
        font-family: Montserrat;
        transition: 0.4s ease-in-out;
        position: relative;
    }

        .searchModule--popular-item a::before {
            content: "";
            position: absolute;
            left: auto;
            right: 0px;
            bottom: -5px;
            width: 0px;
            height: 3px;
            background: rgb(226, 79, 45);
            transition: 0.4s ease-in-out;
        }

        .searchModule--popular-item a:hover {
            color: rgb(226, 79, 45);
        }

            .searchModule--popular-item a:hover::before {
                width: 100%;
                left: 0px;
                right: auto;
            }

    .businessbottom-box {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
    }

        .businessbottom-box img {
            width: 100%;
        }

    .businesstext {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }

        .businesstext img {
            margin: auto;
            width: 70px !important;
        }

        .businesstext h3 {
            color: rgb(255, 255, 255);
            margin-top: 10px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
            font-size: 24px;
            text-shadow: rgb(74, 74, 74) -1px 2px;
        }

    .business-carousel .owl-stage .owl-item:nth-child(2n) .item {
        margin-top: 50px;
    }

    section.bannersection .owl-dots {
        text-align: center;
        position: absolute;
        bottom: 40px;
        left: 50%;
    }

        section.bannersection .owl-dots button.owl-dot {
            margin: 0px 5px;
            border-radius: 50%;
            padding: 8px !important;
            background: rgb(236, 105, 31) !important;
        }

            section.bannersection .owl-dots button.owl-dot.active {
                background: rgb(33, 42, 79) !important;
            }

    section.bannersection .owl-nav button.owl-prev, section.bannersection .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        font-size: 24px;
        color: rgb(33, 42, 79);
        background: rgb(255, 255, 255);
        width: 45px;
        height: 45px;
        line-height: 45px;
        border-radius: 50%;
        transition: 0.4s ease-in-out;
        transform: translateY(-50%);
    }

    section.bannersection .owl-nav button.owl-prev {
        left: 45px;
    }

    section.bannersection .owl-nav button.owl-next {
        right: 45px;
    }

        section.bannersection .owl-nav button.owl-prev:hover, section.bannersection .owl-nav button.owl-next:hover {
            background: rgb(236, 105, 31);
            color: rgb(255, 255, 255);
        }

    .businessimg > img {
        transition: 1.5s ease-in-out;
        border-radius: 15px;
    }


    .socialmedia {
        position: fixed;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
    }

        .socialmedia li {
            position: relative;
            width: 53px;
            height: 53px;
            display: block;
            margin: 0px;
            padding: 0px;
            cursor: pointer;
            color: rgb(255, 255, 255);
        }

            .socialmedia li .mystickyelements-social-icon {
                width: 53px;
                height: 53px;
                color: rgb(255, 255, 255);
                float: left;
                position: relative;
                text-align: center;
                font-size: 17px;
                transition: 0.5s;
                cursor: pointer;
                display: flex;
                justify-content: center;
                align-items: center;
                line-height: 1.2;
                flex-wrap: wrap;
                text-decoration: none;
            }

            .socialmedia li:nth-child(1) .mystickyelements-social-icon {
                border-radius: 10px 0px 0px;
            }

            .socialmedia li:nth-child(4) .mystickyelements-social-icon {
                border-radius: 0px 0px 0px 10px;
            }

            .socialmedia li .mystickyelements-social-text {
                border-radius: 10px 0px 0px 10px;
                color: rgb(255, 255, 255);
                font-size: 14px;
                line-height: 1.2;
                position: absolute;
                top: 0px;
                left: 100%;
                height: 53px;
                white-space: nowrap;
                transform: rotateY(90deg);
                transition: 1s;
                transform-origin: 100% 0px 0px;
            }

                .socialmedia li .mystickyelements-social-text.wigidst {
                    border-radius: 10px 0px 0px 10px;
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    line-height: 1.2;
                    position: absolute;
                    top: 0px;
                    left: 100%;
                    height: auto;
                    white-space: nowrap;
                    transform: rotateY(90deg);
                    transition: 1s;
                    transform-origin: 100% 0px 0px;
                    width: 300px;
                }

                .socialmedia li .mystickyelements-social-text > a {
                    color: rgb(255, 255, 255);
                    text-decoration: none;
                    display: inline-block;
                    vertical-align: top;
                    min-width: 137px;
                    height: 100%;
                    padding-top: 19px;
                    padding-right: 19px;
                    padding-left: 19px;
                    text-align: center;
                    font-size: 15px;
                }

            .socialmedia li:hover .mystickyelements-social-text {
                transform: rotate(0deg);
                left: auto;
                right: 100%;
            }

            .socialmedia li:hover .mystickyelements-social-icon {
                border-radius: 0px;
            }

    .mystickyelements-social-icon.instagram {
        background: linear-gradient(135deg, rgb(88, 43, 205) 0px, rgb(237, 76, 51) 50%, rgb(247, 211, 111) 100%);
    }

    span.mystickyelements-social-icon a {
        color: rgb(255, 255, 255);
    }

    .searchtop-padd {
        padding-top: 10%;
    }

    .business {
        position: relative;
        transform-style: preserve-3d;
        perspective: 2000px;
    }

    .fliptext-wrapper {
        position: absolute;
        height: 100%;
        width: 100%;
        background: rgb(33, 42, 79);
        backface-visibility: hidden;
        transform: rotateY(180deg);
        transition: transform 1s;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        top: 0px;
        left: 0px;
        border-radius: 15px;
        padding: 10px;
    }

    .firstcard {
        transition: transform 1s;
    }

    .business:hover .firstcard {
        transform: rotateY(-180deg);
    }

    .business:hover .fliptext-wrapper {
        transform: rotateY(0deg);
    }

    .fliptext-wrapper p {
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 1.6;
    }

    .read_more_1 {
        border: 2px solid rgb(236, 105, 31);
        border-radius: 50px;
        text-transform: capitalize;
        letter-spacing: 0.1em;
        text-align: center;
        position: relative;
        overflow: hidden;
        display: inline-block;
        z-index: 1;
        background-color: transparent;
        color: rgb(255, 255, 255);
        font-size: 18px;
        padding: 7px 20px;
        font-family: Roboto, sans-serif;
        font-weight: 400;
        text-decoration: none;
        transition: 0.5s;
    }

        .read_more_1:hover {
            border: 1px solid rgb(236, 105, 31);
            color: rgb(255, 255, 255);
        }

        .read_more_1 a {
            color: rgb(255, 255, 255);
        }

        .read_more_1 span {
            position: absolute;
            width: 25%;
            height: 100%;
            background-color: rgb(236, 105, 31);
            transform: translateY(150%);
            border-radius: 50%;
            transition: 1s;
            z-index: -1;
        }

        .read_more_1:hover span {
            transform: translateY(0px) scale(3.15);
        }

        .read_more_1 span:first-child {
            left: calc(0%);
            transition-delay: calc(0s);
        }

        .read_more_1 span:nth-child(2) {
            left: calc(25%);
            transition-delay: calc(0.1s);
        }

        .read_more_1 span:nth-child(3) {
            left: calc(50%);
            transition-delay: calc(0.2s);
        }

        .read_more_1 span:nth-child(4) {
            left: calc(75%);
            transition-delay: calc(0.3s);
        }

        .read_more_1 span:nth-child(5) {
            left: calc(100%);
            transition-delay: calc(0.4s);
        }

    .fliptext-wrapper h3 {
        font-size: 24px;
        color: rgb(255, 255, 255);
        font-weight: 600;
    }

    button.btn-close.text-reset, button.btn-close.text-reset:focus {
        opacity: 1;
        background: no-repeat;
        font-size: 20px;
        padding-right: 50px;
        padding-top: 50px;
        box-shadow: none;
        outline: none;
        color: rgb(255, 255, 255) !important;
    }

    .accordion-flush .accordion-body {
        padding: 0px 0px 15px;
        color: rgb(62, 79, 111);
        font-size: 15px;
    }

    .accordion-body {
        display: none;
    }

    .card {
        margin-bottom: 0px;
        border: none;
        border-radius: 5px;
        box-shadow: rgba(1, 41, 112, 0.1) 0px 0px 30px;
    }

    .card-body {
        padding: 0px 15px;
        box-shadow: none;
        border-bottom: 2px solid rgb(240, 106, 30);
    }

    .accordion-header {
        margin-bottom: 0px;
        font-size: 18px;
        padding: 15px 0px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .accordion-body ul li + li {
        margin-top: 20px;
    }

    .accordion-body ul li a {
        color: rgb(34, 34, 34);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    section.document-section {
        background: rgb(238, 238, 238);
        padding: 50px 0px;
    }

    .container-px-0 [class*="container"] {
        padding-left: 0px;
        padding-right: 0px;
    }

    .c-gutter-0 [class*="col-"], .row.c-gutter-0 > [class*="col-"] {
        padding-left: 0px;
        padding-right: 0px;
    }

    .service-v2 [class*="col-"]:nth-child(1) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.9);
    }

    .service-single.with-icon.layout2 {
        padding: 12px 37px;
        position: static;
        height: 100%;
        cursor: pointer;
        transition: 0.4s ease-in-out;
    }

        .service-single.with-icon.layout2:hover {
            background: linear-gradient(to top, rgb(221, 68, 84) 0%, rgb(221, 144, 68) 100%) !important;
        }

    .text-primary {
        color: #dd4f52 !important;
    }

    .ds a:not(.btn) {
        color: rgb(255, 255, 255);
    }

    .icon-box p {
        margin: 20px auto 0px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-single.with-icon.layout2 a.btn {
        border-radius: 50%;
        margin-top: 28px;
        min-width: 38px;
        border: 1px solid rgb(255, 255, 255);
        height: 40px;
        width: 40px;
        line-height: 40px;
        padding: 0px;
    }

    .ds [class*="btn-outline-"] {
        color: rgb(255, 255, 255);
    }

    .service-single.with-icon.layout2 h6, .service-single.with-icon.layout2 h5 {
        margin-bottom: 10px;
        margin-top: 10px;
        padding-bottom: 5px;
        position: relative;
        color: rgb(255, 255, 255);
    }

    .ds {
        background-color: rgb(9, 68, 90);
        color: rgb(255, 255, 255);
        padding: 0px;
    }

    .icon-styled.fs-50 {
        width: 60px;
        display: block;
        margin: auto;
    }

    .service-single.with-icon.layout2:hover .icon-styled.fs-50 img {
        filter: brightness(0) invert(1);
    }

    .service-single.with-icon.layout2 h6::after, .service-single.with-icon.layout2 h5::after {
        background: rgb(221, 68, 84);
        bottom: 0px;
        content: "";
        display: inline-block;
        height: 2px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%);
        width: 66px;
    }

    .service-v2 [class*="col-"]:nth-child(2) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.8);
    }

    .service-v2 [class*="col-"]:nth-child(3) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.6);
    }

    .service-v2 [class*="col-"]:nth-child(4) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.4);
    }

    .service-v2 [class*="col-"]:nth-child(5) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.3);
    }

    .service-v2 [class*="col-"]:nth-child(6) .service-single.with-icon.layout2 {
        background: rgba(1, 38, 90, 0.1);
    }

    .ls {
        clear: both;
        position: relative;
    }

    .cover-image {
        background-position: 50% 50%;
        inset: 0px;
        display: block;
        position: absolute;
        z-index: 5;
        background-size: cover;
        background-repeat: no-repeat;
    }

        .cover-image.s-cover-left {
            width: 50%;
        }

    .s-py-xl-160 > [class*="container"] {
        padding-bottom: 100px;
        padding-top: 100px;
    }

    .cover-image > img {
        visibility: hidden;
    }

    .content-center {
        margin: 0px auto;
        max-width: 650px;
        padding: 10px;
    }

    .special-heading.numeric {
        position: relative;
    }

    .special-heading.numeric {
        font-size: 50px;
        font-weight: bold;
        background: linear-gradient(to top, rgb(221, 68, 84) 0%, rgb(221, 144, 68) 100%);
        -webkit-text-fill-color: transparent;
        font-family: Montserrat, serif;
        line-height: 60px;
    }

    .content-center p {
        font-size: 16px;
        line-height: 26px;
        font-weight: 500;
        color: rgb(34, 34, 34);
    }

    .special-heading.numeric::before {
        left: 0px;
    }

    .divider-45 {
        margin-top: 30px;
    }

    .cover-image.s-cover-right {
        left: auto;
        width: 50%;
    }

    a.clickbtn {
        padding: 10px 20px;
        border-radius: 30px;
        outline: none;
        border: none;
        color: rgb(255, 255, 255);
        background: linear-gradient(to top, rgb(221, 68, 84) 0%, rgb(221, 144, 68) 100%) !important;
    }

        a.clickbtn i {
            font-size: 12px;
        }

    .funfact-section {
        position: relative;
        overflow: hidden;
        padding: 50px 0px;
        background-color: rgb(1, 38, 90);
    }

        .funfact-section .big-text {
            position: absolute;
            left: 0px;
            bottom: -20px;
            width: 100%;
            text-align: center;
            font-size: 100px;
            line-height: 130px;
            font-family: Lexend, sans-serif;
            text-transform: uppercase;
            font-weight: 600;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
            letter-spacing: 5px;
        }

        .funfact-section .bg-layer .bg-1 {
            position: absolute;
            left: -40px;
            top: 0px;
            height: 100%;
            width: 382px;
            background-repeat: no-repeat;
            opacity: 0.04;
        }

        .funfact-section .bg-layer .bg-2 {
            position: absolute;
            top: 0px;
            right: 0px;
            height: 100%;
            width: 334px;
            background-repeat: no-repeat;
            opacity: 0.04;
        }

    .stats .stats-item {
        padding: 10px;
        width: 100%;
    }

        .stats .stats-item span {
            font-size: 55px;
            display: block;
            color: rgb(255, 255, 255);
            font-weight: 700;
        }

    .icontext {
        margin-left: 5px;
        font-size: 20px;
        font-weight: 600;
        color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
    }

    .stats .stats-item p {
        color: rgb(255, 255, 255);
        padding: 0px;
        margin: 0px;
        font-size: 18px;
        font-weight: 500;
    }

    .Marquee {
        width: 100%;
        box-sizing: border-box;
        color: rgb(255, 255, 255);
        font-weight: 200;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        overflow: hidden;
        padding: 0px;
    }

    .Marquee-content {
        display: flex;
        animation: 25s linear 0s infinite normal none running marquee;
    }

        .Marquee-content:hover {
            animation-play-state: paused;
        }

    .Marquee-tag {
        width: 300px;
        margin: 0px 0.5em;
        padding: 0.5em;
        background: rgb(255, 255, 255);
        display: inline-flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center;
        transition: 0.2s;
        border: 1px solid lightgray;
    }

        .Marquee-tag:hover {
            transform: scale(1.1);
            cursor: pointer;
        }

    @-webkit-keyframes marquee {
        0% {
            transform: translateX(0px);
        }

        100% {
            transform: translate(-50%);
        }
    }

    @keyframes marquee {
        0% {
            transform: translateX(0px);
        }

        100% {
            transform: translate(-50%);
        }
    }

    .siteFooter {
        padding: 40px 0px 40px;
        border-top: 3px solid rgb(0, 51, 102);
        background: linear-gradient(rgba(0, 51, 102, 0.16) 0px, rgba(36, 45, 82, 0) 51%, rgb(255, 255, 255));
    }

    footer.siteFooter h4 {
        font-size: 26px;
        color: rgb(255 255 255);
        font-weight: 600;
    }


    .footer-about p {
        font-weight: 500; 
        font-size: 16px;
    }

    .footer-bottom p {
        color: rgb(34, 34, 34);
        font-weight: 500;
        margin-top: 15px;
    }

    .fliptext-wrapper ul {
        padding-left: 15px;
    }

        .fliptext-wrapper ul li + li {
            margin-top: 2px;
        }

        .fliptext-wrapper ul li a {
            color: rgb(255, 255, 255);
            font-size: 14px;
            transition: 0.4s ease-in-out;
        }

            .fliptext-wrapper ul li a:hover {
                color: rgb(236, 105, 31);
            }

    .oil-timeline {
        padding: 66px 0px;
        background: rgb(255, 255, 255);
    }

    .timeline-grid {
        display: flex;
    }

    .timeline-left {
        width: 50%;
    }

        .timeline-left h2 {
            font-size: 52px;
            line-height: 1.1;
            margin-bottom: 30px;
        }

    .year-badge {
        color: rgb(240, 88, 51);
        font-weight: 700;
        font-size: 22px;
    }

    .timeline-left p {
        color: rgb(68, 68, 68);
        margin: 12px 0px 15px;
        max-width: 420px;
    }

    .timeline-left a {
        color: rgb(240, 88, 51);
        font-weight: 600;
        text-decoration: none;
    }

    .oilTimelineSwiper {
        height: 150px;
    }

    .timeline-nav button {
        border: 1px solid rgb(240, 88, 51);
        background: transparent;
        color: rgb(240, 88, 51);
        padding: 8px 14px;
        margin-right: 8px;
        cursor: pointer;
    }

    .timeline-right {
        width: 30%;
        position: relative;
    }

    .timeline-rail {
        position: relative;
        padding-left: 30px;
    }

        .timeline-rail::before {
            content: "";
            position: absolute;
            left: 34%;
            top: 0px;
            height: 2px;
            width: 100%;
            background: rgb(209, 209, 209);
        }

    .swiper-wrapper {
        position: relative;
        margin-bottom: 0px;
        cursor: pointer;
        color: rgb(85, 85, 85);
    }

    #playPauseBtn {
        border: 1px solid rgb(240, 88, 51);
        background: transparent;
        color: rgb(240, 88, 51);
        padding: 8px 14px;
        cursor: pointer;
        font-size: 14px;
    }

        #playPauseBtn.play::after {
            content: " Play";
        }

    .timeline-right {
        position: relative;
    }

    .yearSwiper {
    }

        .yearSwiper .swiper-slide {
            color: rgb(102, 102, 102);
            font-weight: 600;
            cursor: pointer;
            position: relative;
            padding-left: 25px;
        }

            .yearSwiper .swiper-slide::before {
                content: "";
                width: 10px;
                height: 10px;
                background: rgb(187, 187, 187);
                border-radius: 50%;
                position: absolute;
                left: 0px;
                top: 6px;
            }

        .yearSwiper .swiper-slide-thumb-active {
            color: rgb(240, 88, 51);
        }

            .yearSwiper .swiper-slide-thumb-active::before {
                background: rgb(240, 88, 51);
                box-shadow: rgba(215, 25, 32, 0.18) 0px 0px 0px 6px;
            }

    .timeline-gridbox {
        display: flex;
        gap: 20px;
        width: 50%;
        padding: 50px 0px 0px 60px;
    }

    .changeimg img {
        max-width: 100%;
    }

    .changeimg {
        width: 50%;
    }

    .dropdown:hover .dropinner ul {
        opacity: 1;
        visibility: visible;
    }

    .inner-pages .container {
        padding-right: 0px;
        max-width: 100%;
        padding-left: 9%;
    }

    .timeline-carousel .owl-nav {
        text-align: center;
    }

        .timeline-carousel .owl-nav button {
            width: 50px;
            height: 50px;
            margin: 0px 10px;
            border-radius: 50%;
            border: 2px solid rgb(146, 146, 146) !important;
            color: rgb(146, 146, 146) !important;
        }

    .timline-img img {
        margin: 0px;
        width: 89px !important;
    }

    .timline-img {
        position: relative;
        margin-bottom: 0px;
        height: 200px;
        display: flex;
        align-items: end;
        padding: 25px 0px;
    }

        .timline-img::before {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0px;
            width: 40%;
            height: 4px;
            background: rgb(243, 89, 51);
        }

    .timeline-wrapper {
        position: relative;
    }

        .timeline-wrapper::before {
            content: "";
            position: absolute;
            top: 42.3%;
            left: 0px;
            width: 100%;
            height: 4px;
            background: rgb(229, 229, 229);
            transform: translateY(-50%);
        }

    .timline-content {
        height: 200px;
        padding: 25px 0px;
    }

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-content h2 {
        color: rgb(1, 38, 90);
    }

    .timline-content h2 {
        font-size: 30px;
        color: rgb(0 0 0);
    }

    .timline-content h3 {
        font-size: 18px;
        font-weight: 600;
        color: rgb(152, 152, 152);
        line-height: 28px;
    }

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box {
        flex-direction: column-reverse;
    }

        .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-img::before {
            content: "";
            position: absolute;
            top: -2px;
            left: 0px;
            width: 40%;
            height: 4px;
            background: rgb(0, 37, 89);
        }

        .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-img {
            align-items: start;
        }

    .timeline-box {
        display: flex;
        flex-direction: column;
        padding-right: 80px;
    }

    .timline-content p {
        font-weight: 500;
        color: rgb(152, 152, 152);
    }

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-img i {
        font-size: 65px;
        color: rgb(1, 38, 90);
    }

    .timeline-carousel .owl-stage-outer .owl-stage .owl-item .item .timeline-box .timline-img i {
        font-size: 65px;
        color: rgb(243, 89, 51);
    }

    .Internal a {
        color: rgb(34, 34, 34);
    }

    .high-contrast {
        background-color: rgb(0, 0, 0) !important;
        color: rgb(255, 255, 255) !important;
    }

        .high-contrast a {
            text-decoration: underline;
            color: rgb(255, 255, 0) !important;
        }

        .high-contrast button, .high-contrast .theme-item {
            background-color: rgb(0, 0, 0) !important;
            color: rgb(255, 255, 255) !important;
            border: 1px solid rgb(255, 255, 255) !important;
        }

    .Internal a {
        color: rgb(34, 34, 34);
    }

    .page-title {
        background: url("../img/inner-banner.jpg") left center / cover no-repeat;
        padding: 70px 0px;
    }

        .page-title h2.title {
            margin: 0px 0px 25px;
            font-size: 50px;
            color: rgb(255, 255, 255);
            font-weight: bold;
            line-height: 1.26;
        }

    .breadcrumbs {
        background: rgb(244, 245, 248);
        padding: 15px 0px;
        border-bottom: 1px solid rgb(225, 225, 225);
    }

    span.parent a, span.parent i {
        color: rgb(1, 38, 90);
    }

    .breadcrumbs span {
        padding-right: 15px;
    }

    .breadcrumbs span, .breadcrumbs a {
        font-size: 15px;
        color: rgb(97, 101, 111);
        font-weight: bold;
        text-transform: uppercase;
    }

    .breadcrumbs i {
        padding-right: 15px;
        color: rgb(190, 190, 190);
    }

    table.capital-structure {
        width: 100%;
        border-collapse: collapse;
        border: 2px solid rgb(1, 38, 90);
    }

        table.capital-structure th, table.capital-structure td {
            padding: 14px; 
            border: 1px solid rgb(1, 38, 90) !important;
        }

        table.capital-structure thead th {
            font-weight: 600;
            text-transform: uppercase;
            background-color: rgb(1, 38, 90) !important;
            color: rgb(255, 255, 255) !important;
        }

        table.capital-structure tbody td {
            background-color: rgb(255, 255, 255) !important;
        }

        table.capital-structure tbody tr:nth-child(2n) td {
            background-color: rgb(255, 243, 238) !important;
        }

        table.capital-structure tbody td.title {
            color: rgb(1, 38, 90) !important;
            font-weight: 600;
        }

        table.capital-structure tbody td.amount {
            font-weight: 600;
            text-align: left;
        }

    table.shareholding-table {
        width: 100%;
        border-collapse: collapse;
        border: 2px solid rgb(1, 38, 90);
    }

        table.shareholding-table th, table.shareholding-table td {
            padding: 12px;
            font-size: 14px;
            vertical-align: top;
            border: 1px solid rgb(154, 154, 154) !important;
        }

        table.shareholding-table thead th {
            font-weight: 600;
            text-align: left;
            background-color: rgb(1, 38, 90) !important;
            color: rgb(255, 255, 255) !important;
        }

        table.shareholding-table tbody tr:nth-child(2n) td {
            background-color: rgb(247, 247, 247) !important;
        }

        table.shareholding-table tbody tr.total-row td {
            font-weight: 700;
            color: rgb(1, 38, 90) !important;
            background-color: rgb(255, 240, 234) !important;
        }

    .text-center-force {
        text-align: center !important;
    }

    .news-item {
        background: rgb(243, 243, 243);
        padding: 12px 16px;
        border-radius: 4px;
    }

    .news-date {
        font-size: 0.9rem;
        color: rgb(108, 117, 125);
    }

    .news-title {
        color: rgb(255, 87, 34);
        text-decoration: none;
        font-weight: 500;
    }

        .news-title:hover {
            text-decoration: underline;
        }

    a.download-link.block {
        display: block;
    }

    .navmenu .dropdown ul li + li {
        padding-top: 5px;
        border-top: 1px solid rgb(255, 255, 255);
    }

    .navmenu .dropdown .dropdown ul {
        border-radius: 0px;
    }

    .topnav-list li a {
        color: rgb(34, 34, 34);
    }

    button#langToggleBtn, button#langToggleBtn:focus {
        box-shadow: none;
        outline: none;
        border: none;
        background: transparent;
    }

    ul.position-static {
        background: rgb(255, 255, 255) !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

        ul.position-static li a {
            color: rgb(109, 110, 113) !important;
        }

    li.list-group-item {
        border-radius: 0px !important;
    }

    .search-formbox .form-wrapper {
        border: none;
        width: auto;
    }

    li.list-group-item a {
        color: rgb(1, 38, 90);
        font-size: 20px;
        position: relative;
    }

        li.list-group-item a::before {
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "";
            color: rgb(1, 38, 90);
        }

    .form-wrapper button:hover {
        background: transparent;
    }

    .hero-video {
        position: relative;
    }

        .hero-video::before {
            content: "";
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 58vh;
            z-index: 1;
            background: linear-gradient(91deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.4) 20%, rgba(4, 13, 41, 0) 100%) 0% 0% no-repeat padding-box padding-box transparent;
            opacity: 0.6;
        }

    .videbanner-text {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        z-index: 2;
        backdrop-filter: blur(3px);
        padding: 0px 14px;
        border-radius: 14px;
        background-color: #0000006e;
    }

        .videbanner-text h1 {
            font-size: 60px;
            font-weight: bold;
            color: rgb(255, 255, 255);
            margin-bottom: 20px;
        }

        .videbanner-text p {
            font-size: 20px;
            font-weight: 500;
            color: rgb(255, 255, 255);
        }

    .announcment-section {
        background: rgb(238 92 46);
        height: 47px;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0px;
    }

    .announcment-wrapper {
        display: flex;
        align-items: center;
        width: 100%;
    }

        .announcment-wrapper .a_leftText, .announcment-wrapper .a_rightText {
            color: rgb(255, 255, 255);
            font-size: 1.6rem;
            line-height: 28px;
            font-weight: 500;
            height: 47px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .announcment-wrapper .a_leftText {
            padding-right: 30px;
        }

            .announcment-wrapper .a_leftText::before {
                content: "";
                height: 55px;
                border-left: 22px solid rgb(255, 255, 255);
                position: absolute;
                transform: rotate(22deg);
                right: -9px;
                top: 0px;
            }

            .announcment-wrapper .a_leftText::after {
                content: "";
                height: 54px;
                border-left: 8px solid rgb(1 38 90);
                position: absolute;
                transform: rotate(20deg);
                right: 8px;
                top: -5px;
            }

    .lending_announce_dtls {
        overflow: hidden;
        background: rgb(255, 255, 255);
        height: 47px;
        display: flex;
        align-items: center;
        width: calc(100% - 260px);
        color: rgb(0, 0, 0);
    }

    .announcment-wrapper .a_rightText {
        padding-left: 30px;
        color: transparent;
    }

    .our-business {
        padding: 50px 0px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .tab-li-ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    .tabss {
        background: rgb(255, 255, 255);
        border-radius: 8px;
        padding: 0px 0px 10px;
        cursor: pointer;
        height: 100%;
        transition: 0.3s;
        overflow: hidden;
        border: 2px solid white;
    }

        .tabss.active {
            background: rgb(0, 51, 102);
            color: rgb(255, 255, 255);
        }

        .tabss .heading {
            padding: 0px 10px;
            margin: 10px 0px;
        }

    .sub-text {
        font-size: 14px;
        color: rgb(102, 102, 102);
        padding: 0px 10px;
    }

    .tabss.active .sub-text {
        color: rgb(221, 221, 221);
    }

    .tabs-contents {
        display: none;
    }

        .tabs-contents.active {
            display: block;
        }

    .thumb img {
        width: 100%;
        border-radius: 0px;
    }

    .arrows-box {
        text-align: right;
        margin: 0px;
    }

    .ArrowPrev, .ArrowNext {
        background: rgb(0, 51, 102);
        color: rgb(255, 255, 255);
        border: none;
        padding: 8px 15px;
        cursor: pointer;
    }

    section.our-business {
        position: relative;
        padding: 0px;
    }

    .tabbox {
        position: absolute;
        left: 0px;
        right: 0px;
        bottom: 15%;
        height: auto;
        z-index: 999;
    }

    section.our-business > .container {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 10%;
        z-index: 2;
    }

    .tabs-contents-container {
        position: relative;
    }

    .our-business .tabs-contents-container::after {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 45%;
        width: 100%;
        z-index: 1;
        background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 27%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box padding-box transparent;
        opacity: 0.75;
    }

    section.our-business > .container .main-heading {
        font-size: 45px;
        font-weight: bold;
        color: #000;
    }

    .our-business .tabs-contents-container::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        height: 31%;
        width: 100%;
        z-index: 1;
        background: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 27%, rgba(0, 0, 0, 0) 100%) 0% 0% no-repeat padding-box padding-box transparent;
        opacity: 0.75;
    }

    .tabss.active .heading {
        color: white;
    }

    .tabss img {
        height: 208px;
        aspect-ratio: 3 / 0;
        width: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    .csr-sports-section {
        background: rgb(223, 223, 223);
        overflow: hidden;
    }

    .csr-card-box {
        background: rgb(255, 255, 255);
        padding: 50px;
        box-shadow: rgba(0, 0, 0, 0.15) 0px 20px 60px;
        border-radius: 4px;
    }

    .csr-img-box img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .csr-content-box {
        padding-left: 40px;
    }

        .csr-content-box h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            color: rgb(17, 17, 17);
        }

        .csr-content-box p {
            font-size: 18px;
            line-height: 1.7;
            color: rgb(102, 102, 102);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            margin-bottom: 30px;
        }

    .csr-know-more {
        color: rgb(229, 57, 53);
        font-weight: 600;
        text-decoration: none;
        font-size: 18px;
    }

        .csr-know-more span {
            margin-left: 8px;
            transition: 0.3s;
        }

        .csr-know-more:hover span {
            margin-left: 15px;
        }

    .csrSportsSwiper .swiper-slide {
        opacity: 0.4;
        transform: scale(0.9);
        transition: 0.4s;
    }

    .csrSportsSwiper .swiper-slide-active {
        opacity: 1;
        transform: scale(1);
    }

    .sw.bi {
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: rgb(255, 255, 255);
        font-size: 22px;
        border-radius: 4px;
        transition: 0.3s;
    }

    .sw.bi-chevron-left {
        left: 8%;
    }

    .sw.bi-chevron-right {
        right: 8%;
    }

    .sw.bi:hover {
        background: rgb(229, 57, 53);
    }

    section.inner-pages {
        background: rgb(239, 239, 239);
    }

    :root {
        --primary: #012659;
        --accent: #e95833;
        --white: #ffffff;
        --text-light: rgba(255,255,255,0.85);
    }

    /* =========================
       FOOTER BASE
    ========================= */

    .siteFooter {
        position: relative;
        background: linear-gradient(135deg,#012659,#021b3f,#012659);
        background-size: 300% 300%;
        animation: gradientMove 12s ease infinite;
        padding: 30px 0 24px; 
        overflow: hidden;
    }

    /* Smooth background movement */
    @keyframes gradientMove {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    /* Animated Accent Light Effect */
    .siteFooter::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle,var(--accent),transparent 70%);
        opacity: 0.15;
        top: -100px;
        right: -100px;
        animation: moveLight 8s ease-in-out infinite alternate;
    }

    @keyframes moveLight {
        from {
            transform: translate(0,0)
        }

        to {
            transform: translate(-80px,60px)
        }
    }

    .siteFooter .container {
        position: relative;
        z-index: 2;
    }

    /* =========================
       HEADINGS
    ========================= */

    .siteFooter h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

        .siteFooter h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 45px;
            height: 3px;
            background: var(--accent);
            transition: 0.4s;
        }

        .siteFooter h4:hover::after {
            width: 75px;
        }

    /* =========================
       LINKS
    ========================= */

    .footerlinks {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footerlinks li {
            margin-bottom: 2px;
        }

        .footerlinks a {
            text-decoration: none;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
            /* font-weight: 300; */
        }

        /* Hover Animation */
        .footerlinks a { 
            padding-left: 15px;
        }

            .footerlinks a::before {
                content: "";
                position: absolute;
                left: -12px;
                top: 50%;
                transform: translateY(-50%);
                width: 6px;
                height: 6px;
                background: var(--accent);
                border-radius: 50%;
                opacity: 0;
                transition: 0.3s;
            }

            .footerlinks a::before {
                opacity: 1;
                left: -2px;
            }

    .footer-about p{
        color:white;
    }
    /* =========================
       ABOUT TEXT
    ========================= */
    .footer-about p {
        font-size: 14px;
        line-height: 1.7; 
    } 

    .siteFooter::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,var(--accent),transparent,var(--accent));
        background-size: 200% 104%;
        animation: borderMove 6s linear infinite;
    }

    @keyframes borderMove {
        0% {
            background-position: 0%
        }

        100% {
            background-position: 200%
        }
    }

    /* =========================
       FADE UP COLUMN ANIMATION
    ========================= */

    .siteFooter .col-md-3 {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.8s ease forwards;
    }

        .siteFooter .col-md-3:nth-child(1) {
            animation-delay: 0.2s
        }

        .siteFooter .col-md-3:nth-child(2) {
            animation-delay: 0.4s
        }

        .siteFooter .col-md-3:nth-child(3) {
            animation-delay: 0.6s
        }

        .siteFooter .col-md-3:nth-child(4) {
            animation-delay: 0.8s
        }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:767px) {
        .siteFooter {
            padding: 20px 0;
        }

            .siteFooter h4::after {
                left: 50%;
                transform: translateX(-50%);
            }
    }


    /* =========================
       Bullet point 
    ========================= */

    /* card design */

    .ui-bullet-card {
        background: #fff;
        padding: 25px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all .4s ease;
        height: 100%;
    }

        .ui-bullet-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.15);
        }

    .ui-title {
        font-weight: 600;
        color: #003366;
        margin-bottom: 18px;
    }

    /* animated icon list */

    .ui-icon-list {
        list-style: none;
        padding: 0;
    }

        .ui-icon-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            transition: .3s;
            position: relative;
        }

            .ui-icon-list li:hover {
                transform: translateX(8px);
                color: #005fb0;
            }

        .ui-icon-list i {
            color: #ce901f;
            font-size: 18px;
            transition: .3s;
        }

        .ui-icon-list li:hover i {
            transform: scale(1.2);
        }

    /* pulse bullet */

    .ui-pulse-list {
        list-style: none;
        padding: 0;
    }

        .ui-pulse-list li {
            position: relative;
            padding-left: 26px;
            margin-bottom: 12px;
            transition: .3s;
        }

            .ui-pulse-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 7px;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #005fb0;
                animation: pulseBullet 2s infinite;
            }

    @keyframes pulseBullet {

        0% {
            box-shadow: 0 0 0 0 rgba(0,95,176,.6)
        }

        70% {
            box-shadow: 0 0 0 8px rgba(0,95,176,0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(0,95,176,0)
        }
    }

    /* gradient bullet */

    .ui-gradient-list {
        list-style: none;
        padding: 0;
    }

        .ui-gradient-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            transition: .3s;
        }

            .ui-gradient-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 6px;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background: linear-gradient(45deg,#005fb0,#ce901f);
            }

            .ui-gradient-list li:hover {
                color: #005fb0;
                padding-left: 34px;
            }

    /* arrow slide list */

    .ui-arrow-list {
        list-style: none;
        padding: 0;
    }

        .ui-arrow-list li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 12px;
            transition: .3s;
        }

            .ui-arrow-list li::before {
                content: "➜";
                position: absolute;
                left: 0;
                color: #ce901f;
                transition: .3s;
            }

            .ui-arrow-list li:hover {
                padding-left: 30px;
                color: #005fb0;
            }

                .ui-arrow-list li:hover::before {
                    transform: translateX(5px);
                }

    /* number list modern */

    .ui-step-list {
        counter-reset: step;
        list-style: none;
        padding: 0;
    }

        .ui-step-list li {
            counter-increment: step;
            padding-left: 38px;
            margin-bottom: 14px;
            position: relative;
            transition: .3s;
        }

            .ui-step-list li::before {
                content: counter(step);
                position: absolute;
                left: 0;
                top: 0;
                width: 26px;
                height: 26px;
                background: linear-gradient(45deg,#005fb0,#003366);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 13px;
                font-weight: 600;
                transition: .3s;
            }

            .ui-step-list li:hover::before {
                background: #ce901f;
                transform: scale(1.1);
            }


    /* ==========
    Whats_new 
    ========== */


    /* Timeline */

    .notice-wrapper {
        position: relative;
        padding-left: 90px;
    }

        .notice-wrapper::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #003366;
            opacity: .15;
        }

    /* Notice Card */

    .notice-card {
        position: relative;
        background: #fff;
        border-radius: 10px;
        padding: 18px 20px;
        margin-bottom: 18px;
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.22);
        transition: .3s;
        border-left: 4px solid #ce901f;
    }

        .notice-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 0px 2px rgba(0, 0, 0, 0.22);
        }

    /* Date Badge */

    .notice-date {
        position: absolute;
        left: -90px;
        top: 15px;
        background: #003366;
        color: #fff;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 600;
        box-shadow: 0 4px 10px rgba(0,0,0,.2);
    }

    /* Icon */

    .notice-icon {
        font-size: 20px;
        color: #ce901f;
        margin-right: 8px;
    }

    /* Link */

    .notice-link {
        color: #ff5a1f;
        text-decoration: none;
        font-weight: 500;
    }

        .notice-link:hover {
            color: #003366;
        }

    /* PDF Icon */

    .pdf-icon {
        color: #e63946;
        font-size: 18px;
        margin-left: 6px;
    }

    /* Animation */

    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 0 3px rgba(206,144,31,.5);
        }

        70% {
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.63);
        }

        100% {
            box-shadow: 0 0 0 3px rgb(179, 161, 0);
        }
    }

    .notice-card.new {
        animation: pulseGlow 2s infinite;
    }

    /* Archive */

    .archive-box {
        text-align: end;
    }

        .archive-box a {
            color: #003366;
            font-weight: 600;
            text-decoration: none;
        }

        .archive-box i {
            color: #ce901f;
            margin-right: 6px;
        }


    /* ==================cards =========== */


    /* CARD */

    .doc-card {
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        transition: .4s;
        position: relative;
        transform: translateZ(0);
    }

        .doc-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.15);
        }

    /* THUMBNAIL */

    .doc-thumb {
        width: 100%;
        object-fit: cover;
    }

    /* FILE BADGE */

    .file-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--accent);
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
    }

    /* INFO */

    .doc-info {
        padding: 15px;
    }

    .doc-title {
        font-weight: 600;
        font-size: 15px;
        color: var(--primary);
        margin-bottom: 6px;
    }

    .doc-date {
        font-size: 13px;
        color: #777;
    }

    /* ACTION BUTTONS */

    .doc-actions {
        margin-top: 12px;
        display: flex;
        gap: 10px;
    }

    .btn-view {
        background: var(--primary);
        color: white;
        border-radius: 30px;
        font-size: 13px;
        padding: 6px 14px;
    }

        .btn-view:hover {
            background: #01153a;
            color: white;
        }

    .btn-download {
        background: var(--accent);
        color: white;
        border-radius: 30px;
        font-size: 13px;
        padding: 6px 14px;
    }

        .btn-download:hover {
            background: #d34d24;
            color: white;
        }

    /* ICON ANIMATION */

    .preview-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size: 40px;
        color: white;
        opacity: .85;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: translate(-50%,-50%) scale(1)
        }

        50% {
            transform: translate(-50%,-50%) scale(1.15)
        }

        100% {
            transform: translate(-50%,-50%) scale(1)
        }
    }

    #docFrame {
        width: 100%;
        max-width: 100%;
        border: 0;
        display: block;
    }

        #docFrame img {
            max-width: 100%;
        }

    .doc-frame-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    #docFrame {
        width: 100%;
        border: 0;
    }

    #mainImg {
        max-width: 100%;
        width: 100%;
    }
    /* ================== award and assosiate ============ */

    /* section */

    /* .award-section{
    padding:70px 0;
    background:linear-gradient(135deg,#f6f9ff,#eef2ff);
    } */

    .btn-outline-warning {
        --bs-btn-color: #e95833;
        --bs-btn-border-color: #e95833;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #e95833;
        --bs-btn-hover-border-color: #0e2246;
        --bs-btn-focus-shadow-rgb: 255,193,7;
        --bs-btn-active-color: #fdfdfd;
        --bs-btn-active-bg: #e95833;
        --bs-btn-active-border-color: #ffc107;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #fff;
        --bs-btn-disabled-bg: transparent;
        --bs-btn-disabled-border-color: #ffc107;
        --bs-gradient: none;
    }
    /* title */

    .award-title-main {
        text-align: center;
        font-weight: 700;
        font-size: 34px;
        color: var(--primary);
        margin-bottom: 60px;
        position: relative;
    }

        .award-title-main:after {
            content: "";
            width: 90px;
            height: 4px;
            background: var(--accent);
            display: block;
            margin: 12px auto;
            border-radius: 10px;
            animation: lineMove 2s infinite alternate;
        }

    @keyframes lineMove {
        from {
            width: 60px
        }

        to {
            width: 140px
        }
    }

    /* card */

    .award-card {
        position: relative;
        border-radius: 18px;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 15px 45px rgba(0,0,0,.08);
        transition: .5s;
    }

        .award-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,.12);
        }

        /* gradient border */

        .award-card::before {
            content: "";
            position: absolute;
            inset: 0;
            padding: 2px;
            background: linear-gradient(120deg, var(--primary), var(--accent));
            border-radius: 18px;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: -1;
        }

    /* image */

    .award-img {
        position: relative;
        overflow: hidden;
        height: 100%;
    }

        .award-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s;
        }

    /*.award-card:hover img {
        transform: scale(1.08);
    }*/

    /* shine effect */

    .award-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
        transform: skewX(-20deg);
    }

    .award-card:hover .award-img::after {
        animation: shine 1s;
    }

    @keyframes shine {
        100% {
            left: 130%;
        }
    }

    /* year badge */

    .year-badge {
        position: absolute;
        top: 18px;
        left: 18px;
        background: var(--accent);
        color: #fff;
        padding: 6px 16px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 6px 18px rgba(0,0,0,.15);
    }

    /* content */

    .award-content {
        padding: 30px;
    }

    /* info rows */

    .award-info {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
    }

        .award-info i {
            font-size: 18px;
            color: var(--accent);
            margin-top: 3px;
        }

    .label {
        font-weight: 600;
        color: var(--primary);
        display: block;
        margin-bottom: 2px;
    }

    /* date */

    .present-date {
        margin-top: 15px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #f1f5ff;
        padding: 7px 12px;
        border-radius: 8px;
        font-size: 14px;
        color: var(--primary);
    }

    /* responsive */

    @media(max-width:768px) {

        .award-info {
            flex-direction: column;
        }
    }



    /* certificate ======= */


    /* main wooden frame */
    .certificate-frame {
        padding: 18px;
        background: linear-gradient(145deg,#2c1a12,#4a2b1d,#2c1a12);
        box-shadow: 0 25px 40px rgba(0,0,0,.45), inset 0 4px 6px rgba(255,255,255,.15), inset 0 -6px 8px rgba(0,0,0,.6);
        border-radius: 4px;
    }

    /* bevel layer */
    .frame-inner {
        padding: 12px;
        background: linear-gradient( 145deg, #5a3a2c, #2e1b14 );
        box-shadow: inset 0 4px 5px rgba(255,255,255,.2), inset 0 -4px 6px rgba(0,0,0,.6);
    }

    /* golden inner border */
    .frame-mat {
        padding: 14px;
        background: #d4af37;
        box-shadow: inset 0 0 0 6px #f2d16b, inset 0 0 8px rgba(0,0,0,.3);
    }

        .frame-mat img {
            display: block;
            width: 500px;
            max-width: 100%;
            background: #fff;
            padding: 10px;
            box-shadow: inset 0 0 8px rgba(0,0,0,.2);
        }

    section.inner-section {
        position: relative;
    }


    .director-modal {
        z-index: 1;
    }

        .director-modal::before {
            content: '';
            height: 100%;
            width: 100%;
            position: absolute;
            z-index: -1;
            top: 0;
            left: 0;
            background-image: url(../img/bgwall.jpg);
            background-size: 450px;
            opacity: .3;
        }


    /* ====================== cheif vigilance  official =================== */
    .announcement {
        font-size: 18px;
        font-weight: 500;
        color: #022255;
        animation: fadeSlide 1s ease;
    }

        .announcement i {
            color: #eb5d31;
            margin-right: 8px;
        }

    /* profile card */

    .cvo-profile-card {
        background: #fff;
        padding: 40px 25px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
        position: relative;
        overflow: hidden;
        animation: cardFloat 1.2s ease;
    }

        .cvo-profile-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg,#022255,#eb5d31);
        }

    /* image */

    .profile-img {
        width: 150px;
        height: 150px;
        margin: auto;
        border-radius: 50%;
        padding: 6px;
        background: linear-gradient(135deg,#022255,#eb5d31);
        animation: imgPulse 3s infinite;
    }

        .profile-img img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

    /* button */

    .btn-main {
        background: #022255;
        color: #fff;
        border-radius: 30px;
        padding: 10px 22px;
        margin-top: 10px;
        transition: .3s;
    }

        .btn-main:hover {
            background: #eb5d31;
            color: #fff;
            transform: translateY(-3px);
        }

    /* info box */

    .info-box {
        background: #fff;
        padding: 35px;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
        animation: fadeSlide 1.3s ease;
    }

    .section-title {
        color: #eb5d31;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .contact-line i {
        color: #022255;
        margin-right: 8px;
    }

    /* links */

    .links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .quick-link {
        background: #f8f9ff;
        padding: 14px 16px;
        border-radius: 10px;
        text-decoration: none;
        color: #022255;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: .3s;
    }

        .quick-link i {
            color: #eb5d31;
            font-size: 18px;
        }

        .quick-link:hover {
            background: #022255;
            color: #fff;
            transform: translateY(-4px);
        }

            .quick-link:hover i {
                color: #fff;
            }

    /* animations */

    @keyframes fadeSlide {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes cardFloat {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes imgPulse {
        0% {
            box-shadow: 0 0 0 0 rgba(235,93,49,.5)
        }

        70% {
            box-shadow: 0 0 0 20px rgba(235,93,49,0)
        }

        100% {
            box-shadow: 0 0 0 0 rgba(235,93,49,0)
        }
    }

    /* responsive */

    @media(max-width:768px) {

        .links-grid {
            grid-template-columns: 1fr;
        }
    }


    /* ============ board of director============== */


    .board-title {
        color: #022255;
        font-weight: 700;
    }

    .board-sub {
        color: #eb5d31;
        max-width: 700px;
        margin: auto;
    }

    .director-card {
        background: linear-gradient(180deg,#fff,#eef3ff);
        padding: 30px;
        border-radius: 18px;
        transition: 0.4s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        cursor: pointer;
    }

        .director-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

    .profile-ring {
        width: 120px;
        height: 120px;
        margin: auto;
        border-radius: 50%;
        padding: 4px;
        background: linear-gradient(45deg,#eb5d31,#022255);
    }

        .profile-ring img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
        }

    .role {
        font-size: 14px;
        color: #666;
    }

    .view-btn {
        background: #022255;
        color: #fff;
        border-radius: 30px;
        padding: 6px 18px;
    }

        .view-btn:hover {
            background: #eb5d31;
            color: white;
        }

    .director-modal {
        border-radius: 20px;
        padding: 20px;
    }

    .modal-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 4px solid #eb5d31;
        margin-bottom: 10px;
    }

    @keyframes ring {
        0% {
            filter: hue-rotate(0deg);
        }

        100% {
            filter: hue-rotate(360deg);
        }
    }



    @keyframes bgMove {

        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 1000px 0;
        }
    }

    .media-buttons {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .media-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        color: #fff;
        transition: all .3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .press-btn {
        background: linear-gradient(45deg,#022255,#1a5bd8);
    }

    .media-btn2 {
        background: linear-gradient(45deg,#eb5d31,#ff8c5a);
    }

    .media-btn i {
        font-size: 16px;
    }

    /* hover animation */

    .media-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        color: #fff;
    }

    .more-link {
        color: #eb5d31;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: .3s;
    }

        .more-link:hover {
            gap: 10px;
            color: #022255;
        }

    p#modalpara {
        max-height: 300px;
        overflow-y: auto;
        text-align: justify;
        font-size: 15px;
        color: black;
        backdrop-filter: blur(2px);
        padding: 14px;
        border-radius: 12px;
        box-shadow: 0 -1px 1px 2px #ff3c0033;
        background: #01265a87;
    }



    #mainLoad {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #005df14f;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999999;
        transition: opacity .6s ease;
        backdrop-filter: blur(4px);
    }

        #mainLoad img {
            width: 120px;
            animation: loaderZoom 1.4s ease-in-out infinite;
        }

    @keyframes loaderZoom {
        0% {
            transform: scale(1)
        }

        50% {
            transform: scale(1.01)
        }

        100% {
            transform: scale(1)
        }
    }



    .loading {
        display: flex;
        flex-direction: row;
    }

    .loading__letter {
        font-size: 88px;
        font-weight: normal;
        font-family: 'Eurostile','Microgramma','Bank Gothic','Arial Black',sans-serif;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #e4e70b;
        animation-name: bounce;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }

        .loading__letter:nth-child(2) {
            animation-delay: .1s;
        }

        .loading__letter:nth-child(3) {
            animation-delay: .2s;
        }

        .loading__letter:nth-child(4) {
            animation-delay: .3s;
        }

        .loading__letter:nth-child(5) {
            animation-delay: .4s;
        }

        .loading__letter:nth-child(6) {
            animation-delay: .5s;
        }

        .loading__letter:nth-child(7) {
            animation-delay: .6s;
        }

        .loading__letter:nth-child(8) {
            animation-delay: .8s;
        }

        .loading__letter:nth-child(9) {
            animation-delay: 1s;
        }

        .loading__letter:nth-child(10) {
            animation-delay: 1.2s;
        }

    @keyframes bounce {
        0% {
            transform: translateY(0px)
        }

        40% {
            transform: translateY(-40px);
        }

        80%, 100% {
            transform: translateY(0px);
        }
    }


    @media (max-width: 700px) {
        .loading__letter {
            font-size: 50px;
        }
    }

    @media (max-width: 340px) {
        .loading__letter {
            font-size: 40px;
        }
    }

    /* ===============================
       COLOR VARIABLES
    ================================= */
    :root {
        --black-main: #0f1115;
        --black-light: #12151c;
        --black-card: #1a1f29;
        --black-border: #2a2f3a;
        --yellow-main: #ffc107 !important;
        --yellow-hover: #ffca2c;
        --text-light: #ffc107;
        --text-muted: #ffc107;
        --text-dim: #ffc107;
    }

    /* ===============================
       DEFAULT THEME
    ================================= */
    body.default-theme {
        background: #ffffff;
        color: #222;
        transition: all .3s ease;
    }

    body.dark-theme footer p, body.dark-theme footer a {
        color: var(--text-light) !important;
    }

    .footerlinks a::before, .siteFooter h4::after {
        background: var(--text-light) !important;
    }

    /* ===============================
       DARK THEME BASE
    ================================= */
    body.dark-theme {
        background: var(--black-main);
        color: var(--text-light);
        transition: all .3s ease;
    }

        /* ===============================
       HEADER / NAVBAR
    ================================= */
        body.dark-theme header,
        body.dark-theme .header,
        body.dark-theme .navbar,
        body.dark-theme .top-header, body.dark-theme table.capital-structure thead th, body.dark-theme table.capital-structure tbody td {
            background: var(--black-light) !important;
            border-bottom: 1px solid var(--black-border);
        }

            body.dark-theme .navbar a,
            body.dark-theme .menu a {
                color: var(--text-light) !important;
            }

                body.dark-theme .navbar a:hover {
                    color: var(--yellow-main) !important;
                }

        /* ===============================
       HERO / BANNER
    ================================= */
        body.dark-theme .banner,
        body.dark-theme .hero,
        body.dark-theme .carousel,
        body.dark-theme .slider {
            background: var(--black-light) !important;
        }

            body.dark-theme .banner h1,
            body.dark-theme .banner h2 {
                color: #ffffff;
            }

        /* ===============================
       SECTIONS
    ================================= */
        body.dark-theme section,
        body.dark-theme .section,
        body.dark-theme .bg-light,
        body.dark-theme .light-bg {
            background: var(--black-light) !important;
        }

        body.dark-theme .bg-white {
            background: var(--black-main) !important;
        }

        /* ===============================
       CARDS / BOXES
    ================================= */
        body.dark-theme .card,
        body.dark-theme .box,
        body.dark-theme .service-box,
        body.dark-theme .feature-box {
            background: var(--black-card);
            border: 1px solid var(--black-border);
            color: var(--text-light);
            transition: .3s;
        }

            body.dark-theme .card:hover {
                background: #202635;
            }

        /* ===============================
       TEXT
    ================================= */
        body.dark-theme h1,
        body.dark-theme h2,
        body.dark-theme h3,
        body.dark-theme h4,
        body.dark-theme h5,
        body.dark-theme h6 {
            color: #ffffff;
        }

        body.dark-theme p,
        body.dark-theme span,
        body.dark-theme li {
            color: var(--yellow-hover) !important; 
        }

        /* ===============================
       LINKS
    ================================= */
        body.dark-theme a {
            color: var(--yellow-main);
        }

            body.dark-theme a:hover {
                color: var(--yellow-hover);
            }

        /* ===============================
       BUTTONS
    ================================= */
        body.dark-theme .btn,
        body.dark-theme button, body.dark-theme .capital-structure a {
            background: var(--black-card);
            color: #fff;
            border: 1px solid var(--black-border);
        }

        body.dark-theme .navmenu ul {
            background-color: var(--black-card) !important;
        }

        body.dark-theme .btn:hover {
            background: #2b3242;
        }

        body.dark-theme .btn-primary, .navmenu .active i, .navmenu .active:focus i {
            background: var(--yellow-main) !important;
            border: none !important;
            color: #000 !important;
        }
        body.dark-theme table *, body.dark-theme table {
            border-color: var(--yellow-main) !important;
        }

        body.dark-theme .btn-primary:hover, body.dark-theme .timline-img::before, body.dark-theme .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-img::before {
            background: var(--yellow-hover);
        }

        /* ===============================
       FORMS
    ================================= */
        body.dark-theme input,
        body.dark-theme textarea,
        body.dark-theme select {
            background: var(--black-card);
            color: #fff;
            border: 1px solid var(--black-border);
        }

            body.dark-theme input:focus,
            body.dark-theme textarea:focus {
                border-color: var(--yellow-main);
                box-shadow: none;
            }

        body.dark-theme ::placeholder {
            color: var(--text-dim);
        }

        /* ===============================
       TABLES
    ================================= */
        body.dark-theme table {
            background: var(--black-card);
            color: #fff;
        }

        body.dark-theme th,
        body.dark-theme td {
            border-color: var(--black-border);
        }

        /* ===============================
       FOOTER
    ================================= */
        body.dark-theme footer,
        body.dark-theme .footer, body.dark-theme .navmenu .dropdown ul {
            background: #0c0f14;
            border-top: 1px solid var(--black-border);
        }

            body.dark-theme footer p,
            body.dark-theme footer a {
                color: #aaa;
            }

        /* ===============================
       ICONS
    ================================= */
        body.dark-theme i,
        body.dark-theme svg {
            color: var(--text-muted) !important;
        }

        /* ===============================
       SHADOW / DEPTH FIX
    ================================= */
        body.dark-theme .shadow,
        body.dark-theme .box-shadow {
            box-shadow: 0 4px 20px rgba(0,0,0,.5) !important;
        }

        /* ===============================
       SCROLLBAR
    ================================= */
        body.dark-theme ::-webkit-scrollbar {
            width: 8px;
        }

        body.dark-theme ::-webkit-scrollbar-track {
            background: var(--black-main);
        }

        body.dark-theme ::-webkit-scrollbar-thumb {
            background: var(--black-border);
            border-radius: 10px;
        }

        /* ===============================
       IMAGES
    ================================= */
        body.dark-theme img {
            opacity: 0.95;
        }

        body.dark-theme .breadcrumbs {
            background: var(--black-light);
            border-bottom: 1px solid var(--black-border);
        }

            body.dark-theme .breadcrumbs .container {
                color: var(--text-muted);
            }

            body.dark-theme .breadcrumbs span, body.dark-theme .navmenu .dropdown ul {
                color: var(--text-muted);
            }

            body.dark-theme .breadcrumbs a {
                color: var(--yellow-main);
            }

                body.dark-theme .breadcrumbs a:hover {
                    color: var(--yellow-hover);
                }

            body.dark-theme .breadcrumbs .child:last-child {
                color: #ffffff;
                font-weight: 500;
            }

            body.dark-theme .breadcrumbs i {
                color: var(--text-dim);
            }
        /* ===============================
       DIRECTOR CARD - DARK THEME
    ================================= */

        body.dark-theme .director-card {
            background: var(--black-card);
            border: 1px solid var(--black-border);
            box-shadow: 0 6px 20px rgba(0,0,0,.4);
        }

            /* hover effect */
            body.dark-theme .director-card:hover {
                transform: translateY(-5px);
                border-color: var(--yellow-main);
                box-shadow: 0 10px 30px rgba(0,0,0,.6);
            }

            /* ===============================
       IMAGE RING
    ================================= */
            body.dark-theme .director-card .profile-ring {
                background: linear-gradient(135deg,var(--yellow-main),#000);
            }

                body.dark-theme .director-card .profile-ring img {
                    border: 3px solid var(--black-card);
                }

    @media (min-width: 1200px) {
        body.dark-theme .navmenu .dropdown ul {
            border-color: var(--yellow-main);
        }
    }

    /* ===============================
       TEXT
    ================================= */
    body.dark-theme .director-card h5 {
        color: #fff;
    }

    body.dark-theme .director-card .role {
        color: var(--yellow-main);
    }

    /* ===============================
       BUTTON
    ================================= */
    body.dark-theme .director-card .view-btn {
        background: var(--yellow-main);
        transition: .3s;
    }

        body.dark-theme .director-card .view-btn i {
            margin-right: 5px;
        }

        body.dark-theme .director-card .view-btn:hover {
            background: var(--yellow-hover);
            transform: scale(1.05);
        }

        /* ===============================
       ICON FIX
    ================================= */
        body.dark-theme .director-card .view-btn i {
            color: #000;
        }

    /* ===============================
       SWIPER TABS - DARK THEME
    ================================= */

    body.dark-theme .tabSwiper {
        padding: 10px 0;
    }

    /* ===============================
       TAB ITEM
    ================================= */
    body.dark-theme .tabss {
        background: var(--black-card);
        border: 1px solid var(--black-border);
        border-radius: 10px;
    }

        /* hover */
        body.dark-theme .tabss:hover {
            transform: translateY(-5px);
            border-color: var(--yellow-main);
            box-shadow: 0 8px 25px rgba(0,0,0,.5);
        }

        /* ===============================
       ACTIVE TAB
    ================================= */
        body.dark-theme .tabss.active {
            background: linear-gradient(135deg,var(--yellow-main),#000);
            color: #000;
            border: none;
        }


        /* ===============================
       HEADING
    ================================= */
        body.dark-theme .tabss .heading {
            color: #fff;
        }

        /* active heading */
        body.dark-theme .tabss.active .heading {
            color: #000;
        }

        /* ===============================
       SUB TEXT
    ================================= */
        body.dark-theme .tabss .sub-text {
            color: var(--text-muted);
        }

        /* active subtext */
        body.dark-theme .tabss.active .sub-text {
            color: #000;
        }

    /* ===============================
       SCROLLBAR FIX (SWIPER)
    ================================= */


    /* ===============================
       CSR CARD - DARK THEME
    ================================= */

    body.dark-theme .csr-card-box {
        background: var(--black-card);
        border: 1px solid var(--black-border);
        box-shadow: 0 6px 20px rgba(0,0,0,.4);
    }

        /* hover */
        body.dark-theme .csr-card-box:hover {
            border-color: var(--yellow-main);
            box-shadow: 0 10px 30px rgba(0,0,0,.6);
        }

    /* ===============================
       IMAGE
    ================================= */


    /* ===============================
       CONTENT
    ================================= */


    body.dark-theme .csr-content-box h2 {
        color: #fff;
    }

    body.dark-theme .csr-content-box p {
        color: var(--text-muted);
    }

    /* ===============================
       KNOW MORE LINK
    ================================= */
    body.dark-theme .csr-know-more {
        color: var(--yellow-main);
        transition: .3s;
    }

        /* arrow */
        body.dark-theme .csr-know-more span {
            transition: .3s;
        }

        /* hover */
        body.dark-theme .csr-know-more:hover {
            color: var(--yellow-hover);
        }

            body.dark-theme .csr-know-more:hover span {
                transform: translateX(5px);
            }

    /* ===============================
       RESPONSIVE FIX
    ================================= */
    .searchModule--popular-items {
        flex-wrap: wrap;
    }

    @media (max-width:1360px) {

        .tabbox {
            position: relative;
        }

        section.our-business > .container {
            position: relative;
        }

            section.our-business > .container .main-heading {
                color: rgb(0 0 0);
                font-size: 2rem;
                text-align: center;
            }

        .csr-img-box img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .csrSportsSwiper {
            width: 100%;
        }

        .cover-image {
            object-fit: contain;
        }
    }

    @media (max-width:991px) {

        .header-wrapper {
            position: fixed;
            display: none;
            right: 13px;
            max-width: 200px;
            top: 61px;
            background: white;
            border: 1px solid #01265a;
            flex-direction: column;
            z-index: 99999;
        }

            .header-wrapper.active {
                display: block;
            }

        ul.topnav-list {
            display: flex;
        }

        .socialmedia li {
            position: relative;
            width: 26px;
            height: 30px;
            display: block;
            margin: 0px;
            padding: 0px;
            cursor: pointer;
            color: rgb(255, 255, 255);
        }

            .socialmedia li .mystickyelements-social-icon {
                width: 26px;
                height: 30px;
            }

        .Marquee-tag {
            width: 200px;
        }

        .form-wrapper input, .form-wrapper input:focus {
            font-size: 24px;
        }

        section {
            padding: 20px 0px;
        }

        .theme-change {
            padding-left: 5px;
        }

        body .csr-content-box {
            padding: 20px;
        }

        footer.siteFooter .col-6 {
            margin-bottom: 20px;
        }

        body .ds {
            margin-bottom: 0;
        }

        body .s-py-xl-160 > [class*="container"] {
            padding: 20px 0;
        }

        .logo-img img {
            padding: 2px 8px;
        }

        .logo-img {
            margin: 0px;
            margin-right: auto;
        }

        .videbanner-text {
            left: 3%;
            max-width: 95%;
        }

        .theme-change ul li {
            margin: 0;
        }

        .footerlinks li {
            margin-bottom: 0;
            line-height: 1.1;
        }

        li.dropdown.lang-dropdown a, .font-adjust a {
            font-size: 13px;
        }

        .footerlinks li a, .footer-bottom p {
            font-size: 13px;
        }

        footer.siteFooter h4 {
            font-size: 18px;
        }

        body .tabss img {
            height: auto;
            max-width: 100%;
        }

        .arrows-box {
            text-align: center;
        }

        .tabSwiper {
            margin: auto;
            text-align: center;
            overflow: hidden;
        }

        body .cover-image {
            position: relative;
            height: 199px;
        }

        .cover-image.s-cover-left {
            width: 100%;
        }

        .videbanner-text h1 {
            font-size: 25px;
        }

        body.dark-theme .csr-content-box {
            text-align: center;
        }

        .csr-card-box {
            padding: 0;
        }
    }

    /* ICON BOX - DARK THEME (FORCED COLORS) */

    body.dark-theme .icon-box,
    body.dark-theme .icon-box.service-single,
    body.dark-theme .icon-box.layout2, body.dark-theme a.clickbtn {
        background: var(--black-card) !important;
        border-color: var(--black-border) !important;
    }

        body.dark-theme .icon-box h5,
        body.dark-theme .icon-box a h5 {
            color: #fff !important;
        }

        body.dark-theme .icon-box p, body.dark-theme .special-heading.numeric, body.dark-theme .timeline-carousel .owl-stage-outer .owl-stage .owl-item:nth-child(2n) .item .timeline-box .timline-content h2 {
            color: var(--text-muted) !important;
        }

        /* hover heading */
        body.dark-theme .icon-box a:hover h5 {
            color: var(--yellow-main) !important;
        }

        /* button override */
        body.dark-theme .icon-box .btn,
        body.dark-theme .icon-box .btn-outline-darkgrey {
            color: var(--yellow-main) !important;
            border-color: var(--yellow-main) !important;
            background: transparent !important;
        }

            /* icon */
            body.dark-theme .icon-box .btn i {
                color: var(--yellow-main) !important;
            }

            /* hover */
            body.dark-theme .icon-box .btn:hover,
            body.dark-theme .icon-box .btn-outline-darkgrey:hover {
                background: var(--yellow-main) !important;
                color: #000 !important;
            }

                body.dark-theme .icon-box .btn:hover i {
                    color: #000 !important;
                }

    body.dark-theme .service-single.with-icon.layout2:hover {
        background: linear-gradient(to top, #624a00 0%, rgb(40 34 0) 100%) !important;
    }

    body.dark-theme .form-wrapper button {
        background: transparent !important;
        border: none !important;
    }


    /* ===============================
       DIRECTOR MODAL - DARK (COLORS ONLY)
    ================================= */

    body.dark-theme .director-modal {
        background: var(--black-card) !important;
        border: 1px solid var(--black-border) !important;
    }

        /* modal body text */
        body.dark-theme .director-modal,
        body.dark-theme .director-modal .modal-body {
            color: var(--text-light) !important;
        }

            /* name */
            body.dark-theme .director-modal h4 {
                color: #fff !important;
            }

            /* role */
            body.dark-theme .director-modal .sub-head,
            body.dark-theme .director-modal .text-muted {
                color: var(--yellow-main) !important;
            }

    /* paragraph */
    body.dark-theme #modalpara {
        color: var(--text-muted) !important;
    }

    /* image background edge (optional fix) */
    body.dark-theme .director-modal .modal-img {
        background: var(--black-light);
    }

    /* button (btn-warning override) */
    body.dark-theme .director-modal .btn-warning {
        background: var(--yellow-main) !important;
        border-color: var(--yellow-main) !important;
        color: #000 !important;
    }

        body.dark-theme .director-modal .btn-warning i {
            color: #000 !important;
        }

        body.dark-theme .director-modal .btn-warning:hover {
            background: var(--yellow-hover) !important;
            border-color: var(--yellow-hover) !important;
            color: #000 !important;
        }

    /* ===============================
       CVO SECTION - DARK (COLORS ONLY)
    ================================= */

    /* wrapper */
    body.dark-theme .cvo-wrapper {
        color: var(--text-light);
    }

        /* ===============================
       ANNOUNCEMENT
    ================================= */
        body.dark-theme .cvo-wrapper .announcement {
            background: var(--black-card) !important;
            color: var(--yellow-main) !important;
            border: 1px solid var(--black-border);
        }

            body.dark-theme .cvo-wrapper .announcement i {
                color: var(--yellow-main) !important;
            }

    /* ===============================
       PROFILE CARD
    ================================= */
    body.dark-theme .cvo-profile-card {
        background: var(--black-card) !important;
        border: 1px solid var(--black-border) !important;
        color: var(--text-light) !important;
    }

        body.dark-theme .cvo-profile-card h5 {
            color: #fff !important;
        }

        body.dark-theme .cvo-profile-card .text-muted {
            color: var(--text-muted) !important;
        }

        /* badge override */
        body.dark-theme .cvo-profile-card .badge {
            background: rgba(255,193,7,0.15) !important;
            color: var(--yellow-main) !important;
            border: 1px solid var(--yellow-main);
        }

        /* button */
        body.dark-theme .cvo-profile-card .btn-main {
            background: var(--yellow-main) !important;
            color: #000 !important;
            border: none !important;
        }

            body.dark-theme .cvo-profile-card .btn-main i {
                color: #000 !important;
            }

            body.dark-theme .cvo-profile-card .btn-main:hover {
                background: var(--yellow-hover) !important;
                color: #000 !important;
            }

    /* ===============================
       INFO BOX
    ================================= */
    body.dark-theme .info-box {
        background: var(--black-card) !important;
        border: 1px solid var(--black-border) !important;
        color: var(--text-light) !important;
    }

        /* headings */
        body.dark-theme .info-box .section-title {
            color: #fff !important;
        }

            body.dark-theme .info-box .section-title i {
                color: var(--yellow-main) !important;
            }

        /* text */
        body.dark-theme .info-box p {
            color: var(--text-muted) !important;
        }

        /* contact lines */
        body.dark-theme .info-box .contact-line i {
            color: var(--yellow-main) !important;
        }

        /* links */
        body.dark-theme .info-box a {
            color: var(--yellow-main) !important;
        }

            body.dark-theme .info-box a:hover {
                color: var(--yellow-hover) !important;
            }

        /* divider */
        body.dark-theme .info-box hr {
            border-color: var(--black-border) !important;
        }

    /* ===============================
       QUICK LINKS
    ================================= */
    body.dark-theme .quick-link {
        background: var(--black-light) !important;
        color: var(--text-light) !important;
        border: 1px solid var(--black-border);
    }

        body.dark-theme .quick-link i {
            color: var(--yellow-main) !important;
        }

        body.dark-theme .quick-link:hover {
            color: var(--yellow-main) !important;
            border-color: var(--yellow-main) !important;
        }

    /* ===============================
       AWARD SECTION - DARK (COLORS ONLY)
    ================================= */

    /* card */
    body.dark-theme .award-card, body.dark-theme .present-date {
        background: var(--black-card) !important;
        border: 1px solid var(--black-border) !important;
        color: var(--text-light) !important;
    }

    /* content text */
    body.dark-theme .award-content,
    body.dark-theme .award-content div {
        color: var(--text-muted) !important;
    }

        /* headings / labels */
        body.dark-theme .award-content .label {
            color: var(--yellow-main) !important;
        }

    /* icons */
    body.dark-theme .award-info i,
    body.dark-theme .present-date i {
        color: var(--yellow-main) !important;
    }

    /* year badge */
    body.dark-theme .year-badge, body.dark-theme .ui-pulse-list li::before {
        background: var(--yellow-main) !important;
        color: #000 !important;
    }

        body.dark-theme .year-badge i {
            color: #000 !important;
        }

    /* date text */
    body.dark-theme .present-date, body.dark-theme li.dropdown.lang-dropdown a {
        color: var(--text-muted) !important;
    }

    /* ===============================
       BUTTON (VIEW MORE)
    ================================= */
    body.dark-theme .btn-outline-warning {
        color: var(--yellow-main) !important;
        border-color: var(--yellow-main) !important;
        background: transparent !important;
    }

        body.dark-theme .btn-outline-warning i {
            color: var(--yellow-main) !important;
        }

        body.dark-theme .btn-outline-warning:hover {
            background: var(--yellow-main) !important;
            color: #000 !important;
        }

            body.dark-theme .btn-outline-warning:hover i {
                color: #000 !important;
            }

    .contenttxt p {
        font-size: 19px;
    }


    .search-formbox {
        display: flex;
        align-items: center;
        gap: 3px;
    }



    /*------social media--------*/

    .social-sticky-buttons {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        color: white;
        font-size: 20px;
        text-decoration: none;
        border-radius: 4px 0 0 4px;
    }

        .sticky-btn:hover {
            color: white;
            opacity: 0.85;
        }

        .sticky-btn.facebook {
            background: #1877f2;
        }

        .sticky-btn.twitter {
            background: #000000;
        }

        .sticky-btn.youtube {
            background: #ff0000;
        }

    /*--------------------------*/

    .dt-buttons .dt-button {
        background: #0d6efd !important; /* Bootstrap blue */
        color: #fff !important;
        border: none !important;
        border-radius: 4px;
        margin-right: 5px;
        padding: 5px 12px;
    }

        .dt-buttons .dt-button:hover {
            background: #0b5ed7 !important;
            color: #fff !important;
        }

    /* Marquee link — inline रहे, wrap न हो */
    marquee a.download-link {
        display: inline !important;
        white-space: nowrap;
    }

    marquee .file-meta {
        display: inline-flex !important;
        align-items: center;
        gap: 3px;
        margin-left: 0px;
        white-space: nowrap;
        vertical-align: middle;
    }

        marquee .file-meta small {
            display: inline !important;
            font-size: 0.8em;
        }

        marquee .file-meta .sr-only {
            display: none !important;
        }

    /* block class marquee में नहीं लगनी चाहिए */
    marquee .download-link.block {
        display: inline !important;
    }

    .underlined-links a {
        text-decoration: underline !important;
    }

    .icon-styled .bi {
        color: #EF5B25 !important;
    }



    /*/////////// Chetan Changes/////////////////////*/
    .small, small {
        font-size:14px;
    }

    /* Accordion */

    details {
        background: #fff;
        border: 1px solid #dbe3ea;
        border-radius: 0;
        margin-bottom: 5px;
        overflow: hidden;
        transition: .3s;
    }

        details:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,.08);
        }

        details[open] {
            border-color: #c41e3a;
        }

    /* Heading */

    summary {
        list-style: none;
        cursor: pointer;
        padding: 8px;
        font-size: 20px;
        font-weight: 600;
        color: #17375e;
        display: flex;
        align-items: center;
        transition: space-between;
        user-select: none;
        position: relative;
    }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::before {
            content: "📄";
            margin-right: 12px;
            font-size: 22px;
        }

        summary::after {
            content: "+";
            font-size: 28px;
            font-weight: 300;
            color: #01265a;
            transition: .3s;
            right: 18px;
            position: absolute;
        }

    details[open] summary::after {
        content: "−";
        transform: rotate(180deg);
    }

    summary:hover {
        background: #f7f9fc;
    }

    /* remove old font color */

    summary font {
        color: inherit !important;
        font-size: inherit;
        font-weight: inherit;
    }


    /* View Button */

    .capital-structure a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #17375e;
        color: #fff;
        padding: 8px 18px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: .3s;
    }

        .capital-structure a::before {
            content: "📥";
            font-size: 14px;
        }

        .capital-structure a:hover {
            background: #c41e3a;
            color: #fff;
            transform: translateY(-2px);
        }

    /* Download text */

    details strong {
        display: block;
        padding: 20px 20px 0;
        font-size: 18px;
        color: #17375e;
    }

    /* Responsive */

    @media (max-width:768px) {

        summary {
            font-size: 17px;
            padding: 16px;
        }

  
    }
    .tabss.active h3.heading a {
        color: white;
    }

/*    =================focus trappign ====================*/

/* =========================================================
   FOCUS-WITHIN / HOVER REPLACEMENT CSS
   ========================================================= */

/* ---------- GENERAL LINKS ---------- */

a:focus-within {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

.header .topbar .contact-info i a:focus-within {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a:focus-within {
    color: var(--contrast-color);
}
button[data-bs-target="#offcanvasTop"]:focus-within  {
    outline: 1px solid !important;
}
#backToTop:focus-within {
    outline: 2px solid black !important;
}
/* ---------- NAVIGATION ---------- */

.navmenu li:focus-within > a,
.navmenu .active,
.navmenu .active:focus {
    color: rgb(243, 112, 34);
    border-radius: 0px;
}

.navmenu .dropdown ul a:focus-within,
.navmenu .dropdown ul .active:focus-within,
.navmenu .dropdown ul li:focus-within > a {
    color: rgb(255, 255, 255);
}

.navmenu .dropdown:focus-within > ul {
    opacity: 1;
    top: 102%;
    visibility: visible;
}

.navmenu .dropdown .dropdown:focus-within > ul {
    opacity: 1;
    top: 0px;
    right: -100%;
    visibility: visible;
}

.navmenu a i:focus-within,
.navmenu a:focus i:focus-within {
    background-color: var(--accent-color);
    color: #f8f8f8;
}

.navmenu a:focus-within,
.navmenu .active,
.navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
}

.dropdown ul li:focus-within a {
    border-radius: 0px;
}


/* ---------- SERVICE / HOME LINKS ---------- */

.service-details .services-list a:focus-within {
    border-color: var(--accent-color);
}

.impHomeLinks li a:focus-within {
    color: rgb(32, 72, 121);
}


/* ---------- MARQUEE ---------- */

.Marquee-content:focus-within {
    animation-play-state: paused;
}

.Marquee-tag:focus-within {
    transform: scale(1.1);
    cursor: pointer;
}


/* ---------- NEWS ---------- */

.newsbtn a:focus-within::before {
    height: 100%;
    top: auto;
    bottom: 0px;
}

.news-section button.owl-prev:focus-within,
.news-section button.owl-next:focus-within {
    background: rgb(0, 165, 84) !important;
    color: rgb(255, 255, 255) !important;
}


/* ---------- DROPDOWN ---------- */

.dropdown:focus-within .dropinner {
    opacity: 1;
    visibility: visible;
    top: 47px;
}

    .dropdown:focus-within .dropinner ul {
        opacity: 1;
        visibility: visible;
    }


/* ---------- NAV UNDERLINE ---------- */

.navmenu .dropdown > a:focus-within::before {
    width: 100%;
    right: auto;
    left: 0px;
}


/* ---------- PAGE LINKS ---------- */

.pagelinks.hover-border-2:focus-within::before,
.pagelinks.hover-border-2:focus-within::after {
    width: 99%;
    height: 99%;
}


/* ---------- BUSINESS BOX ---------- */

.business-box:focus-within::before {
    width: 100%;
    right: auto;
    left: 0px;
}

.business-box:focus-within .business-text span {
    background: rgb(233, 130, 71);
    color: rgb(255, 255, 255);
}


/* ---------- SEARCH ---------- */

.searchModule--popular-item a:focus-within {
    color: rgb(226, 79, 45);
}

    .searchModule--popular-item a:focus-within::before {
        width: 100%;
        left: 0px;
        right: auto;
    }


/* ---------- BANNER NAVIGATION ---------- */

section.bannersection .owl-nav button.owl-prev:focus-within,
section.bannersection .owl-nav button.owl-next:focus-within {
    background: rgb(236, 105, 31);
    color: rgb(255, 255, 255);
}


/* ---------- SOCIAL MEDIA ---------- */

.socialmedia li:focus-within .mystickyelements-social-text {
    transform: rotate(0deg);
    left: auto;
    right: 100%;
}

.socialmedia li:focus-within .mystickyelements-social-icon {
    border-radius: 0px;
}


/* ---------- FLIP CARDS ---------- */

.business:focus-within .firstcard {
    transform: rotateY(-180deg);
}

.business:focus-within .fliptext-wrapper {
    transform: rotateY(0deg);
}


/* ---------- READ MORE ---------- */

.read_more_1:focus-within {
    border: 1px solid rgb(236, 105, 31);
    color: rgb(255, 255, 255);
}

    .read_more_1:focus-within span {
        transform: translateY(0px) scale(3.15);
    }


/* ---------- SERVICE CARDS ---------- */

.service-single.with-icon.layout2:focus-within {
    background: linear-gradient( to top, rgb(221, 68, 84) 0%, rgb(221, 144, 68) 100% ) !important;
}

    .service-single.with-icon.layout2:focus-within .icon-styled.fs-50 img {
        filter: brightness(0) invert(1);
    }


/* ---------- FLIP TEXT ---------- */

.fliptext-wrapper ul li a:focus-within {
    color: rgb(236, 105, 31);
}


/* ---------- INNER PAGE ---------- */

.news-title:focus-within {
    text-decoration: underline;
}

.form-wrapper button:focus-within {
    background: transparent;
}


/* ---------- CSR ---------- */

.csr-know-more:focus-within span {
    margin-left: 15px;
}


/* ---------- SWIPER ICON ---------- */

.sw.bi:focus-within {
    background: rgb(229, 57, 53);
}


/* ---------- FOOTER ---------- */

.siteFooter h4:focus-within::after {
    width: 75px;
}


/* =========================================================
   UI COMPONENTS
   ========================================================= */

.ui-bullet-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.ui-icon-list li:focus-within {
    transform: translateX(8px);
    color: #005fb0;
}

    .ui-icon-list li:focus-within i {
        transform: scale(1.2);
    }

.ui-gradient-list li:focus-within {
    color: #005fb0;
    padding-left: 34px;
}

.ui-arrow-list li:focus-within {
    padding-left: 30px;
    color: #005fb0;
}

    .ui-arrow-list li:focus-within::before {
        transform: translateX(5px);
    }

.ui-step-list li:focus-within::before {
    background: #ce901f;
    transform: scale(1.1);
}


/* ---------- NOTICE ---------- */

.notice-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.22);
}

.notice-link:focus-within {
    color: #003366;
}


/* ---------- DOCUMENT CARD ---------- */

.doc-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


/* ---------- BUTTONS ---------- */

.btn-view:focus-within {
    background: #01153a;
    color: white;
}

.btn-download:focus-within {
    background: #d34d24;
    color: white;
}

.btn-main:focus-within {
    background: #eb5d31;
    color: #fff;
    transform: translateY(-3px);
}

.quick-link:focus-within {
    background: #022255;
    color: #fff;
    transform: translateY(-4px);
}

    .quick-link:focus-within i {
        color: #fff;
    }


/* ---------- AWARD CARD ---------- */

.award-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

    /* Original file had this hover rule commented out */
    .award-card:focus-within img {
        transform: scale(1.08);
    }

    .award-card:focus-within .award-img::after {
        animation: shine 1s;
    }


/* ---------- DIRECTOR CARD ---------- */

.director-card:focus-within {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.view-btn:focus-within {
    background: #eb5d31;
    color: white;
}


/* ---------- MEDIA ---------- */

.media-btn:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #fff;
}

.more-link:focus-within {
    gap: 10px;
    color: #022255;
}


/* =========================================================
   DARK THEME
   ========================================================= */

body.dark-theme .navbar a:focus-within {
    color: var(--yellow-main) !important;
}

body.dark-theme .card:focus-within {
    background: #202635;
}

body.dark-theme a:focus-within {
    color: var(--yellow-hover);
}

body.dark-theme .btn:focus-within {
    background: #2b3242;
}

body.dark-theme .btn-primary:focus-within {
    background: var(--yellow-hover);
}

body.dark-theme .breadcrumbs a:focus-within {
    color: var(--yellow-hover);
}

body.dark-theme .director-card:focus-within {
    transform: translateY(-5px);
    border-color: var(--yellow-main);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

body.dark-theme .director-card .view-btn:focus-within {
    background: var(--yellow-hover);
    transform: scale(1.05);
}

body.dark-theme .tabss:focus-within {
    transform: translateY(-5px);
    border-color: var(--yellow-main);
    box-shadow: 0 8px 25px rgba(0,0,0,.5);
}

body.dark-theme .csr-card-box:focus-within {
    border-color: var(--yellow-main);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

body.dark-theme .csr-know-more:focus-within {
    color: var(--yellow-hover);
}

    body.dark-theme .csr-know-more:focus-within span {
        transform: translateX(5px);
    }

body.dark-theme .icon-box a:focus-within h5 {
    color: var(--yellow-main) !important;
}

body.dark-theme .icon-box .btn:focus-within,
body.dark-theme .icon-box .btn-outline-darkgrey:focus-within {
    background: var(--yellow-main) !important;
    color: #000 !important;
}

    body.dark-theme .icon-box .btn:focus-within i {
        color: #000 !important;
    }

body.dark-theme .service-single.with-icon.layout2:focus-within {
    background: linear-gradient( to top, #624a00 0%, rgb(40 34 0) 100% ) !important;
}

body.dark-theme .director-modal .btn-warning:focus-within {
    background: var(--yellow-hover) !important;
    border-color: var(--yellow-hover) !important;
    color: #000 !important;
}

body.dark-theme .cvo-profile-card .btn-main:focus-within {
    background: var(--yellow-hover) !important;
    color: #000 !important;
}

body.dark-theme .info-box a:focus-within {
    color: var(--yellow-hover) !important;
}

body.dark-theme .quick-link:focus-within {
    color: var(--yellow-main) !important;
    border-color: var(--yellow-main) !important;
}

body.dark-theme .btn-outline-warning:focus-within {
    background: var(--yellow-main) !important;
    color: #000 !important;
}

    body.dark-theme .btn-outline-warning:focus-within i {
        color: #000 !important;
    }
     
/* =========================================================
   STICKY / DATATABLE / DETAILS
   ========================================================= */ 
.sticky-btn:focus-within {
    color: white;
    opacity: 0.85;
} 
.dt-buttons .dt-button:focus-within {
    background: #0b5ed7 !important;
    color: #fff !important;
} 
details:focus-within {
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
} 
summary:focus-within {
    background: #f7f9fc;
} 
.capital-structure a:focus-within {
    background: #c41e3a;
    color: #fff;
    transform: translateY(-2px);
}
 

.btn-outline-warning {
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e95833;
    --bs-btn-hover-border-color: #0e2246;
}

.text-warning { 
    color: rgb(255 135 0) !important;
}


/* =========================================================
   nadeem css 
   ========================================================= */
.videbanner-text h1,
.tabss .heading,
.main-heading,
.csr-content-box span,
.csr-know-more,
.timline-content,
.timline-content,
#modalTitle,
.a_rightText,
#stats-heading,
.videbanner-text p {
    filter: contrast(2.5) brightness(1.5);
}


.videbanner-text h1,
.tabss .heading,
.main-heading,
.csr-content-box span,
.csr-know-more,
.timline-content,
.timline-content,
#modalTitle,
.a_rightText,
#stats-heading,
.videbanner-text p, #fontStatus {
    filter: contrast(1.5);
}


@media (max-width:568px) {
    .videbanner-text p {
        font-size: 14px;
    }

    .announcment-wrapper .a_leftText {
        padding-right: 0;
        display: none;
    }

    .announcment-wrapper .a_rightText {
        padding-left: 30px;
        color: transparent;
        display: none;
    }

    .announcment-section {
        background: #fff;
    }

    section.our-business {
        padding-top: 20px;
    }

    .service-single.with-icon.layout2 h5 {
        font-size: 16px;
    }


    .icon-box p {
        font-size: 12px;
    }

    .contenttxt p {
        font-size: 14px;
    }

    .timline-content h3 {
        font-size: 15px;
        line-height: 22px;
        color: #737373;
    }

    .timline-content h2 {
        font-size: 18px;
    }

    .timeline-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }

    .business-heading h3 {
        font-size: 24px;
    }

    .footerlinks li a,
    .footer-bottom p {
        font-size: 14px;
        display: flex;
        line-height: 20px;
    }

    .footerlinks li + li {
        margin-top: 8px;
    }

    .icon-styled img {
        height: 30px;
        width: 30px !important;
    }

    .sw.bi-chevron-right {
        right: 2%;
    }

    .sw.bi-chevron-left {
        left: 2%;
    }

    .sw.bi {
        width: 30px;
        height: 30px;
    }


    .social-sticky-buttons {
        right: 0;
        top: auto;
        flex-direction: inherit;
        transform: matrix(1, 0, 0, 1, 0, 0);
        gap: 0;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .sticky-btn {
        width: 100%;
        border-radius: 0;
    }

    button#backToTop {
        bottom: 30px !important;
    }

    .service-single.with-icon.layout2 h5 {
        font-size: 16px;
    }


    .icon-box p {
        font-size: 12px;
    }

    .footerlinks li + li {
        margin-top: 8px;
    }

    .icon-styled img {
        height: 30px;
        width: 30px !important;
    }

    button#backToTop {
        bottom: 30px !important;
    }
}

img[src$="new-icon.gif"] {
    width: 30px;

}


/* NRL Theme - SweetAlert2 Download Popup */
.swal2-popup {
    width: 420px;
    padding: 2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    font-family: inherit;
}

    /* Info Icon */
    .swal2-popup .swal2-icon.swal2-info {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        border: 3px solid var(--accent);
        color: var(--accent);
    }

    .swal2-popup .swal2-icon-content {
        font-size: 32px;
        font-weight: 700;
    }

    /* Title */
    .swal2-popup .swal2-title {
        margin: 0 0 0.75rem;
        padding: 0;
        color: var(--accent);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1.3;
    }

    /* Message */
    .swal2-popup .swal2-html-container {
        margin: 0 auto;
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Buttons Container */
    .swal2-popup .swal2-actions {
        gap: 10px;
        margin-top: 1.5rem;
    }

    /* Common Button Style */
    .swal2-popup .swal2-styled {
        min-width: 110px;
        min-height: 42px;
        margin: 0;
        padding: 10px 20px;
        border: 0;
        border-radius: 7px;
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    /* Cancel */
    .swal2-popup .swal2-cancel {
        background: #f1f3f5;
        color: #444;
    }

        .swal2-popup .swal2-cancel:hover,
        .swal2-popup .swal2-cancel:focus-visible {
            background: #e2e6ea;
            color: #222;
        }

    /* Download */
    .swal2-popup .swal2-confirm {
        background: var(--accent);
        color: #fff;
    }

        .swal2-popup .swal2-confirm:hover,
        .swal2-popup .swal2-confirm:focus-visible {
            background: var(--primary);
        }

    /* Keyboard Focus */
    .swal2-popup .swal2-styled:focus-visible {
        outline: 3px solid color-mix( in srgb, var(--primary) 35%, transparent );
        outline-offset: 2px;
    }

 
ctrli to generate codectrl + i to generate code Press ctrl . (period) to learn how your data is being used.  

.swal2-popup .swal2-styled:not([disabled]):hover {
    transform: none;
}

/* Mobile */
@media (max-width: 575px) {
    .swal2-popup {
        width: calc(100% - 30px);
        padding: 1.5rem;
        border-radius: 14px;
    }

        .swal2-popup .swal2-actions {
            width: 100%;
            flex-direction: column-reverse;
        }

        .swal2-popup .swal2-styled {
            width: 100%;
        }
}



.tab-button {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: inherit;
    cursor: pointer;
    display: block;
}

    .tab-button img {
        display: block;
        width: 100%;
        height: auto;
    }

    .tab-button .heading {
        margin: 0;
        padding: 10px; 
    }

    .tab-button .sub-text {
        display: block;
        padding: 5px 10px;
    } 
    .tab-button:focus-visible {
        outline: 3px solid #005fcc;
        outline-offset: 3px;
    } 
    .tab-button,
    .tab-button:hover,
    .tab-button:focus,
    .tab-button:active {
        appearance: none;
        -webkit-appearance: none;
        box-shadow: none;
    }


.ui-datepicker-calendar a:focus-visible,
.ui-datepicker .ui-datepicker-prev:focus-visible,
.ui-datepicker .ui-datepicker-next:focus-visible {
    outline: 3px solid #005fcc !important;
    outline-offset: 2px;
}

body.letter-spacing-enabled * {
    letter-spacing: 0.08em !important;
}

strong.card {
    text-align: center;
}