

:root {
  --ogenix-font: 'Manrope', sans-serif;
  --ogenix-font-two: 'Caveat', cursive;
  --ogenix-reey-font: "reeyregular";
  --ogenix-white: #ffffff;
  --ogenix-white-rgb: 255, 255, 255;
  --ogenix-base: #50a72c;
  --ogenix-base-rgb: 80, 167, 44;
  --ogenix-black: #2a491d;
  --ogenix-black-rgb: 42, 73, 29;
  --ogenix-primary: #ffbd3c;
  --ogenix-primary-rgb: 255, 189, 60;
  --ogenix-gray: #7d8978;
  --ogenix-gray-rgb: 125, 137, 120;
  --ogenix-extra: #f3f3ed;
  --ogenix-extra-rgb: 243, 243, 237;
  --ogenix-bdr-color: #eaeae2;
  --ogenix-bdr-color-rgb: 234, 234, 226;
  --ogenix-letter-spacing: -0.04em;
  --ogenix-bdr-radius: 6px;
}


.top_bar{
    background-color: var(--ogenix-base);
}

ul.tb_left{
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}
ul.tb_left li{
    color: var(--ogenix-white);
    position: relative;
}

ul.tb_left li::after{
    content: "";
    position: absolute;
    right: -10px;
    height: 20px;
    width: 1px;
    background-color: #f3f3ed;
    top: 50%;
    transform: translateY(-50%);
}

ul.tb_left li:last-child::after{
    display: none;
}


@media screen and (max-width: 768px){
    ul.tb_left li{
        font-size: 14px!important;
    }
}

@media screen and (max-width: 425px){
    .top_bar{
        display: none;
    }
}

.header_minister{
    display: flex;
    justify-self: flex-end;
    align-items: center;
    gap: 10px;
}

.ministers{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.ministers img{
    height: 80px;
    width: auto;
}

.mtrs_text h5{
    font-size: 14px;
    font-weight: 600;
}
.mtrs_text h6{
    font-size: 11px;
    font-weight: 500;
}


/* merque starts */
.merque{
    padding: 0 10px 0 200px;
    overflow: hidden;
    background: var(--ogenix-black);
    position: relative;
}

.merque_header{
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--ogenix-base);
    height: 50px;
    width: auto;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
    z-index: 2;
}
.merque_header i,
.merque_header h4{
    color: var(--ogenix-extra);
}

.marquee-container {
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 16px;
    padding: 0 30px;
    font-weight: 500;
}

.marquee-item i {
    margin-right: 10px;
    font-size: 20px;
}

.separator {
    display: inline-block;
    width: 2px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
/* merque ends */



 .categories-two {
            position: relative;
            padding: 80px 0;
        }

        .categories-two__bg-box {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        .categories-two__bg-img-1 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.05;
        }

        .section-title {
            margin-bottom: 50px;
        }

        .section-title__tagline {
            color: #50a72c;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title__title {
            color: #1a1a1a;
            font-size: 42px;
            font-weight: 700;
            margin-top: 10px;
        }

        .modules-carousel {
            position: relative;
            padding: 20px 0;
        }

        .module-item {
            position: relative;
            padding: 30px 20px;
            margin: 10px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
            overflow: visible !important;
        }

        .module-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .module-item__icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 32px;
            color: white;
            transition: all 0.3s ease;
        }

        .module-item:hover .module-item__icon {
            transform: scale(1.1);
        }

        .module-item__title {
            font-size: 14px;
            font-weight: 600;
            color: #1a1a1a;
            text-align: center;
            line-height: 1.4;
        }

        /* Hover Popup Tooltip */
        .hover-popup {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            width: 280px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .hover-popup::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 10px solid transparent;
            border-top-color: white;
        }

        .module-item:hover .hover-popup {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(-20px);
        }

        .hover-popup__title {
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-align: center;
        }

        .hover-popup__description {
            font-size: 12px;
            line-height: 1.6;
            color: #666;
            text-align: center;
        }

        .owl-stage-outer {
            overflow: visible !important;
        }

        .owl-carousel .owl-nav button.owl-prev,
        .owl-carousel .owl-nav button.owl-next {
            width: 50px;
            height: 50px;
            background-color: #50a72c !important;
            border-radius: 50%;
            position: absolute;
            top: 85%;
            transform: translateY(-85%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .owl-carousel .owl-nav button.owl-prev:hover,
        .owl-carousel .owl-nav button.owl-next:hover {
            opacity: 1;
            background-color: #3d7d21 !important;
        }

        .owl-carousel .owl-nav button.owl-prev {
            left: -15px;
        }

        .owl-carousel .owl-nav button.owl-next {
            right: -15px;
        }

        .owl-carousel .owl-nav button.owl-prev span,
        .owl-carousel .owl-nav button.owl-next span {
            font-size: 30px;
            color: white;
            line-height: 50px;
        }

        .owl-carousel .owl-dots {
            text-align: center;
            margin-top: 30px;
        }

        .owl-carousel .owl-dot {
            display: inline-block;
            margin: 0 5px;
        }

        .owl-carousel .owl-dot span {
            width: 10px;
            height: 10px;
            background: #ccc;
            display: block;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .owl-carousel .owl-dot.active span {
            background: #50a72c;
            width: 12px;
            height: 12px;
        }

        .modal-header {
            border-bottom: 2px solid #50a72c;
        }

        .modal-title {
            color: #1a1a1a;
            font-weight: 700;
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            margin: 0 auto 20px;
        }

        .modal-body {
            padding: 30px;
        }

        .modal-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            text-align: center;
        }

        @media (max-width: 768px) {
            .section-title__title {
                font-size: 32px;
            }
            
            .module-item {
                min-height: 180px;
            }
            
            .module-item__icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .hover-popup {
                width: 220px;
                padding: 12px 15px;
            }

            .hover-popup__title {
                font-size: 12px;
            }

            .hover-popup__description {
                font-size: 11px;
            }
        }
    

        

/* department info */
        
.depart-info{
    background-color: var(--ogenix-black);
    background-image: url(../images/bg_hrpt.jpg);
/*    height: 100vh;*/
    min-width: 100vw;
/*    height: 100%;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.depart-info .inner_content {
    position: relative;
}

.depart-info .box_first {
    position: relative;
}

    .depart-info .box_first ul {
        text-align: center;
        padding: 0;
        margin: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .depart-info .box_first li {
        max-width: auto;
        width: 20%;
        display: inline-block;
        margin: 0 20px;
        padding: 55px 0;
        position: relative;
    }

        .depart-info .box_first li:first-child {
            margin-left: 0;
        }

.organization_chart_section .box_first.bx003 li {
    padding-top: 0;
}

.depart-info .box_first li:before {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #d1d3d2;
    content: "";
    margin-left: 0px;
}

.depart-info .box_first li .content {
    text-align: center;
    min-height: 120px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 8px 8px 8px;
    border: solid 1px #9f953b;
    border-left: solid 8px #9f953b;
    background: #fdf8c2;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.depart-info .box_first.bx003 li .content {
    border: solid 1px #fe1313;
    border-left: solid 8px #fe1313;
    background: #ffdfdf;
}

.depart-info .box_first a {
    color: #000;
    text-decoration: none;
}

.depart-info .row {
    align-items: center;
    padding: 0px 10px;
}

.depart-info .box_first h4 {
    font-size: 14px;
    font-weight: 700;
    color: #9f953b;
    margin-bottom: 5px;
}

.depart-info .box_first.bx003 h4 {
    color: #fe1313;
}

.depart-info .box_first span, .depart-info .box_second li span {
    font-size: 18px;
    font-weight: 500;
    padding: 3px 5px 3px;
    display: block;
    background: #fe1313;
    color: #fff;
    width: 100px;
    margin: 12px auto 0;
    border-radius: 5px;
}

.depart-info .box_first.bx003 li .content span {
    background: #fe1313;
}

.depart-info .box_first li:after {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 10px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #009918;
    content: "";
    margin-left: -8px;
}

.depart-info .box_first.bx003 li:after {
    border-top: 8px solid #fe1313;
}

.depart-info .box_first ul:before {
    position: absolute;
    top: 0px;
    left: 50%;
    height: 2px;
    width: 70.9%;
    margin-left: 1px;
    content: "";
    background: #d1d3d2;
    transform: translate(-50%, -50%);
}

.depart-info .box_first.bx003 ul:before {
    content: unset;
}

.depart-info .box_first li .content::before {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 2px;
    height: 40px;
    content: "";
    background: rgb(209, 211, 210);
}

.depart-info .box_first li .content:after {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 10px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #b7902a;
    content: "";
    margin-left: -7px;
}

.depart-info .box_first.bx03 li .content:after {
    border-top: 8px solid #fe1313;
}

.depart-info .box_second {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
}

    .depart-info .box_second ul {
        list-style: none;
        margin: 0;
        text-align: center;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .depart-info .box_second li {
        display: inline-block;
        margin: 0 20px;
        position: relative;
        width: 19%;
    }

        .depart-info .box_second li:first-child {
            margin-left: 0;
        }

        .depart-info .box_second li .content {
            background: #fdf8c2;
            box-shadow: rgba(0, 0, 0, 0.2) 8px 8px 8px;
            border: solid 1px #9f953b;
            min-height: 110px;
            padding: 10px 10px 10px;
            border-radius: 10px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .depart-info .box_second li p {
            font-size: 16px;
            color: #9f953b;
            font-weight: 700;
            margin: 0;
            text-align: center;
            line-height: 24px;
        }

        .depart-info .box_second li .content span {
            background: #9f953b;
        }

.depart-info .box_first li .content.first-box-content::before {
    content: unset;
}

.depart-info .box_first li .content.first-box-content:after {
    content: unset;
}

.depart-info .box_first.bx003 li:last-child .content {
    border: solid 1px #f2a915;
    border-left: solid 8px #f2a915;
    background: #ffedc9;
}

.depart-info .box_first.bx003 li:last-child h4 {
    color: #f2a915;
}

.depart-info .box_first.bx003 li:last-child .content span {
    background: #f2a915;
}

.depart-info .box_first.bx003 li:last-child:before {
    left: -40px;
    content: "";
    bottom: inherit;
    top: 115px;
    width: 41px;
    height: 2px;
    background: #f2a915;
}

.depart-info .box_first.bx003 li:last-child::after {
    content: unset;
}

.depart-info .box_first li:first-child .content {
    border: solid 1px #9f953b;
    border-left: solid 8px #9f953b;
    background: #fdf8c2;
    ;
    justify-content: center;
    align-items: center;
}

.depart-info .box_first.bx03 li:first-child span {
    background: #9f953b;
    color: #fff;
}

.depart-info .box_first.bx03 li:nth-child(2) .content {
    border: solid 1px #006c2f;
    border-left: solid 8px #006c2f;
    background: #e1ffee;
}

.depart-info .box_first.bx03 li:nth-child(3) .content {
    border: solid 1px #55456a;
    border-left: solid 8px #55456a;
    background: #f4ecff;
}

.depart-info .box_first.bx03 li:nth-child(4) .content {
    border: solid 1px #1c68c5;
    border-left: solid 8px #1c68c5;
    background: #bbdaff;
}

.depart-info .box_second li:nth-child(2) .content {
    border: solid 1px #006c2f;
    background: #e1ffee;
}

.depart-info .box_second li:nth-child(3) .content {
    border: solid 1px #55456a;
    background: #f4ecff;
}

.depart-info .box_first.bx03 li:last-child span {
    background: #1c68c5;
    color: #fff;
}

.depart-info .box_first.bx03 li:nth-child(2) h4 {
    color: #006c2f;
}

.depart-info .box_first.bx03 li:nth-child(3) h4 {
    color: #55456a;
}

.depart-info .box_first.bx03 li:nth-child(4) h4 {
    color: #1c68c5;
}

.depart-info .box_second li:nth-child(2) p {
    color: #006c2f;
}

.depart-info .box_second li:nth-child(2) span {
    background: #006c2f;
    color: #fff;
}

.depart-info .box_second li:nth-child(3) p {
    color: #55456a;
}

.depart-info .box_second li:nth-child(3) span {
    background: #55456a;
    color: #fff;
}

.depart-info .box_first li:first-child:after {
    border-top: 8px solid #9f953b;
}

.depart-info .box_first li:nth-child(2):after {
    border-top: 8px solid #16b25a;
}

.depart-info .box_first li:nth-child(3):after {
    border-top: 8px solid #9b6ada;
}

.depart-info .box_first li:last-child:after {
    border-top: 8px solid #9f953b;
}

.depart-info .box_first li:last-child::before {
    content: unset;
}

.depart-info .box_first li:last-child::after {
    content: unset;
}

.depart-info .box_first.bx003 li .content {
    border: solid 1px #fe1313;
    border-left: solid 8px #fe1313;
    background: #ffdfdf;
}

.depart-info .box_first.bx003 li:first-child:after {
    border-top: 8px solid #f11212;
}

.title-style-3 .glance:nth-child(3) {
    margin-bottom: 0px;
}

ul.nav.navbar-nav .donate-btn {
    background-color: #eb642d;
    margin: 6px 0px;
    padding: 14px !important;
    line-height: 12px !important;
    border-radius: 6px;
}

.cont-wrapper {
    border: 0 solid transparent;
    margin: 1rem 0;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-height: 180px;
    height: 100vh;
}
/* department info end */

/* map start */

.st0 {
    fill: #23ac37;
    transition: all 0.3s;
    cursor: pointer !important;
}
.st0:hover {
    fill: #323232;
    transition: all 0.3s;
    cursor: pointer !important;
    filter: drop-shadow(1px 1px 5px rgb(0 0 0 / 0.4));
    stroke-width: 1px;
    stroke: #fff;
}

text {
    font-size: 16px;
    font-weight: bold;
    fill: white;
    position: relative;
    z-index: 999;
}

/* map end */
/* chart */

#container , #container1{
    width: 100%;
    height: 425px;
}
.highcharts-background{
    fill: #ffffff!important;
}

/* table starts */

table.table > tfoot > tr > td,
table.table > thead > tr > th{
    background: var(--ogenix-base);
    color: var(--ogenix-bdr-color);
}

/* table ends */


.swiper-wrapper {
    height:unset;
}