body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #202020;
}

h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

h3 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h4 {
    font-size: 24px;
    color: #0f81ac;
    width: 65%;
    font-weight: 700;
    margin-bottom: 18px;
}

h5 {
    font-size: 24px;
    color: #0f81ac;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 18px;
}

p {
    margin-bottom: 12px;
}

.move-bottom {
    order: 0;
}

.header {
    background: #fff;
    height: 96px;
}

    .header .navbar {
        padding: 0 !important;
    }

.top-nav li a {
    background: #2f2f2f;
    color: #f1f1f1;
    margin-right: 10px;
    border-radius: 10px;
    padding: 7px 20px !important;
    font-size: 14px;
    font-weight: 500;
}

    .top-nav li a:hover {
        background: #0f81ac;
        color: #fff;
    }

.home-banner {
    background: url(../images/home-banner.png) top center no-repeat;
    background-size: cover;
    min-height: 480px;
    max-height: 75vh;
}

.content-banner {
    background: rgba(0, 0, 0, 0.7);
    min-height: 480px;
    max-height: 75vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.banner-left {
    width: 85%;
    margin-left: auto;
}

.banner-form {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    color: #000;
    text-align: center;
    width: 360px;
    margin: 0 auto;
    border-radius: 20px;
}

.con-title {
    font-size: 21px;
    font-weight: 900;
    margin: 0;
    padding: 0;
    letter-spacing: 1;
}

.inp-con {
    width: 100%;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    height: 40px;
    margin: 15px 0 0 0;
}

.conference-bt {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 6px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    height: 40px;
    margin: 20px 0 0 0;
    border: none;
}

    .conference-bt:hover {
        background: #0f81ac;
        border: none;
    }

.rainbow-text {
    position: relative;
    color: #000;
    background: #fff;
    mix-blend-mode: multiply;
    overflow: hidden;
    font-size: 17px;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 2px 4px 6px;
    margin: -2px -4px -6px;
}

    .rainbow-text::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: -100%;
        background: white repeating-linear-gradient( 90deg, #14ffe9 0%, #ffc800 16.66666%, #ff00e0 33.33333%, #14ffe9 50% );
        mix-blend-mode: screen;
        pointer-events: none;
        animation: move 1s linear infinite;
    }

@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

@supports not (mix-blend-mode: multiply) {
    .rainbow-text {
        -webkit-text-fill-color: transparent;
        background-clip: text !important;
        background: white repeating-linear-gradient(90deg, #14ffe9, #ffc800, #ff00e0, #14ffe9);
        text-shadow: none;
    }

        .rainbow-text::before {
            content: none;
        }
}

.sec-white {
    background: #fff;
    padding: 45px 0;
}

.vm-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.vision,
.mission {
    width: 48.5%;
    border: #cdcdcd 1px solid;
    border-radius: 10px;
    padding: 20px;
    margin: 8px 0 0 0;
}

.vision-title,
.mission-title {
    display: flex;
    align-items: end;
    gap: 15px;
}

.vi-text,
.mi-text {
    color: #8ec500;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: #cdcdcd 2px solid;
    width: 100%;
}

.vision-content,
.mission-content {
    margin: 15px 0 0 0;
}

    .vision-content p,
    .mission-content p {
        margin: 0;
    }

.align-bottom {
    align-items: end;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.sec-grey {
    background: #d9d9d9;
    padding: 45px 0;
}

.objective,
.values {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
}

    .objective h4,
    .values h4 {
        font-size: 18px;
        font-weight: 700;
        color: #1cb0e6;
        text-align: center;
        width: 100%;
        padding: 15px 0;
        margin: 0;
    }

    .objective ul,
    .values ul {
        margin: 0;
        padding: 0;
    }

        .objective ul li,
        .values ul li {
            margin: 0;
            padding: 8px 0;
            list-style: none;
            text-align: center;
            border-top: #d9d9d9 1px solid;
        }

        .objective ul li {
            padding: 8px 0;
        }

        .values ul li {
            padding: 12px 0;
        }

            .objective ul li:last-child,
            .values ul li:last-child {
                padding-bottom: 0;
            }

.team-bg {
    background: linear-gradient(to bottom, #f5f5f5, #fff);
    border-radius: 10px;
    padding: 10px;
}

.team-title {
    font-size: 17px;
    color: #638608;
    text-align: center;
    font-weight: 800;
    margin: 0 0 9px 0;
}

.team-member {
    background: #ececec;
    padding: 6px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    height: 100%;
}

    .team-member span {
        font-weight: 400;
    }

.team-gap {
    margin-top: 12px;
}

.foundation-date {
    text-align: center;
    margin-top: -9px;
}

.footer {
    background: #000;
    font-size: 14px;
    color: #d9d9d9;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
}

.sub-banner {
    background: url(../images/home-banner.png) center center no-repeat;
    background-size: cover;
    height: 150px;
}

.content-sub-banner {
    background: rgba(0, 0, 0, 0.7);
    height: 150px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.sub-banner h1 {
    font-size: 30px;
    font-weight: 600;
}

.sub-banner h2 {
    font-size: 21px;
    font-weight: 600;
}

.blue-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0f81ac;
    text-transform: uppercase;
    margin: 0;
}

.reg-lbl {
    color: #858585;
    font-size: 13px;
}

.reg-input {
    width: 100%;
    border: #c1c1c1 1px solid;
    border-radius: 6px;
    padding: 10px;
    height: 40px;
}

.confirm-price {
    font-size: 22px;
    font-weight: 500;
    color: #8ec500;
    text-align: right;
}

    .confirm-price span {
        font-weight: 900;
        font-size: 24px;
    }

.proceed-bt {
    background: #d37400;
    color: #fff;
    width: fit-content;
    padding: 10px 25px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    margin: 0;
    border: none;
    float: right;
}

    .proceed-bt:hover {
        background: #000;
        border: none;
    }

.gallery-subtitle {
    font-size: 18px;
    width: 40%;
    margin: 0 auto;
    line-height: 25px;
}

.login-link {
    padding: 10px 0 0 0;
    margin: 0;
}

    .login-link a {
        color: #004aff;
        font-weight: 600;
        text-decoration: none;
    }

        .login-link a:hover {
            color: #000;
            text-decoration: none;
        }

@media (max-width: 1199px) {
    h1 {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .team-member {
        margin-bottom: 10px;
        height: auto;
    }

    .team-gap {
        margin-top: 0;
    }

    h1,
    h2 {
        text-align: center;
    }

    .gallery-subtitle {
        width: 70%;
    }

    .header .navbar {
        background: #fff;
    }
}

@media (max-width: 767px) {
    .home-banner,
    .content-banner {
        min-height: 80vh;
        max-height: 80vh;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 17px;
    }

    h4 {
        width: 100%;
    }

    .banner-left {
        width: 100%;
        margin-left: auto;
    }

    .top-nav li a {
        margin: 3px 0 6px 0;
    }

    .move-bottom {
        order: 2;
    }
}

@media (max-width: 576px) {
    .banner-form {
        width: 100%;
    }

    .logo {
        width: 220px;
    }

    .vision-title,
    .mission-title {
        display: block;
    }

    .gallery-subtitle {
        width: 90%;
    }
}

/** Light Box **/
.lightboxpreview {
    transition: all 0.3s linear;
    padding-top: 60%;
    cursor: pointer;
    background-size: cover;
}

.lightbox-content {
    max-height: 75svh;
    height: 75svh;
}

.lightbox-close {
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: -30px;
    top: -30px;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.modalscale {
    transform: scale(0);
    opacity: 0;
}

.lightbox-container,
.lightbox-btn,
.lightbox-image-wrapper,
.lightbox-enabled {
    transition: all 0.4s ease-in-out;
}

.lightbox_img_wrap {
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}

.lightbox-enabled:hover {
    transform: scale(1.1);
}

.lightbox-enabled {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    cursor: pointer;
}

.lightbox-container {
    width: 100svw;
    height: 100svh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}

    .lightbox-container.active {
        opacity: 1;
        pointer-events: all;
    }

.lightbox-image-wrapper {
    display: flex;
    transform: scale(0);
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-container.active .lightbox-image-wrapper {
    transform: scale(1);
}

.lightbox-btn,
#close {
    color: white;
    z-index: 9999999;
    cursor: pointer;
    position: absolute;
    font-size: 50px;
}

.left {
    left: 50px;
}

.right {
    right: 50px;
}

#close {
    top: 50px;
    right: 50px;
}

.lightbox-image {
    width: 100%;
    max-height: 95vh;
    object-fit: cover;
}

@keyframes slideleft {
    33% {
        transform: translateX(-300px);
        opacity: 0;
    }

    66% {
        transform: translateX(300px);
        opacity: 0;
    }
}

.slideleft {
    animation-name: slideleft;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

@keyframes slideright {
    33% {
        transform: translateX(300px);
        opacity: 0;
    }

    66% {
        transform: translateX(-300px);
        opacity: 0;
    }
}

.slideright {
    animation-name: slideright;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}

/** Admin **/

.admin-bg {
    background: url(../images/admin-bg.png) top center no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.admin-overlay {
    background: rgba(0, 0, 0, 0.8);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-block {
    background: rgba(255, 255, 255, 0.6);
    width: 420px;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 15px 0;
    text-transform: uppercase;
    color: #000;
}

.login-inp {
    width: 100%;
    padding: 6px 15px;
    border: none;
    border-radius: 6px;
    height: 42px;
    margin: 0;
}

.login-submit {
    background: #000;
    color: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    height: 44px;
    margin: 20px 0 0 0;
    border: none;
}

    .login-submit:hover {
        background: #0f81ac;
        border: none;
    }

.org-icon a {
    color: #ff9b00;
}

.blue-icon a {
    color: #7300ff;
}

.green-icon a {
    color: #379a00;
}

.red-icon a {
    color: #ff0000;
}

.org-icon a,
.blue-icon a,
.red-icon a,
.green-icon a {
    font-size: 25px;
    text-decoration: none;
}

    .org-icon a:hover,
    .blue-icon a:hover,
    .red-icon a:hover,
    .green-icon a:hover {
        opacity: 0.5;
        color: #000;
        text-decoration: none;
    }

@media (max-width: 576px) {
    .admin-block {
        width: 90%;
    }
}

.change-pw {
    border-radius: 20px;
    padding: 30px;
    border: #7b7b7b 1px solid;
}

/** Responsive Table **/
.rwd-table {
    margin: auto;
    min-width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

    .rwd-table tr:first-child {
        border-top: none;
        background: #428bca;
        color: #fff;
    }

    .rwd-table tr {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        background-color: #f5f9fc;
    }

        .rwd-table tr:nth-child(odd):not(:first-child) {
            background-color: #ebf3f9;
        }

    .rwd-table th {
        display: none;
    }

    .rwd-table td {
        display: block;
    }

        .rwd-table td:first-child {
            margin-top: 0.5em;
        }

        .rwd-table td:last-child {
            margin-bottom: 0.5em;
        }

        .rwd-table td:before {
            content: attr(data-th) ": ";
            font-weight: bold;
            width: 120px;
            display: inline-block;
            color: #000;
        }

    .rwd-table th,
    .rwd-table td {
        text-align: left;
    }

.rwd-table {
    color: #333;
    border-radius: 0.4em;
    overflow: hidden;
}

    .rwd-table tr {
        border-color: #bfbfbf;
    }

    .rwd-table th,
    .rwd-table td {
        padding: 0.5em 1em;
    }

@media screen and (max-width: 601px) {
    .rwd-table tr:nth-child(2) {
        border-top: none;
    }
}

@media screen and (min-width: 600px) {
    .rwd-table tr:hover:not(:first-child) {
        background-color: #d8e7f3;
    }

    .rwd-table td:before {
        display: none;
    }

    .rwd-table th,
    .rwd-table td {
        display: table-cell;
        padding: 0.25em 0.5em;
    }

        .rwd-table th:first-child,
        .rwd-table td:first-child {
            padding-left: 0;
        }

        .rwd-table th:last-child,
        .rwd-table td:last-child {
            padding-right: 0;
        }

    .rwd-table th,
    .rwd-table td {
        padding: 1em !important;
    }
}

/** OTP Verification **/
.otp-input {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

    .otp-input input {
        width: 40px;
        height: 40px;
        margin: 0 5px;
        text-align: center;
        border: 1px solid #909090;
        border-radius: 4px;
        background-color: #ffffff;
        color: #202020;
    }

        .otp-input input::-webkit-outer-spin-button,
        .otp-input input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .otp-input input[type="number"] {
            -moz-appearance: textfield;
        }

button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px;
}

    button:hover {
        background-color: #45a049;
    }

    button:disabled {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed;
    }

#timer {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ff9800;
    text-align: center;
}

.otp-bt-block {
    text-align: center;
}

.cp-title {
    font-size: 20px;
    color: #0f81ac;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.logo-block {
    width: 180px;
    padding: 15px 15px 12px 15px;
    border-radius: 10px;
    background: #fff;
}

.navbar-collapse {
    margin-top: -32px;
}

.nav-link:focus, .nav-link:hover {
    color: #fff !important;
}

.form-activate {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #ceeb8b;
    padding: 10px;
    border-radius: 10px;
}

    .form-activate input {
        padding: 10px 15px;
        border-radius: 5px;
        border: none;
        width: 220px;
    }

    .form-activate h3 {
        margin: 0;
        padding: 0;
        font-size: 20px;
    }

@media (max-width:767px) {
    .form-activate {
        flex-direction: column;
    }

        .form-activate input, .form-activate button {
            width: 100%;
        }
}
