* {
    margin : 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    left      : 0;
    top       : 0;
    margin    : 0;
    padding   : 0;
    overflow-x: hidden;
    margin    : 0 !important;
}

:root {
    --font-size-small: 12px;
    --font-size-large: 20px;
}

.text-font-size {
    font-size: var(--font-size-small);
}

@media (max-width: 576px) {
    .MuiContainer-root {
        padding-left : 13px !important;
        padding-right: 13px !important;
    }
}

.App {
    overflow: hidden;
}

a:active {
    color: #000;
}

.heading1 {
    color           : #0d8ccd;
    font-size       : 16px;
    background-color: #000;
    display         : flex;
    justify-content : center;
}

.textbox h1 {
    color: red;
}

.textbox h1:hover {
    color: black;
}

.dropbtn {
    background : transparent;
    padding    : 8px;
    border     : none;
    line-height: 24px;
    color      : #222222;
    cursor     : pointer;
    font-size  : 17px;
    font-family: system-ui;
    font-weight: 500;
    position   : relative;
}

.dropbtn::after {
    content   : "";
    position  : absolute;
    bottom    : -3px;
    width     : 0;
    left      : 0;
    right     : 0;
    height    : 2px;
    transition: 0.1s ease-in-out;
}

.borderClass {
    content   : "";
    position  : absolute;
    bottom    : 0;
    width     : 0;
    left      : 0;
    right     : 0;
    height    : 2px;
    transition: 0.1s ease-in-out;
}

.borderClassActive {
    content            : "";
    position           : absolute;
    bottom             : 0;
    width              : 100%;
    left               : 0;
    right              : 0;
    height             : 3px;
    /* background-color: #f4e757; */
    transition         : 0.3s ease-in-out;
}

.mandatesTitles {
    position  : relative;
    width     : 0%;
    transition: 0.3s ease-in-out;
}

.dropbtn:hover {
    border-bottom: 3px solid #f4e757;
}

.dropbtn:hover::after {
    content         : "";
    position        : absolute;
    bottom          : -3px;
    width           : 100%;
    left            : 0;
    right           : 0;
    height          : 3px;
    background-color: #f4e757;
    transition      : 0.3s ease-in-out;
}

@media (max-width: 1210px) {
    .dropbtn {
        background : transparent;
        padding    : 16px;
        border     : none;
        line-height: 24px;
        color      : #222222;
        font-size  : 17px;
        font-family: system-ui;
        font-weight: 500;
    }
}

.dropdown {
    position   : relative;
    align-items: center;


}

.dropdown .topmenubtn {
    display        : flex;
    justify-content: "space-between";
    align-items    : "center";
    border-bottom  : "1px solid rgba(255, 255, 255, 0.1)",

}

.dropdown .topmenubtn .topmenubtnMenu {
    display: flex;
    color  : #fff;
}

.activeMenu {
    display      : flex;
    align-items  : center;
    color        : #006400;
    width        : 100%;
    border-bottom: 3px solid #f4e757;
}


.dropdown .submenus {
    display      : none;
    transition   : 5s;
    background   : #f0f8ff14;
    border-radius: 3px;
}

.dropdown:hover .submenus {
    display   : none;
    transition: 5s;
}

.showMenu {
    display      : block;
    transition   : 5s;
    background   : #f0f8ff14;
    border-radius: 3px;
}

.notshowContact {
    transition: 5s;
}

.dropdown-content {
    position        : absolute;
    background-color: white;
    min-width       : 340px;
    box-shadow      : 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index         : 999;
    display         : none;
    top             : 42px;
}

.dropdown-content:hover::after {
    content         : '';
    position        : absolute;
    left            : 0;
    width           : 100%;
    height          : 5px;
    bottom          : 0;
    right           : 0;
    transition      : ".3s ease-in-out";
    background-color: #f4e757;
}

.dropdown-content.mandates-menu:hover::after {
    bottom          : 0;
    background-color: transparent;

}

.dropdown-content1 {
    display         : none;
    position        : absolute;
    background-color: transparent;
    min-width       : 160px;
    box-shadow      : 0px 8px 16px 0px transparent;
    z-index         : 1;
}



.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:focus .dropdown-content {
    display: block !important;
}

.dropdown:active .dropdown-content {
    display: block !important;
}

.dropdown:hover .dropbtn {
    color: #1a5d1a;
}

.dropdown .forwardIconContainer {
    transition: 0.5s;
}

.dropdown:hover .forwardIconContainer {
    transform : rotate(90deg);
    transition: 0.5s;
}

.Agriculture {
    font-size    : 130px;
    font-weight  : 700;
    font-family  : var(--agrion-font);
    line-height  : 140px;
    margin-top   : 11px;
    margin-bottom: 19px;
    font-family  : "Open Sans", sans-serif;
    color        : #fff;
}

@media (max-width: 960px) {
    .Agriculture {
        font-size  : 70px;
        line-height: 70px;
    }
}

@media (max-width: 615px) {
    .Agriculture {
        font-size  : 50px;
        line-height: 57px;
    }
}

.arrows {
    position      : absolute;
    top           : 80%;
    left          : 20px;
    transform     : translateY(-50%);
    display       : flex;
    flex-direction: column;
    z-index       : 1;
}

.dots {
    position       : absolute;
    bottom         : 20px;
    display        : flex;
    justify-content: center;
    align-items    : center;
    top            : 90%;
    left           : 44% !important;
    z-index        : 1;
}

@media screen and (max-width: 768px) {
    .dots {
        top : 20%;
        left: 40% !important;
    }
}

@media screen and (max-width: 564px) {
    .dots {
        left: 35% !important;
        top : 20% !important;
    }
}

@media screen and (max-width: 375px) {
    .dots {
        left: 30% !important;
        top : -25% !important;
    }
}

@media screen and (max-width: 280px) {
    .dots {
        left: 30% !important;
        top : 0% !important;
    }
}

@media screen and (min-width: 1680px) {
    .dots {
        top: 77%;
    }
}

.newClass {
    height    : 320px !important;
    overflow-y: initial !important;
    box-shadow: rgba(50, 50, 93, 0) 1px 4px 0px 0px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px 0px;
}

@media screen and (max-width: 1280px) {
    .newClass {
        height    : 295px !important;
        overflow-y: initial !important;
        box-shadow: rgba(50, 50, 93, 0) 1px 4px 0px 0px,
            rgba(0, 0, 0, 0.3) 0px 1px 3px 0px;
    }
}

.slick-prev:before,
.slick-next:before {
    color: #277a26;
}

/* .slick-slider .slick-track,
.slick-slider .slick-list {
} */
.slick-slide img {
    width: 100%;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    display: flex;
}

.MuiTable-root {
    overflow-x: auto;
}

.h3Class {
    color      : #000;
    font-size  : 18px;
    font-family: system-ui;
    font-weight: 500;
}

@property --border-angle {
    syntax       : "<angle>";
    inherits     : true;
    initial-value: 0turn;
}

.custom-dialog {
    background-color: transparent;
}

.modal-open {
    overflow: hidden;
}

.textcss {
    animation: slideUpDown 5s infinite alternate;
    top      : -100%;
}

.slick-dots li button:before {
    font-size: 12px !important;
}

.slick-dots li.slick-active button:before {
    color: #1a5d1a !important;
}

.shadowClass {
    position     : absolute;
    top          : 0;
    left         : 0;
    right        : 0;
    width        : 100%;
    height       : 100vh;
    border-radius: 50%;
    background-image: -webkit-radial-gradient(50% 50%,
            circle closest-side,
            rgb(121, 184, 35) 44%,
            rgb(255, 255, 255) 100%);
    opacity: 0.8;
    margin : 0 auto;
    z-index: -1;
}

.slick-next {
    right: 30px !important;
}

.slick-prev {
    left: 20px !important;
}

.slick-prev,
.slick-next {
    z-index: 1 !important;
}

.slick-prev:before {
    font-size: 40px !important;
    color    : #000 !important;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px !important;
    color    : #1a5d1a63 !important;
}

.vertical-timeline-element-content .vertical-timeline-element-date {
    font-size  : 24px !important;
    font-weight: 600 !important;
    font-family: monospace;
    color      : #000;
}

.descriptionDetails {
    font-size  : 16px !important;
    font-family: system-ui;
}

.uttarpradeshClass {
    fill: #1a5d1a63 !important;
}

.MuiAutocomplete-inputRoot[class*="MuiOutlinedInput-root"] .MuiAutocomplete-input {
    padding: 7.5px 4px !important;
}

.option {
    color      : #000;
    font-size  : 14px;
    font-family: system-ui;
    font-weight: 500;
}

.hoverText {
    transition: 0.3s ease-in-out;
}

.hoverText:hover {
    color: #f4e757;
}

/* Skip to main content button accessibility */
.screenBox button {
    background   : transparent !important;
    border       : none !important;
    padding      : 8px 12px !important;
    color        : #fff !important;
    font-size    : 14px !important;
    font-weight  : 500 !important;
    transition   : all 0.3s ease !important;
    border-radius: 4px !important;
}

.screenBox button:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color     : #f4e757 !important;
    transform : translateY(-1px) !important;
}

.screenBox button:focus {
    outline       : 2px solid #1a5d1a !important;
    outline-offset: 2px !important;
    background    : rgba(26, 93, 26, 0.2) !important;
}

/* Scroll offset for better positioning */
#our-offerings-heading {
    scroll-margin-top: 80px;
    /* This creates space above the heading when scrolling */
    padding-top      : 20px;
    /* Additional padding for better visual spacing */
}

.playIcon {
    border-radius  : 50%;
    width          : 80px;
    height         : 80px;
    background     : #fff;
    animation      : ripple 1900ms infinite;
    display        : flex;
    justify-content: center;
    margin-top     : 30px;
    cursor         : pointer;
    align-items    : center;
}

.playIcon .iconClass {
    color    : #ffcd1e;
    font-size: 80px;
}

@media screen and (max-width: 615px) {
    .playIcon .iconClass {
        color    : #ffcd1e;
        font-size: 50px;
    }
}

@media screen and (max-width: 615px) {
    .playIcon {
        width     : 60px;
        height    : 60px;
        margin-top: 30px;
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0px rgb(121, 184, 35), 0 0 0 0px rgb(121, 184, 35),
            0 0 0 0px yellow, 0 0 0 0px yellow;

    }

    100% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0),
            0 0 0 16px rgba(255, 255, 255, 0), 0 0 0 40px rgba(255, 255, 255, 0),
            0 0 0 19px rgba(255, 255, 255, 0);
    }
}

@media screen and (min-width: 960px) {
    .roadmapmobile {
        display: none;
    }
}

.swal-button:hover {
    background-color: #1a5d1a !important;
}

.swal-button {
    background-color: #1a5d1a;
}

.custom-swal-content {
    color      : blue;
    /* Add your desired styles here */
    font-weight: bold;
    /* Add any other styles as needed */
}

#grievanceNumber {
    color      : #1a5d1a;
    font-weight: 600;
    font-size  : 18px;
}

.text-decoration-class {
    text-decoration: none !important;
    color          : #000 !important;
    border-radius  : 50px !important;
    padding        : 0 5px !important;
}



.apexcharts-legend {
    justify-content: start !important;
}

.apexcharts-legend-marker {
    height    : 13px !important;
    /* width  : 25px !important; */
    min-width : 15px;
    max-width : 15px;
    min-height: 15px;
}

.stf__parent {
    position        : relative;
    display         : block;
    box-sizing      : border-box;
    transform       : translateZ(0);
    -ms-touch-action: pan-y;
    touch-action    : pan-y;
}

.album {
    text-align     : center;
    overflow-x     : hidden;
    margin         : 0 !important;
    overflow-y     : hidden !important;
    cursor         : pointer !important;
    width          : 600px !important;
    display        : flex !important;
    justify-content: end;
}

.album1 {
    text-align: center;
    overflow-x: hidden;
    margin    : 0 !important;
    overflow-y: hidden !important;
    cursor    : pointer !important;
    left      : 525px;
}

.mainFlipbookDiv {
    position: relative;
    overflow: hidden !important;
}

@media (max-width: 615px) {
    .mainFlipbookDiv {
        height: 450px;
    }
}

.bookButton {
    display        : flex;
    justify-content: center;
    align-items    : center;
    gap            : 15px;
    margin-top     : 30px;
}

@media (max-width: 615px) {
    .bookButton {
        margin-top: -20px;
    }
}

@media (max-width: 375px) {
    .bookButton {
        margin-top: -50px;
    }
}

@media (max-width: 1920px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 421px !important;
    }
}

@media (max-width: 1880px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 341px !important;
    }
}

@media (max-width: 1680px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 650px !important;
    }
}

@media (max-width: 1480px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 150px !important;
    }

    .album {
        text-align     : center;
        overflow-x     : hidden;
        margin         : 0 !important;
        overflow-y     : hidden !important;
        cursor         : pointer !important;
        width          : 600px !important;
        display        : flex !important;
        justify-content: center;
    }
}

@media (max-width: 1280px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 117px !important;
    }

    .album {
        text-align     : center;
        overflow-x     : hidden;
        margin         : 0 !important;
        overflow-y     : hidden !important;
        cursor         : pointer !important;
        display        : flex !important;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 0px !important;
        top       : 0px !important;
    }

    .album {
        overflow-y: hidden !important;
        cursor    : pointer !important;
        display   : block !important;
        left      : 12px !important;
        top       : 27px !important;
    }
}

@media (max-width: 375px) {
    .album1 {
        text-align: center;
        overflow-x: hidden;
        margin    : 0 !important;
        overflow-y: hidden !important;
        cursor    : pointer !important;
        left      : 0px !important;
        top       : 0px !important;
    }

    .album {
        overflow-y: hidden !important;
        cursor    : pointer !important;
        display   : block !important;
        position  : inherit;
        left      : initial !important;
        max-width : 355px !important;
    }
}

.page {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.cover {
    background-color: rgb(251, 225, 139);
    box-shadow      : 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.long-text-container {
    width        : 275px;
    /* Adjust width according to your layout */
    white-space  : unset;
    overflow     : hidden;
    text-overflow: ellipsis;
    height       : 111px;
}

.long-text {
    padding: 0 30px 0px 16px !important;
}

/* Animation property */
.buttonstyles {
    animation: wiggle 2s linear infinite;
}

/* Keyframes */
@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}

.buttonstyles {
    /* position: absolute; */
    left: calc(50% - 3em);
    top : calc(50% - 2em);

    height: 4em;
    width : 7em;

    /* background: #444; */
    /* background: linear-gradient(top, #555, #333); */
    border             : none;
    /* border-top      : 3px solid orange; */
    border-radius      : 0 0 0.2em 0.2em;
    color              : #fff;
    font-family        : Helvetica, Arial, Sans-serif;
    font-size          : 1em;
    /* transform-origin: 50% 5em; */
}

.marquee {
    box-shadow      : 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #1a5d1a;
    overflow        : hidden;
    position        : relative;
    height          : 43px;
    width           : 100%;
}

.marquee p {
    position   : absolute;
    width      : auto;
    height     : 100%;
    margin     : 0;
    line-height: 43px;
    text-align : center;
    transform  : translateX(100%);
    animation  : scroll-left 30s linear infinite;
    font-size  : 16px;
    font-weight: 400;
    font-family: system-ui;
    color      : #fff;
}

.marquee a {
    font-size      : 16px;
    font-weight    : 400;
    font-family    : system-ui;
    color          : #fff;
    text-decoration: none;
}

.marquee:hover p {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.swal2-show {
    margin-top: 70px;
    padding   : 6px 6px 2px 6px !important;
}

.swal2-html-container {
    padding: 0 !important;
}

.text-focus-in {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation        : text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter        : blur(12px);
        opacity       : 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter        : blur(0px);
        opacity       : 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter        : blur(12px);
        opacity       : 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter        : blur(0px);
        opacity       : 1;
    }
}




.zoom-in-zoom-out {
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.5, 1.5);

    }

    100% {
        transform: scale(1, 1);

    }
}

.progress {
    z-index   : 999;
    height    : 5px;
    background: #1a5d1a;
    position  : fixed;
    top       : 138px;
    left      : 0;
    width     : 0%;
    /* Initially 0 */
    transition: width 0.2s ease-out;
}

@media screen and (max-width: 615px) {
    .progress {
        top: 115px;
    }
}

.index-module_type__E-SaG::after {
    content: '' !important;
}

.hithere {
    animation: hithere 2s ease infinite;
}

@keyframes hithere {
    30% {
        transform: scale(1.2);
    }

    40%,
    60% {
        transform: rotate(-20deg) scale(1.2);
    }

    50% {
        transform: rotate(20deg) scale(1.2);
    }

    70% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.add-zindex {
    font-size: 24px;
    height   : 0px;
}



.pdf-modal-header h4 {
    padding    : 20px;
    text-align : center;
    font-family: system-ui;

}

.pdf-modal-header button {
    padding : 20px;
    position: absolute;
    right   : 0;
    color   : red;
}

.next-button {
    background: none;
    border    : none;
    cursor    : pointer;
}

.uw-widget-custom-trigger {
    background-color: #009035 !important;
    bottom          : 2% !important;
    right           : 5px !important;
}

.second-panel {
    background-color: #009035 !important;
}

.third-panel {
    background-color: #009035 !important;
}

.fourth-panel {
    background-color: #009035 !important;
}

.tick-active {
    background-color: #009035 !important;
}

.tick-inactive {
    background-color: #009035 !important;
}

.tick-inactive:hover {
    background-color: #009035 !important;
}

.hidebutton-css {
    background  : transparent;
    border-color: transparent;
    width       : 100%;
    cursor      : pointer;

}

/* SweetAlert Dialog Accessibility Styles */
.swal-dialog {
    role      : dialog !important;
    aria-label: "Dialog" !important;
}

.swal-dialog[role="dialog"] {
    position: fixed !important;
    z-index : 9999 !important;
}

.swal-title {
    font-size    : 1.5rem !important;
    font-weight  : 600 !important;
    margin-bottom: 1rem !important;
}

.swal-content {
    font-size  : 1rem !important;
    line-height: 1.5 !important;
    padding    : 0 !important;
}

.swal-button--confirm {
    background-color: #007bff !important;
    border          : none !important;
    border-radius   : 4px !important;
    padding         : 8px 16px !important;
    font-size       : 1rem !important;
    font-weight     : 500 !important;
    cursor          : pointer !important;
}

.swal-button--confirm:hover {
    background-color: #0056b3 !important;
}

.swal-button--confirm:focus {
    outline       : 2px solid #007bff !important;
    outline-offset: 2px !important;
}

@media (max-width: 576px) {

    .apexcharts-legend.apx-legend-position-bottom.apexcharts-align-center,
    .apexcharts-legend.apx-legend-position-top.apexcharts-align-center {
        top: 308px !important;
    }

}

.bhashini-dropdown-content>div {
    cursor     : pointer;
    font-family: system-ui;

}

/* Hide Bhashini toolbar when English is selected */
.bhashini-toolbar,
.bhashini-language-bar,
#bhashini-language-bar {
    display: none !important;
}


#bhashini-selected-language {
    margin-left: 0px !important;
    font-family: system-ui !important;
    font-size  : 16px !important;
    font-weight: 400 !important;


}

.custom-bhashini-arrow {
    margin-left: 6px;
    font-size  : 10px;
    color      : #ebebeb;
    line-height: 1;
    margin-top : 5px;
}

.bhashini-dropdown-btn {
    display         : flex !important;
    background-color: transparent !important;
    color           : #fff !important;
    font-size       : 16px !important;
    border          : none !important;
    cursor          : pointer !important;
    max-width       : 100% !important;
    align-items     : center !important;
}

.bhashini-dropdown-btn-icon svg {
    width : 25px !important;
    height: 25px !important;
}