@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
:root {
    --primary-color: #246545; /* green for buttons and links */
    --secondary-color: #28a745; /* Green for download button */
    --background-color: #e9f2ffb2; /* Light gray background */
    --card-background: #e6e6e6;
    --background-color-sec: #dbe5f794; /* White background for cards */
    --color-white: #fff; /* White color */
    --text-color: #2d2d2d; /* Dark text color */
    --secondary-text-color: #676767; /* Lighter text for secondary info */
    --border-color: #ddd; /* Light gray border */
    --shadow-color: 2px 2px 7px -4px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    --spacing-sm: 10px; /* Small spacing */
    --spacing-md: 20px; /* Medium spacing */
    --radius-medium: 25px;
    --font-size-xl: 43px;
    --font-size-lg: 24px; /* Large font for headings */
    --font-size-md: 18px; /* Medium font for titles */
    --font-size-sm: 14px; /* Small font for secondary text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 400;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

html,
body {
    font-family: "Raleway", sans-serif !important;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    overflow: visible;
}

img {
    max-width: 100%;
    width: 100%;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

.container {
    max-width: 1300px;
    width: 100%;
    padding: 0 15px;
}

.custm-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: block;
    padding: 8px 40px;
    border-radius: var(--radius-medium);
    font-size: var(--font-size-md);
    text-align: center;
    font-weight: 700;
    transition: 0.5s;
    text-decoration: none;
}

.btn-bg-dark {
    background-color: var(--primary-color);
    color: var(--color-white);
}

.custm-btn:hover {
    color: var(--color-white);
    background-color: var(--primary-color);
}

.btn-bg-dark:hover {
    color: var(--primary-color);
    background-color: var(--color-white);
}

header {
    position: fixed;
    z-index: 9999;
    background: #fff;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 61.85%, rgba(255, 255, 255, 0.89) 100%);
}

/*.header {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
}*/
.header .logo {
    margin: 0;
    display: flex;
    gap: 20px;
    max-width: initial !important;
}

    .header .logo a {
        max-width: 225px !important;
    }

.andaman-logo {
    width: 257px;
    height: 66px;
    border-radius: 0;
    opacity: 1;
    position: relative;
}
    /*.andaman-logo img {
        width: 28px;
        position: absolute;
        left: 21px;
        top: 11px;
    }*/

    .andaman-logo img {
        width: 100%;
        /*        position: absolute;
        max-width: 218px;*/
    }

    .andaman-logo h3 {
        font-size: 10px;
        position: absolute;
        top: 11px;
        left: 58px;
        color: rgb(255, 255, 255);
        font-family: "Open Sans", sans-serif;
    }

    .andaman-logo h2 {
        position: absolute;
        font-size: 15px;
        color: rgb(255, 255, 255);
        line-height: 18px;
        top: 25px;
        left: 60px;
        width: 100%;
        max-width: 180px;
    }

.bg-footer {
    background-color: var(--text-color);
}

.logo a {
    display: flex;
    gap: 30px;
    max-width: 300px;
    width: 100%;
    margin-right: 10px;
    border-right: 1px solid rgb(188, 188, 188);
    padding-right: 25px !important;
}

.login-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

#auth-section {
    display: flex;
    align-items: center;
}

.hero-sec,
.about-us-sec {
    margin-bottom: 100px;
    position: relative;
}

.welcome-abs {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1018px;
    width: 100%;
    z-index: 9;
}

    .welcome-abs h1 {
        font-size: var(--font-size-xl);
        font-weight: 700;
        color: var(--color-white);
        text-align: center;
        margin-bottom: 15px;
        font-family: "Raleway", sans-serif !important;
        text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
        max-width: 910px;
        margin: 0 auto;
        margin-bottom: 17px;
        padding: 10px;
    }

    .welcome-abs .form-search-box {
        max-width: 100%;
    }

        .welcome-abs .form-search-box form,
        .welcome-abs .form-search-box .search-wrap {
            width: 100%;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .welcome-abs .form-search-box .input-full-width {
            width: 100%;
            outline: none;
            border: none;
            font-size: var(--font-size-md);
            font-weight: 600;
            color: var(--secondary-text-color);
        }

    .welcome-abs .cancel.save-draft.action-button {
        background-color: #bee7d3;
    }

    .welcome-abs .advanceSearch-btn.searchButton {
        background: transparent;
        border: none;
        border-left: 1px solid #b7b7b7;
        width: auto;
        display: flex;
        font-size: var(--font-size-md);
        font-weight: 600;
        color: var(--primary-color);
        white-space: nowrap;
        padding: 0 18px;
    }

        .welcome-abs .advanceSearch-btn.searchButton img {
            max-width: 12px;
            margin-left: 10px;
        }

    .welcome-abs .asvanceSearch {
        width: 100%;
        margin: 0;
        left: 0;
        /*top: 60%;*/
        margin-top: 12px;
    }

.welcome_slider {
    padding-bottom: 40px;
}

.expand-sec {
    background-color: var(--color-white);
    padding: 20px 30px;
    border-radius: 100px;
    max-width: 450px;
    margin-inline: auto;
    opacity: 0.8;
    backdrop-filter: blur(10px);
}

    .expand-sec label {
        font-weight: 600;
        font-size: var(--font-size-md);
        color: var(--secondary-text-color);
    }

    .expand-sec .form-switch {
        display: flex;
        align-items: center;
        gap: 22px;
    }

        .expand-sec .form-switch .form-check-input {
            width: 50px !important;
            height: 25px;
            margin-top: 0;
            outline: none;
            margin-left: -25px;
        }

.form-check-input:checked {
    background-color: #246545;
    border-color: #246545;
}


.wraper-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .wraper-section nav ul {
        margin: 0;
        padding: 0;
    }

        .wraper-section nav ul li a {
            font-weight: 700;
            font-size: 1.4rem;
            color: #246545;
            text-decoration:underline;
        }

header .login-options .dropdown button {
    padding-inline: 15px !important;
}

    header .login-options .dropdown button + ul {
        transform: translate(8px, 45px) !important;
    }
    

    .about-us-sec {
        display: flex;
        gap: 45px;
    }

    .about-us-sec > * {
        max-width: 50%;
    }

    .about-us-sec .right-sec-img {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .about-us-sec .right-sec-img div {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

            .about-us-sec .right-sec-img div > * {
                max-width: 100%;
                box-sizing: border-box;
            }

        .about-us-sec .right-sec-img img {
            border-radius: 20px;
        }

    .about-us-sec .left-sec h2 {
        margin-bottom: var(--font-size-sm);
        font-size: var(--font-size-lg);
        font-weight: 700;
        color: var(--text-color);
        font-family: "Raleway", sans-serif !important;
    }

    .about-us-sec .left-sec p {
        margin-bottom: 0;
        font-size: var(--font-size-md);
        font-weight: 500;
        color: var(--secondary-text-color);
        line-height: normal;
        text-align: justify;
    }

.wrraper-wel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 901px;
    margin: 0 auto;
}

.advance-search {
    background-color: var(--color-white);
    padding: 10px 25px;
    border-radius: 100px;
}

.search-container {
    background: #ffffff;
    width: 800px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

    .header h3 {
        color: #246445;
        text-decoration: underline;
        margin: 0;
    }

.links {
    display: flex;
    gap: 15px;
    // font-size:14px;
}

    .links a {
        text-decoration: none;
        color: #246445;
        font-weight: 500;
    }

.field-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

select, input {
    padding: 10px 12px;
    border-radius: 25px;
    border: 1.5px solid #ccc;
    outline: none;
    /*min-width: 180px;*/
}

input {
    flex: 1;
}

.remove-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #246445;
    color: #246445;
    background: white;
    cursor: pointer;
    font-weight: bold;
}

.add-btn {
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px solid #246445;
    color: #246445;
    background: white;
    cursor: pointer;
}

.actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.reset-btn {
    padding: 8px 25px;
    border-radius: 25px;
    border: 2px solid #246445;
    background: white;
    color: #246445;
    cursor: pointer;
}

.search-btn {
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    background: #246445;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

    .search-btn:hover {
        background: #676767;
    }



.custom-select {
    position: relative;
    width: 220px;
    cursor: pointer;
}

.selected-value {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background: #fff;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 1000;
    padding: 0;
    margin: 0;
}

    .select-options li {
        list-style: none;
        padding: 8px 12px;
    }

        .select-options li:hover {
            background: #eee;
        }

#AdvanceSearch {
    display: none;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.categories-sec h2 {
    margin-bottom: var(--font-size-xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-color);
    font-family: "Raleway", sans-serif !important;
    text-align: center;
}

.categories-sec .cards {
    display: grid;
    gap: 20px;
    row-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
}

.categories-sec .card {
    position: relative;
    background-color: rgb(230, 248, 240);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-color);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row;
    max-width: 400px;
    width: 100%;
    padding: 25px 40px;
    align-self: center;
    min-height: 145px;
    height: 100%;
}

    .categories-sec .card a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .categories-sec .card .text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .categories-sec .card img {
        max-width: 80px;
        max-height: 80px;
        width: auto;
        height: auto;
        border-radius: 20px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .categories-sec .card h3 {
        font-size: var(--font-size-md);
        font-weight: 600;
        color: var(--text-color);
        font-family: "Raleway", sans-serif !important;
    }

.modal-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--primary-color);
}

.modal-footer {
    border: none;
}

canvas {
    max-width: 100%;
    width: 100%;
}

.modal {
    z-index: 9999;
}

    .modal form {
        max-width: 400px;
        width: 100%;
        margin-inline: auto;
    }

        .modal form .form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }

            .modal form .form-group label {
                font-weight: 600;
                font-size: var(--font-size-md);
                color: var(--secondary-text-color);
            }

            .modal form .form-group input {
                border: 1px solid var(--secondary-text-color);
                color: var(--secondary-text-color);
                padding: 10px 16px;
                border-radius: var(--radius-medium);
                background-color: transparent;
                width: 100%;
                font-family: "Open Sans", sans-serif;
                font-weight: 600;
                font-size: var(--font-size-md);
                position: relative;
            }

            .modal form .form-group p {
                font-weight: 400;
                font-size: var(--font-size-md);
                color: var(--secondary-text-color);
            }

                .modal form .form-group p button {
                    color: var(--primary-color);
                    font-weight: 600;
                    background-color: transparent;
                }

    .modal button.close {
        background-color: transparent;
        border: none;
        font-size: var(--font-size-xl);
        color: var(--primary-color);
        display: flex;
        align-items: center;
    }

    .modal#previewPDF .modal-dialog {
        max-width: 800px;
        width: 100%;
        height: 95vh;
        overflow-y: auto;
    }

        .modal#previewPDF .modal-dialog .modal-body {
            text-align: center;
        }

            .modal#previewPDF .modal-dialog .modal-body > img {
                max-width: 480px;
            }

.modal-header {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1366px) {
    .welcome_slider {
        height: 65vh;
    }

        .welcome_slider img {
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 40px;
        }
}

@media (max-width: 992px) {
    .welcome-abs {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    :root {
        --font-size-xl: 36px;
        --font-size-lg: 24px; /* Large font for headings */
        --font-size-md: 16px; /* Medium font for titles */
        --font-size-sm: 14px; /* Small font for secondary text */
    }

    .welcome_slider {
        height: 60vh;
    }

    .expand-sec {
        padding: 20px 25px;
    }

    .about-us-sec {
        flex-direction: column;
    }

        .about-us-sec > * {
            max-width: 100%;
        }

        .about-us-sec .left-sec h2 {
            text-align: center;
        }

    .hero-sec,
    .about-us-sec {
        margin-bottom: 60px;
    }

    .welcome-abs .asvanceSearch {
        top: 69%;
    }

    .header {
        flex-direction: column;
        padding-block: 10px;
        gap: 20px;
    }

        .header .logo {
            width: 100%;
            justify-content: space-around;
        }

    .logo a {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .hero-sec {
        margin-top: 125px;
    }

    .categories-sec .cards {
        flex-direction: column;
    }

    .login-options {
        flex-direction: row !important;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    :root {
        --font-size-xl: 32px;
        --font-size-lg: 24px; /* Large font for headings */
        --font-size-md: 16px; /* Medium font for titles */
        --font-size-sm: 14px; /* Small font for secondary text */
    }

    .login-options {
        flex-direction: column;
    }

    .custm-btn {
        width: 100%;
    }

    .custm-btn {
        padding: 5px 25px;
    }

    .expand-sec {
        padding: 5px 5px;
    }

    .welcome-abs .form-search-box form {
        flex-direction: column;
    }

    .advance-search {
        padding: 20px 25px;
        border-radius: 15px;
    }

    .welcome-abs .advanceSearch-btn.searchButton {
        border: none;
        border-top: 1px solid #b7b7b7;
        padding: 15px 0;
        border-radius: 0;
        width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .welcome-abs .form-search-box form,
    .welcome-abs .form-search-box .search-wrap {
        gap: 10px;
    }

    .hero-sec {
        margin-top: 109px;
    }

    .welcome-abs {
        bottom: 60px;
    }

        .welcome-abs h1 {
            line-height: normal;
            margin-bottom: 15px;
        }

        .welcome-abs .advanceSearch-btn.searchButton {
            padding-bottom: 0;
        }

    .associated-slider {
        padding-bottom: 46px !important;
    }
}

.welcome-animation {
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 999999;
}

    .welcome-animation .guest-image {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

        .welcome-animation .guest-image img {
            max-width: 100%;
            width: 100%;
            height: 100vh;
            -o-object-fit: contain;
            object-fit: contain;
            display: block;
        }

        .welcome-animation .guest-image.active img {
            scale: 2;
        }

    .welcome-animation .curtain {
        width: 50%;
        height: 100%;
        background-color: #ff0000;
        position: absolute;
        top: 0;
        background-image: url("/images/welcome/curtain.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        overflow: hidden;
        transition: all 4s cubic-bezier(0.7, 0, 1, 1);
        cursor: pointer;
    }

    .welcome-animation #clap-sound {
        position: absolute;
        opacity: 0;
    }

    .welcome-animation .left-curtain {
        left: 0;
    }

    .welcome-animation .right-curtain {
        right: 0;
    }

    .welcome-animation .left-curtain.active {
        left: -50%;
    }

    .welcome-animation .right-curtain.active {
        right: -50%;
    }

    .welcome-animation .right-curtain {
        background-image: url("/images/welcome/curtain-right.jpg");
    }

.launch-btn {
    max-width: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: #6c757d;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.fa-folder:before {
    content: "\f07b";
    color: #246445;
}

.user-menu .dropdown-toggle {
    background: #246445;
    color: white;
    border: none;
    padding: 8px 20px;
}

    .user-menu .dropdown-toggle:hover {
        background: #a0a0a0;
    }

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    color: #6c757d;
}

.dropdown-header {
    font-size: 0.85rem;
    font-weight: 600;
    color: #246445;
}

body {
    font-family: "Raleway", sans-serif !important;
}

.progress-sec {
    position: relative;
    margin-bottom: 30px;
}

    .progress-sec button {
        border: none;
        text-decoration: underline;
        background: none;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(calc(-50% - 12px));
        font-size: 16px;
        font-weight: 700;
    }

.logo {
    display: flex;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    max-width: 423px;
    margin: auto;
    display: flex;
}

    #progressbar li {
        list-style-type: none;
        color: #246445;
        text-transform: capitalize;
        font-size: 9px;
        width: 33.33%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        /*progressbar connectors*/
    }

        #progressbar li span {
            width: 42px;
            line-height: 42px;
            display: block;
            font-size: 24px;
            color: #9b9b9b;
            background: #d9d9d9;
            border-radius: 50%;
            margin: 0 auto 5px auto;
            text-align: center;
            z-index: 2;
        }

        #progressbar li p {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
            color: #bbbbbb;
        }

        #progressbar li.active span {
            color: #fff;
            background-color: #246445;
        }

        #progressbar li.active p {
            color: #246445;
        }

        #progressbar li:after {
            content: "";
            width: 100%;
            height: 2px;
            background: #d9d9d9;
            position: absolute;
            left: -50%;
            top: 20px;
            z-index: 1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before,
        #progressbar li.active:after {
            background: #246445;
            color: white;
        }

#msform {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

    #msform fieldset .heading-upload {
        margin: 0;
    }

    #msform fieldset select:focus, #msform fieldset:not(input[type=button]):focus {
        border: 1px solid #ced4da;
    }

    #msform .action-button {
        border: 1px solid;
        font-size: 16px;
        font-weight: 700;
        box-sizing: border-box;
        padding: 9px 32px;
        border-radius: 25px;
        line-height: normal;
        display: inline-block;
        border: 1px solid transparent;
    }

        #msform .action-button.next {
            height: auto;
            width: auto;
        }

        #msform .action-button.cancel {
            border: 1px solid #246445;
            background: transparent;
            color: #246445;
            margin-right: 12px;
        }

    #msform .next {
        background-color: #246445;
        color: #ffffff;
    }

    #msform .form-select {
        padding: 13px 20px !important;
        display: block;
        font-size: 14px;
        font-weight: 500;
    }

    #msform fieldset {
        transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
    }

        #msform fieldset .fieldset-wrap {
            position: relative;
        }

        #msform fieldset:not(:first-of-type) {
            display: none;
        }

        #msform fieldset .previous {
            position: absolute;
            left: 0;
            top: -80px;
            color: #246445;
            font-size: 16px;
            font-weight: 700;
            border: none;
            text-decoration: underline;
            background: transparent;
            line-height: 1.5;
            width: auto;
            text-decoration: none;
        }

    #msform .heading-line {
        font-size: 24px;
        font-weight: 700;
        color: #676767;
        margin-bottom: 5px;
    }

    #msform p {
        margin-bottom: 5px;
    }

    #msform .input-file-box label {
        font-family: "Raleway", sans-serif !important;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }

        #msform .input-file-box label span {
            font-family: "Raleway", sans-serif !important;
            border: 1px solid #246445;
            border-radius: 25px !important;
            margin-top: 15px;
            padding: 9px 18px;
            font-size: 16px;
            font-weight: 700;
            color: #5f320d;
        }

    #msform .table th,
    #msform .table td {
        padding: 9px 25px;
        text-align: left;
    }

    #msform .table td {
        padding-top: 30px;
    }

    #msform .add-another-file {
        padding: 11px 16px;
        font-size: 14px;
        font-weight: 700;
        color: #246445;
        border: 1px dotted #246445;
        border-radius: 4px;
        margin: 25px 0;
    }

    #msform .uploadItem ul {
        padding-left: 25px;
        list-style-type: disc;
        line-height: 1.5;
    }

    #msform .uploadItem .page-link {
        display: inline-block;
        text-decoration: none;
        color: inherit;
    }

    #msform .bg-resource-table-1,
    #msform .bg-resource-table-2 {
        background-color: #fff;
        padding: 15px 20px;
    }

    #msform .bg-resource-table-2 {
        max-height: 480px;
        height: 100%;
        overflow-y: auto;
    }

    #msform .collection-button {
        border: 1px solid #246445;
        font-family: "Raleway", sans-serif !important;
        font-size: 14px;
        font-weight: 700;
        padding: 9px 15px;
        border-radius: 25px;
    }

    #msform .form-table tr {
        background-color: transparent;
    }

    #msform .upload-completed .heading-line {
        font-size: 40px;
        font-weight: 600;
        color: #246445;
        text-align: center;
    }

    #msform .upload-completed .add-another {
        background-color: #246445;
        color: #fff;
    }

    #msform .btn-wrap {
        margin-bottom: 100px;
    }

    #msform select:not([type=button]),
    #msform input:not([type=button]),
    #msform textarea:not([type=button]) {
        font-family: "Raleway", sans-serif !important;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
        padding: 13px 15px;
        color: #676767;
    }

main {
    min-height: 100vh;
}

body {
    background-color: #eaeaea;
    font-family: "Raleway", sans-serif !important;
}

.file-upload-container {
    font-family: "Raleway", sans-serif !important;
}

@media (width < 767px) {
    #msform fieldset:not(:first-child) {
        padding-top: 100px;
    }

    #msform .btn-wrap {
        margin: 30px 0;
        display: flex;
        justify-content: center !important;
    }

    #msform .table td,
    #msform .table th {
        padding: 15px 10px;
    }

    #msform .table tr {
        display: flex;
        align-items: center;
    }

    #msform .action-button {
        padding: 9px 20px;
    }

    .upload-form-header .saved-draft-link a {
        font-size: 14px;
    }

    #msform .upload-completed .heading-line {
        font-size: 34px;
    }
}

@media (width < 600px) {
    #msform .heading-line {
        font-size: 22px;
    }

    #msform label {
        font-size: 14px;
    }

    #msform .action-button {
        font-size: 12px;
    }

    #msform .form-select {
        padding: 9px 17px !important;
    }

    #msform select:not([type=button]),
    #msform input:not([type=button]),
    #msform textarea:not([type=button]) {
        font-size: 12px;
        padding: 9px 15px;
    }

    #msform p {
        font-size: 14px;
    }

    #msform .input-file-box label,
    #msform .input-file-box label span {
        font-size: 14px;
    }

    #msform .table td,
    #msform .table th {
        font-size: 13px;
    }

    #msform .inputfile + label {
        padding: 2.1rem 0;
    }

    #msform .bg-resource-table-1,
    #msform .bg-resource-table-2,
    #msform .col-md-6.col-6.text-style {
        font-size: 12px;
    }

    #msform .collection-button {
        padding: 5px 20px !important;
    }

    #msform .uploadItem ul {
        padding-left: 15px;
    }

        #msform .uploadItem ul li {
            font-size: 13px;
        }

    #msform .uploadItem .table {
        max-width: 100%;
        width: 100%;
        display: block;
        overflow-x: auto;
    }

        #msform .uploadItem .table thead,
        #msform .uploadItem .table tbody {
            display: block;
        }

        #msform .uploadItem .table th,
        #msform .uploadItem .table td {
            font-size: 12px;
            padding: 15px 5px;
        }

    #msform fieldset .previous {
        font-size: 14px;
    }

    #msform .upload-completed .heading-line {
        font-size: 26px;
    }
}

.saved-draft-page .btn.btn.dropdown-toggle,
.saved-draft-page .btn-check:checked + .btn,
.saved-draft-page :not(.btn-check) + .btn:active,
.saved-draft-page .btn:first-child:active,
.saved-draft-page .btn.active,
.saved-draft-page .btn.show {
    font-size: 18px !important;
    font-weight: 600;
    color: #676767 !important;
    background-color: transparent !important;
}

.saved-draft-page .show-entires-select {
    max-width: 75px;
    margin-left: 12px;
}

.saved-draft-page .show-entires {
    padding: 0;
}

.saved-draft-page .collection-button,
.saved-draft-page .btn.collection-button:first-child:active {
    border: 1px solid #246445 !important;
    border-radius: 25px;
    font-size: 16px !important;
    font-weight: 700;
}

.saved-draft-page .pagination .page-item .page-link {
    border: none;
    display: flex;
    align-items: center;
}

.saved-draft-page .collection-button {
    color: #246445 !important;
}

@media (width < 767px) {
    .saved-draft-page .account-setting,
    .saved-draft-page .account-setting span {
        font-size: 16px;
        text-align: left;
    }

    .saved-draft-page .collection-button {
        font-size: 13px !important;
        padding: 5px 16px !important;
    }

    .saved-draft-page table.dataTable tbody td {
        padding: 20px 5px;
    }

    .saved-draft-page .searchicon ~ input {
        padding: 6px 35px;
    }

    .saved-draft-page .btn.btn.dropdown-toggle {
        font-size: 16px !important;
    }

    .saved-draft-page .show-entires {
        font-size: 14px;
    }

    .saved-draft-page .show-entires-select {
        max-width: 80px;
        padding: 4px 13px !important;
    }
}

.container {
    max-width: 1384px !important;
    padding: 0 12px;
    margin: 0 auto;
}

ul {
    margin: 0;
    padding: 0;
}

.f-v-center {
    display: flex;
    align-items: center;
}

.f-h-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

input:-webkit-autofill { /* Changes background to white */
    box-shadow: 0 0 0px 1000px white inset; /* Fallback */
    -webkit-text-fill-color: #000; /* Optional: Changes text color */
}

header {
    position: fixed;
    width: 100%;
    top: 0 !important;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    padding: 15px 0 !important;
    box-shadow: -12px 10px 16px 0px rgba(171, 171, 171, 0.09);
}

    header .logo {
        max-width: 450px !important;
        width: 100%;
        margin: 0;
    }

    header .header-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .logo-mid {
        display: flex;
        align-items: center;
    }

    header .expolore-btn {
        margin: 0 12px;
        display: flex;
        align-items: center;
    }

        header .expolore-btn ul {
            display: flex;
        }

            header .expolore-btn ul li {
                margin: 0 5px;
                font-size: 16px;
                font-weight: 700;
                text-transform: uppercase;
            }

                header .expolore-btn ul li a {
                    padding: 8px 15px;
                    border-radius: 25px;
                    transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
                }

                    header .expolore-btn ul li a:hover, header .expolore-btn ul li a.active {
                        background: #246445;
                        color: #fff;
                        font-weight: 800;
                    }

    header .close-avd-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 27px;
        height: 27px;
        padding: 8px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        header .close-avd-btn span {
            font-size: 21px;
        }

        header .close-avd-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.15); /* Inset shadow for watermark effect */
            opacity: 0.5; /* Adjust for watermark visibility */
            pointer-events: none;
        }

    header .nav-middle-part {
        display: flex;
    }

        header .nav-middle-part .search-wrap {
            padding: 8px 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
            line-height: 18px;
            width: 63%;
            flex-grow: 1;
            border: 1px solid #676767;
            border-right: none;
            border-radius: 25px 0 0 25px;
        }

            header .nav-middle-part .search-wrap label {
                margin-right: 8px;
                display: flex;
                align-items: center;
            }

            header .nav-middle-part .search-wrap input {
                outline: none;
                border: none;
                font-size: inherit;
                color: inherit;
                font-weight: inherit;
                background: transparent;
                width: 100%;
            }

            header .nav-middle-part .search-wrap .close-input {
                cursor: pointer;
                transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
            }

                header .nav-middle-part .search-wrap .close-input:hover {
                    scale: 0.9;
                }

            header .nav-middle-part .search-wrap span {
                font-size: 22px;
            }

    header .advance-search {
        width: 480px;
        display: flex;
        overflow: hidden;
        font-size: 16px;
        font-weight: 600;
    }

        header .advance-search form {
            width: 100%;
        }

    header .advanceSearch-btn {
        padding: 0;
        padding-right: 10px;
        border: none;
        background: none;
        cursor: pointer;
        font-size: inherit;
        white-space: nowrap;
        width: 37%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        transition: width 0.5s ease;
        border: 1px solid #676767 !important;
        color: #246445;
        font-weight: 700;
    }

    header #containerAdvanceSearch {
        display: none;
        top: 79px;
        max-width: 978px;
        width: 100%;
        margin: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 24px 23px;
    }

        header #containerAdvanceSearch select,
        header #containerAdvanceSearch input {
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #9b9b9b;
            border-radius: 25px !important;
            padding: 7px 12px;
            height: auto !important;
            border: 1px solid #676767;
        }

        header #containerAdvanceSearch .avd-rang-input {
            display: flex;
            justify-content: space-between;
        }

            header #containerAdvanceSearch .avd-rang-input input {
                max-width: 100px;
                color: #676767 !important;
                font-size: 16px !important;
                text-align: center;
                line-height: normal;
                padding: 8px 12px;
                outline: none;
            }

            header #containerAdvanceSearch .avd-rang-input .input-year {
                position: relative;
            }

                header #containerAdvanceSearch .avd-rang-input .input-year::before {
                    position: absolute;
                    top: -6px;
                    left: 16px;
                    font-size: 9px;
                    color: #9b9b9b;
                    background-color: #fff;
                    padding: 0 2px;
                }

                header #containerAdvanceSearch .avd-rang-input .input-year.from::before {
                    content: "From";
                }

                header #containerAdvanceSearch .avd-rang-input .input-year.to::before {
                    content: "To";
                }

        header #containerAdvanceSearch .form-select {
            background-position: 95% 50% !important;
        }

    header .avd-search {
        margin-bottom: 24px;
    }

    header .adlebel {
        font-size: 16px;
        font-weight: 700;
    }

    header .avd-rang-label {
        position: relative;
    }

    header .avdRangSlider,
    header .ui-widget.ui-widget-content {
        right: 0 !important;
        width: 75% !important;
        top: 50% !important;
        margin: 0 !important;
    }

    header .advance-range-wrap {
        position: relative;
    }

        header .advance-range-wrap::before {
            content: "";
            width: 1px;
            height: 100%;
            position: absolute;
            left: -10px;
            top: 0;
            background: #9b9b9b;
        }

        header .advance-range-wrap::after {
            content: "Or";
            position: absolute;
            left: -18px;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: #000;
            font-size: 12px;
        }

input::-moz-placeholder {
    color: #676767 !important;
}

input::placeholder {
    color: #676767 !important;
}

.font-setter {
    margin: 0 12px;
}

    .font-setter ul {
        align-items: flex-end;
    }

        .font-setter ul li {
            margin: 0 8px;
            display: flex;
            align-items: flex-end;
        }

            .font-setter ul li:nth-child(1) {
                font-size: 18px;
            }

            .font-setter ul li:nth-child(2) {
                font-size: 20px;
            }

            .font-setter ul li:nth-child(3) {
                font-size: 22px;
            }

            .font-setter ul li a {
                color: #676767;
                font-weight: 800;
                font-size: inherit;
                text-decoration: underline;
                line-height: 1.5;
                transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.3s;
                white-space: nowrap;
            }

                .font-setter ul li a:hover {
                    color: #246445;
                }

.mode-and-notifiation li {
    margin: 0 9px;
}

    .mode-and-notifiation li:first-child {
        margin-left: 0;
    }

    .mode-and-notifiation li a:hover img, .mode-and-notifiation li a.active img {
        filter: brightness(0);
    }

.change-language {
    margin: 0 10px;
}

    .change-language #dropdownMenuButton1 {
        font-size: 22px;
        font-weight: 700;
    }

.user-photo-and-login {
    font-size: 16.88px;
    font-weight: 700;
}

    .user-photo-and-login ul li {
        margin: 0 12px;
        font-size: 16px;
        font-weight: 700;
        color: #246445;
    }

        .user-photo-and-login ul li a {
            white-space: nowrap;
        }

            .user-photo-and-login ul li a.user {
                width: 30px;
                height: 30px;
                color: #fff;
                background-color: #246445;
                border-radius: 50%;
                display: block;
                display: flex;
                align-items: center;
                justify-content: center;
            }

.heandler-icons .material-symbols-outlined {
    font-size: 30px;
    cursor: pointer;
}

.userPhoto {
    display: none;
}

.login-register:hover a {
    color: #246445;
}

nav.megahmenudrop {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    transition: 0.3s !important;
    max-width: 1380px;
    width: 100%;
    margin: 0 auto !important;
}

    nav.megahmenudrop.active {
        top: 78px;
    }

.backdrop-shaddow {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
}

    .backdrop-shaddow.show {
        display: block;
    }

body.menuActive {
    overflow: hidden !important;
}

.mode-and-notifiation img {
    width: 25px !important;
}

.or {
    display: none;
}

.user-login #dropdownMenuButton1 {
    font-size: 16px;
    font-weight: 700;
}

.user-login .mode-and-notifiation li,
.user-login .font-setter ul li {
    margin: 0 18px;
}

    .user-login .mode-and-notifiation li:first-child {
        margin-left: 0;
    }

.user-login .login-register {
    display: none !important;
}

.user-login .userPhoto {
    display: block !important;
}

.only-mobile {
    display: none;
}

.upload-form-header .saved-draft-link a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    color: #246445;
}

@media (width > 1200px) {
    .close-input {
        visibility: hidden;
    }

    .advance-search.search-active .advanceSearch-btn {
        width: 0;
        opacity: 0;
        border: 1px solid #246445;
    }

    .advance-search.search-active .close-input {
        visibility: visible;
        z-index: 2;
    }

    .advance-search.search-active .search-wrap {
        border: 1px solid #676767 !important;
        border-radius: 25px;
    }

    .advanceSearch-btn.active {
        background: #f1e6e8;
        border: 1px solid #246445 !important;
    }
}

@media (max-width: 1370px) {
    header .advance-search {
        font-size: 14px !important;
    }

    header .nav-middle-part .search-wrap input {
        width: 100%;
    }

    nav.megahmenudrop {
        max-width: 1180px;
    }

    header .expolore-btn ul li,
    .user-photo-and-login ul li {
        font-size: 14px;
    }

    .change-language #dropdownMenuButton1 {
        font-size: 18px;
    }

    .material-symbols-outlined {
        font-size: 22px;
    }

    .mode-and-notifiation img {
        width: 30px !important;
    }
}

@media (max-width: 1200px) {
    header .nav-middle-part {
        margin-top: 60px;
    }

    .close-input {
        position: absolute;
        top: 15px;
        right: 15px;
    }

        .close-input span {
            font-size: 32px !important;
        }

    .backdrop-shaddow.show {
        display: none !important;
    }

    nav.megahmenudrop {
        max-width: 400px;
    }

        nav.megahmenudrop .row-cols-5 > * {
            flex: 0 0 100%;
            width: 100%;
        }

    nav.megahmenudrop {
        top: 0px !important;
        right: -100% !important;
        left: initial;
        height: 100vh;
    }

        nav.megahmenudrop.active {
            right: 0 !important;
            left: initial;
        }

    .only-mobile {
        display: block;
    }

    header .nav-middle-part .search-wrap {
        padding: 15px 15px !important;
        border-radius: 25px !important;
    }

    .mobile-header .close-icon .material-symbols-outlined {
        font-size: 30px;
        cursor: pointer;
    }

    .mobile-header .close-icon {
        margin: 15px 0;
    }

    .mobile-header .wrap-for-mobile {
        align-items: center;
        justify-content: space-between;
    }

        .mobile-header .wrap-for-mobile ul,
        .mobile-header .wrap-for-mobile .change-language {
            margin-bottom: 15px;
            flex: 1;
        }

    .mobile-header .mode-and-notifiation img {
        width: 25px;
    }

    .mobile-header .font-setter {
        margin-left: 0;
    }

    .mobile-header .top-nav-mob {
        display: flex;
        margin-bottom: 24px;
    }

    .mobile-header .expolore-btn {
        margin-left: 0;
    }

    .mobile-header .top-nav-mob {
        display: flex;
        margin-bottom: 30px;
        margin-left: 0;
    }

    .mobile-header .font-setter ul li:first-child {
        margin-left: 0;
    }

    .mobile-header .expolore-btn ul li {
        margin: 0 3px;
    }

    .mobile-header .change-language {
        margin-left: 0;
    }

    .mobile-header .expolore-btn ul li:first-child {
        margin-left: 0;
    }

    .mobile-header .wrap-for-mobile {
        margin-bottom: 15px;
    }

    .mobile-header .expolore-btn ul li a {
        padding: 8px 12px;
    }

    .sub-menu-parent {
        margin-bottom: 15px;
    }

        .sub-menu-parent ul.meghamenuli {
            display: none;
            transition: none;
            padding-left: 20px;
        }

            .sub-menu-parent ul.meghamenuli li {
                margin-bottom: 15px;
            }

                .sub-menu-parent ul.meghamenuli li a {
                    font-size: 16px;
                    font-weight: 600;
                }

        .sub-menu-parent:has(ul) h5 {
            position: relative;
            font-size: 18px;
            font-weight: 700;
        }

            .sub-menu-parent:has(ul) h5::after {
                content: "";
                width: 30px;
                height: 30px;
                background-image: url(../images/icons/arrow_drop_down.svg);
                background-size: contain;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                transition: 0.5s;
            }

        .sub-menu-parent.active h5 {
            color: #246445;
            text-decoration: underline;
        }

            .sub-menu-parent.active h5::after {
                transform: translateY(-50%) rotate(-180deg);
                filter: brightness(0);
            }

    .font-setter ul li {
        margin-right: 18px;
    }

    .user-login .font-setter ul li {
        margin-right: 15px;
    }

    .heandler-icons .material-symbols-outlined {
        font-size: 39px;
    }

    .search-icon.only-mobile {
        display: flex;
        align-items: center;
    }

        .search-icon.only-mobile span {
            font-size: 30px;
            margin-right: 15px;
        }

    .mobile-advanceSearch {
        position: fixed;
        height: 100%;
        width: 100%;
        left: 0;
        right: 0;
        top: -100%;
        background: #fff;
        z-index: 9;
        transition: 0.5s;
        padding: 0 15px;
        padding-top: 25px;
    }

        .mobile-advanceSearch .advanceSearch {
            margin: 0 auto;
            max-width: 100%;
        }

            .mobile-advanceSearch .advanceSearch > form {
                flex-direction: column;
            }

        .mobile-advanceSearch .advanceSearch-btn {
            height: auto;
            border-radius: 25px;
            padding: 12px 10px !important;
            font-size: 18px;
            background: #f1e6e8;
        }

        .mobile-advanceSearch .asvanceSearch {
            padding-top: 100px;
        }

        .mobile-advanceSearch #containerAdvanceSearch {
            display: none !important;
            left: 0;
            right: 0;
            margin: 0px auto;
            max-width: 100%;
            padding: 0 15px;
            transition: height 0.3s;
            overflow-y: auto;
            height: 85%;
            transform: none;
        }

        .mobile-advanceSearch .buttonadvancesearch {
            margin-bottom: 25px;
        }

        .mobile-advanceSearch .search-wrap {
            margin: 25px 0;
            border-right: none !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.2588235294);
            padding-bottom: 15px !important;
        }

        .mobile-advanceSearch .advance-search {
            max-height: initial !important;
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
            border: none;
        }

            .mobile-advanceSearch .advance-search form {
                flex-wrap: wrap;
                width: 100%;
            }

            .mobile-advanceSearch .advance-search .nav-middle-part {
                max-width: 600px;
                width: 100%;
                margin: auto;
            }

            .mobile-advanceSearch .advance-search .search-wrap,
            .mobile-advanceSearch .advance-search .advanceSearch-btn {
                max-width: 100%;
                flex: 0 0 100%;
                width: 100%;
                text-align: left;
            }

        .mobile-advanceSearch .asvanceSearch {
            box-shadow: none;
        }

        .mobile-advanceSearch .inputGroup {
            margin-bottom: 14px;
        }

    header .nav-middle-part .search-wrap {
        padding: 13px 15px !important;
        border: 1px solid #676767 !important;
    }

    .mobile-advanceSearch.advance-search-open {
        top: 0;
    }

    .AdSearch {
        margin: 30px 0 0;
        margin-top: 70px;
    }

    .mobile-advanceSearch.active #containerAdvanceSearch {
        display: block !important;
        top: 0;
        height: 100%;
    }

    .mobile-advanceSearch.active .advanceSearch-btn {
        font-weight: 700;
        color: #246445;
        text-decoration: underline;
    }
}

@media (max-width: 767px) {
    .mobile-advanceSearch .buttonadvancesearch {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-advanceSearch .nav-middle-part .search-wrap input {
        width: 100%;
        padding: 8px 0;
    }

    header {
        padding: 10px 0 !important;
    }

        header .logo {
            max-width: 140px !important;
        }

        header .avd-rang-label {
            position: relative;
        }

    .border-div {
        display: none;
    }

    .asvanceSearch .resetbutton {
        margin-left: 0 !important;
    }

    .or {
        font-size: 14px;
        font-weight: 700;
        line-height: 16.44px;
        text-align: center;
    }

    .select-range-year .range-slider {
        position: relative;
    }

        .select-range-year .range-slider input {
            position: absolute;
            top: 0;
            width: 50%;
        }

    #slider-range-home,
    #slider-range-home {
        width: 85% !important;
    }

    .select-fonts {
        margin-bottom: 16px;
    }

    .year-wrrap {
        display: flex;
        position: relative;
    }

    .fsfs,
    .fs {
        top: -10px !important;
    }

    .year-wrrap div {
        padding: 0 !important;
    }

        .year-wrrap div:first-child {
            margin-right: 15px !important;
        }

    .form-select,
    .year-wrrap input {
        padding: 10px 12px !important;
        height: auto !important;
    }

    .asvanceSearch .form-select {
        background-position: 96% 16px !important;
    }

    .or {
        display: block;
    }

    .select-fonts {
        margin-bottom: 15px !important;
    }

    header .nav-middle-part .search-wrap {
        padding: 8px 15px !important;
    }

    .close-input span {
        font-size: 26px !important;
    }

    .advance-range-wrap {
        padding-top: 30px;
        margin-top: 30px;
    }

        .advance-range-wrap .avd-rang-label {
            margin-bottom: 20px !important;
        }

    header .advance-range-wrap::before {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        left: 50%;
        top: 0;
        background: #9b9b9b;
        transform: translateX(-50%);
    }

    header .advance-range-wrap::after {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateY(-50%);
        font-size: 18px;
        padding: 0 5px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 5px 0 !important;
    }

    .search-icon.only-mobile span {
        font-size: 24px;
    }

    .select-plan-event {
        padding-top: 60px;
    }

    .heandler-icons .material-symbols-outlined {
        font-size: 30px;
    }

    .mobile-header .expolore-btn ul li {
        margin: 0 0px;
    }

        .mobile-header .expolore-btn ul li a {
            padding: 8px 14px;
        }

    .font-setter ul li {
        margin-right: 10px;
    }

    header .logo {
        max-width: 140px !important;
        margin: 0;
    }

    nav.megahmenudrop {
        height: 100vh;
    }

    .counterdiv .counter {
        font-size: 28px !important;
    }

    header .nav-middle-part .search-wrap {
        padding: 2px 15px !important;
    }

    .mobile-advanceSearch .advanceSearch-btn {
        padding: 9px 9px !important;
        font-size: 14px;
        line-height: normal;
    }
}

@media (max-width: 350px) {
    header .expolore-btn ul li,
    .user-photo-and-login ul li {
        font-size: 12px;
    }

    .change-language #dropdownMenuButton1 {
        font-size: 15px;
    }

    .sub-menu-parent:has(ul) h5,
    .sub-menu-parent ul.meghamenuli li a {
        font-size: 14px;
    }

    .sub-menu-parent ul.meghamenuli li {
        margin-bottom: 10px;
    }

    .mobile-header .expolore-btn ul li a {
        padding: 8px 11px;
    }
}

.form-control .rageinput {
    height: 10px !important;
}

.table img {
    max-width: 40px;
}

/* Upload Container */
.upload-container {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
}

/* Upload Area */
.upload-area {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed #cbd5e1;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

    .upload-area:hover {
        background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        border-color: #94a3b8;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .upload-area.drag-over {
        background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
        border-color: #0ea5e9;
        border-style: solid;
        animation: pulse 2s infinite;
    }

/* Upload Content */
.upload-content {
    padding: 3rem 2rem;
}

/* Upload Icon */
.upload-icon {
    color: #64748b;
    transition: all 0.3s ease;
}

.upload-area:hover .upload-icon {
    color: #0ea5e9;
    transform: scale(1.1);
}

.upload-area.drag-over .upload-icon {
    color: #0284c7;
    animation: bounce 1s infinite;
}

/* File Input */
#fileUpload {
    display: none;
}

/* Browse Button */
.upload-btn {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
}

    .upload-btn:hover {
        background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px -1px rgba(14, 165, 233, 0.3);
    }

    .upload-btn:active {
        transform: translateY(0);
    }

/* Upload Restrictions */
.upload-restrictions {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.restriction-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

    .restriction-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.restriction-icon {
    color: #10b981;
    font-size: 0.875rem;
}

/* Selected Files Preview */
.selected-files {
    margin-top: 1.5rem;
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #e2e8f0;
    animation: slideIn 0.3s ease;
}

    .file-item:last-child {
        margin-bottom: 0;
    }

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.file-icon {
    color: #0ea5e9;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: 500;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.125rem;
}

.file-remove {
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .file-remove:hover {
        background: #fee2e2;
        transform: scale(1.1);
    }

/* Progress Bar */
.upload-progress {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #3b82f6);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Success State */
.upload-success {
    display: none;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s ease;
}

/* Error State */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    animation: shake 0.5s ease;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.2);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}
/* Scrollbar Styling */
.selected-files::-webkit-scrollbar {
    width: 6px;
}

.selected-files::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.selected-files::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

    .selected-files::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

/* Responsive */
@media (max-width: 768px) {
    .upload-content {
        padding: 2rem 1rem;
    }

    .upload-btn {
        padding: 0.625rem 1.5rem;
    }

    .restriction-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .file-item {
        padding: 0.625rem;
    }
}
/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .upload-area {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: #475569;
    }

        .upload-area:hover {
            background: linear-gradient(135deg, #334155 0%, #475569 100%);
            border-color: #64748b;
        }

        .upload-area.drag-over {
            background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
            border-color: #0ea5e9;
        }

    .upload-icon {
        color: #94a3b8;
    }

    .file-item {
        background: #1e293b;
        border-color: #334155;
    }

    .file-name {
        color: #f1f5f9;
    }

    .upload-progress {
        background: #475569;
    }

    .selected-files::-webkit-scrollbar-track {
        background: #334155;
    }

    .selected-files::-webkit-scrollbar-thumb {
        background: #64748b;
    }
}

.file-upload-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    border-color: #dee2e6 !important;
}

    .file-upload-container:hover,
    .file-upload-container.dragover {
        background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
        border-color: #246445 !important;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
    }

    .file-upload-container.dragover {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-color: #246445 !important;
    }

.upload-icon {
    transition: transform 0.3s ease;
}

.file-upload-container:hover .upload-icon {
    transform: scale(1.1);
}

.file-list {
    max-height: 200px;
    overflow-y: auto;
}

.file-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

    .file-item:hover {
        background: #f8f9fa;
        border-color: #246445;
    }

.file-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.file-icon {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #495057;
}

.file-details {
    flex: 1;
    text-align: left;
}

.file-name {
    font-weight: 500;
    margin-bottom: 2px;
    word-break: break-all;
}

.file-size {
    font-size: 0.8rem;
    color: #6c757d;
}

.file-remove {
    color: #dc3545;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

    .file-remove:hover {
        background-color: rgba(220, 53, 69, 0.1);
    }

.progress-bar {
    transition: width 0.3s ease;
}

.border-dashed {
    border-style: dashed !important;
}

/* Custom scrollbar for file list */
.file-list::-webkit-scrollbar {
    width: 6px;
}

.file-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.file-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

    .file-list::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

@media (max-width: 425px) {
    header .header-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        align-items: baseline;
        gap: 9px;
    }

    .progress-sec {
        position: relative;
        margin-bottom: 30px;
        margin-top: 55px;
    }

    .logo a {
        display: flex;
        gap: 30px;
        max-width: 185px;
        width: 100%;
        margin-right: 10px;
        border: none;
        padding-right: 10px;
    }

    header .logo {
        max-width: 170px !important;
        margin: 0;
    }
}

* {
    box-sizing: border-box;
}

body {
    background: #f4f7f6;
    font-family: "Raleway", sans-serif !important;
}

.logo a {
    display: flex;
    gap: 30px;
    max-width: 185px;
    width: 100%;
    margin-right: 10px;
    border-right: 1px solid rgb(188, 188, 188);
    padding-right: 10px;
}

.upload-wrapper {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-top: 130px;
}

h2 {
    color: #246445;
}

.subtitle {
    color: #777;
    margin-bottom: 25px;
}

.upload-box {
    border: 2px dashed #bcd2ca;
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    background: #f6faf8;
    transition: 0.3s;
}

    .upload-box.dragover {
        background: #e7f2ee;
        border-color: #246445;
    }

.cloud {
    font-size: 52px;
    color: #246445;
}

.upload-box button {
    background: #246445;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
}

    .upload-box button:hover {
        background: #1c523a;
    }

.info {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

.file-list {
    margin-top: 25px;
}

.file-item {
    background: #f6faf8;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.file-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    /*margin-bottom: 8px;*/
}

.progress-bar {
    height: 8px;
    background: #dbe7e2;
    border-radius: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background: #246445;
    transition: width 0.4s;
}

.status {
    font-size: 12px;
    font-weight: 600;
}

    .status.done {
        color: #246445;
    }

.upload-btn {
    margin-top: 25px;
    width: 100%;
    background: #246445;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

    .upload-btn:hover {
        background: #1c523a;
    }

    .upload-btn.completed {
        background: #e7f2ee;
        color: #246445;
        border: 2px solid #246445;
        cursor: default;
    }

.file-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.btn .btn-primary {
    font-family: "Raleway", sans-serif !important;
}

/* ===== 425px ===== */
@media (max-width: 425px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .logo {
        flex-direction: column;
        gap: 8px;
    }

    .andaman-logo img {
        max-width: 60px;
    }

    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 15px;
        line-height: 1.2;
    }

    .login-options {
        display: flex;
        gap: 8px;
    }

    .custm-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .header {
        flex-direction: column;
        padding-block: 10px;
        gap: 20px;
    }

        .header .logo {
            width: 100%;
            justify-content: space-around;
            align-items: center;
        }

            .header .logo a {
                border: none !important;
            }
}
/* ===== 375px ===== */
@media (max-width: 375px) {
    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 14px;
    }

    .custm-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}
/* ===== 320px ===== */
@media (max-width: 320px) {
    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 13px;
    }

    .login-options {
        flex-direction: column;
        width: 100%;
    }

    .custm-btn {
        width: 100%;
        text-align: center;
    }
}

.advanceSearch-btn.searchButton i {
    margin-left: 10px;
    display: flex;
    align-items: center;
    color: #246445;
}

@media (max-width: 1024px) {
    .welcome-abs {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 750px;
        width: 100%;
        z-index: 9;
    }
}
/* ===== 425px ===== */
@media (max-width: 425px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .logo {
        flex-direction: column;
        gap: 8px;
    }

    .andaman-logo img {
        max-width: 60px;
    }

    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 15px;
        line-height: 1.2;
    }

    .login-options {
        display: flex;
        gap: 8px;
    }

    .custm-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .header {
        flex-direction: column;
        padding-block: 10px;
        gap: 20px;
    }

        .header .logo {
            width: 100%;
            justify-content: space-around;
            align-items: center;
        }

            .header .logo a {
                border: none !important;
            }
}
/* ===== 375px ===== */
@media (max-width: 375px) {
    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 14px;
    }

    .custm-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}
/* ===== 320px ===== */
@media (max-width: 320px) {
    .andaman-logo h3 {
        font-size: 10px;
    }

    .andaman-logo h2 {
        font-size: 13px;
    }

    .login-options {
        flex-direction: column;
        width: 100%;
    }

    .custm-btn {
        width: 100%;
        text-align: center;
    }
}
/*# sourceMappingURL=main.css.map */
