﻿
/**************modeel*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .modal.show {
        display: flex;
    }

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    z-index: 1001;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 0;
    width: 100%;
    max-width: 450px;
    overflow: hidden; /* Ensures the top-right corner is rounded */
}

/* --- FULL THEME-SPECIFIC CHANGES --- */

.form-container {
    background-color: #fff;
    border-radius: 10px;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    background-color: #fff;
    border: none;
    border-right: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    color: #555;
    text-transform: uppercase;
}

    .tab-btn:last-child {
        border-right: none;
    }

    /* The active state styles - fully color the active tab */
    .tab-btn.active {
        background-color: #ffbf00;
        color: #000; /* Use black text for contrast against yellow */
        border-right-color: transparent;
        position: relative;
        z-index: 1;
    }

        .tab-btn.active:first-child {
            border-top-left-radius: 8px;
        }

.tabs {
    border-top-right-radius: 10px;
}

/* Close button */
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #777; /* Keep 'X' subtle */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.form-content {
    padding: 25px 40px;
    display: none;
    flex-direction: column;
    gap: 15px;
}

    .form-content.active {
        display: flex;
    }

/* Input field and select styling */
input[type="text"],
input[type="tel"],
input[type="email"],
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    select:focus {
        outline: none;
        border-color: #ffbf00; /* Yellow border on focus */
    }

/* Phone input group styling */
.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s;
}

    .phone-input-group:focus-within {
        border-color: #ffbf00;
    }

.country-code {
    padding: 12px 10px;
    background-color: #e9ecef;
    border-right: 1px solid #ccc;
    color: #555;
    font-size: 1rem;
}

.phone-input-group input {
    flex: 1;
    border: none;
    padding: 12px 15px;
}

    .phone-input-group input:focus {
        outline: none;
    }

/* Verify and Send OTP button styling */
.verify-btn {
    background-color: transparent;
    border: none;
    color: #ffbf00; /* Yellow button text */
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s;
}

    .verify-btn:hover {
        color: #d1a000;
    }

/* Captcha group styling */
.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
}

#captcha-text {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffbf00; /* Yellow CAPTCHA text */
    letter-spacing: 5px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: line-through;
}

.refresh-btn {
    background: none;
    border: none;
    cursor: pointer;
}

    .refresh-btn .icon {
        width: 24px;
        height: 24px;
        color: #ffbf00; /* Yellow icon */
        transition: transform 0.3s;
    }

    .refresh-btn:hover .icon {
        transform: rotate(180deg);
    }

#captcha-input {
    width: 100%;
}

/* Checkbox styling */
.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}

    .checkbox-container input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 2px solid #ccc;
        border-radius: 3px;
        cursor: pointer;
        position: relative;
    }

        .checkbox-container input[type="checkbox"]:checked {
            background-color: #ffbf00; /* Yellow background when checked */
            border-color: #ffbf00;
        }

            .checkbox-container input[type="checkbox"]:checked::after {
                content: '✔';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #fff;
                font-size: 12px;
            }

/* Submit button styling */
.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #ffbf00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

    .submit-btn:hover {
        background-color: #d1a000;
    }
/******end model*/
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #0A4E95, #FFB702);
    font-size: 16px;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.login-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.6) !important;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    /*width: 90%;*/
    max-width: 960px;
}

.login-left {
    flex: 1;
    padding: 30px;
    /* background: #f5f5f5;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*border-right: 1px solid #ddd;*/
    /*background: linear-gradient(0deg, rgb(255, 183, 2), rgb(10, 78, 149));*/
}

    .login-left img {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

.login-right {
    flex: 1;
    padding: 30px;
    /*background-color: #f5f5f5;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*background: linear-gradient(0deg, rgb(255, 183, 2), rgb(10, 78, 149));*/
}

.login-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.login-form .form-control {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
}

.btn-login {
    background-color: royalblue !important;
    border: none;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    color: white;
}

.input-icon-container {
    position: relative;
}

    .input-icon-container i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .input-icon-container input {
        padding-left: 35px;
    }

/* Hide mobile logo and banner by default */
.mobile-logo, .mobile-banner {
    display: none;
}

/* Responsive layout for mobile */
@@media (max-width: 768px) {
    .login-card {
        flex-direction: column;
    }

    .login-left {
        display: none; /* Hide left image section on mobile */
    }

    .mobile-logo, .mobile-banner {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }

        .mobile-logo img,
        .mobile-banner img {
            max-width: 100%;
            height: auto;
        }

    .login-right {
        padding: 20px;
    }
}

.input100 {
    font-size: 15px;
    line-height: 1.5;
    color: rgb(102, 102, 102);
    display: block;
    width: 100%;
    height: 50px;
    background: rgb(230, 230, 230);
    border-radius: 25px;
    padding: 0px 30px 0px 68px;
    border-style: none;
}

.wrap-login100 {
    background: linear-gradient(to bottom, #0A4E95, #FFB702);
}

.container-login100 {
    /*width: 100%;
            min-height: 100vh;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    /* background: linear-gradient(to bottom, #0A4E95, #FFB702);*/
}

.g-recaptcha {
    padding-left: 5px;
}

.loginWrapper .login-left img.logo {
    max-height: 95px;
    margin-bottom: 0px;
}

.loginWrapper img#imgbanner {
    width: auto;
    border-radius: 8px;
    max-height: 388px;
}

.loginWrapper a:has(#imgbanner) {
    border: 3px solid #ccc;
    border-radius: 8px;
}

.loginWrapper .login-left img {
    display: block;
    margin: 0px;
}

.loginWrapper.login-card {
    width: 100%;
    padding: 25px 0px;
    max-width: 400px;
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    background: #FFC107 !important;
}

.container-login100:has(.loginWrapper) {
    width: 100%;
}

.loginWrapper .login-title {
    font-weight: bold;
    font-size: 30px;
    color: #57B846;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

    .loginWrapper .login-title small {
        text-transform: uppercase;
        color: #194880;
        font-size: 60%;
        font-weight: 900;
        position: relative;
        top: -3px;
    }

.loginWrapper [type="submit"].btn-login {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-transform: uppercase;
    height: 50px;
    border-radius: 25px;
    background: #57b846 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loginWrapper [type="submit"].btn-login:hover {
        background: #194880 !important;
    }

.g-recaptcha > div {
    margin: auto;
}

.loginWrapper > div {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.loginWrapper .input-icon-container input {
    padding-left: 55px;
}

.loginWrapper .input-icon-container i {
    left: 25px;
    margin-top: 1px;
    color: #666666;
}

@media(max-width:991px) and (min-width:768px) {
    .mobile-banner {
        margin-top: 25px;
    }

        .mobile-banner a {
            border: 3px solid #ccc;
            border-radius: 8px;
        }

            .mobile-banner a img {
                border-radius: 8px;
                display: block;
            }
}

@media (max-width:767px) {
    .mobile-banner a {
        border: 3px solid #ccc;
        border-radius: 8px;
    }

        .mobile-banner a img {
            border-radius: 8px;
            display: block;
        }

    .loginWrapper.login-card {
        padding: 0px;
    }

    .loginWrapper .login-title {
        font-size: 27px;
    }

        .loginWrapper .login-title small {
            margin-top: -5px;
        }

    .loginWrapper .input-icon-container input {
        height: 48px;
    }
}

@media (max-width: 370px) {
    .loginWrapper .login-title {
        font-size: 23px;
    }

    .g-recaptcha {
        padding-left: 0px;
        width: 75vw;
    }

        .g-recaptcha > div {
            transform: scale(.8);
            margin-left: -25px;
        }
}

@media(max-width:575px) {
    .g-recaptcha > div {
        width: 270px !important;
    }

        .g-recaptcha > div iframe {
            width: 100%;
        }
}

/********
    marquee

    ********/

.marquee {
    width: 100%;
    background-color: rgb(255, 193, 7);
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

    .marquee span {
        display: inline-block;
        background-color: black;
        color: white;
        width: 150px;
        text-align: center;
        position: absolute;
        padding: 3px;
        z-index: 100;
        height: 28px;
    }


    .marquee div {
        padding: 3px;
        font-size: 0.9rem;
        padding-left: 100%;
        display: inline-block;
        animation: 20s linear 0s infinite normal none running animate;
        display: inline-flex;
        align-items: center;
        height: 28px;
    }

    .marquee div a {
        color: rgb(41, 43, 44);
        text-decoration: none;
        transition: 0.5s;
        display:inline-flex; align-items:center;
    }
@keyframes animate {
    100% {
        transform: translate(-100%, 0px);
    }
}

.ml-3 {margin-left:1rem;
}
.pr-1 {padding-right:.5rem;
}
/**header*/
.header_wrap {
    background:#fff;
    transition: 0.5s;
}
.top-header, .middle-header {
    padding: 10px 0px;
}
    .top-header .logo-p {
        padding-left: 100px;
    }
.navbar-brand {
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;

}
    .navbar-brand img {
        max-width: 72px;

    }
.contact_detail li {
    color: rgb(17, 48, 50);
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    display: block;
    margin-left: 0px;
    padding: 2px 3px;
}
    .contact_detail li:first-child {
        color: rgb(139, 123, 12);
        font-size: 24px;
    }
.thp-color {
    color: #ed1c24;
    font-weight: bold;
}
.btn-outline-white-new-pg {
    background-color: rgb(237, 28, 36);
    color: rgb(255, 255, 255);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(237, 28, 36);
    border-image: initial;
    padding: 5px 10px;
}
    .btn-outline-white-new-pg:hover {
        background: #194880; color:#fff;
    }
    .btn + .btn {
        margin-left: 10px;
    }
.footer_social li {
    display: inline-block;
    margin-right: 5px;
}
    .footer_social li a {
        color: rgb(237, 28, 36);
        width: 32px;
        height: 32px;
        line-height: 32px;
        display: block;
        text-align: center;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(237, 28, 36);
        border-image: initial;
        border-radius: 100%;
    }
.footer_social {
    padding: 0px;
}
.time_stamp {
    margin-top: 7px;
    display: block;
}
/***
    banner
    ******/
.loginBanner {
position:relative;
}
.loginBanner > img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: calc(35vw - 2px);
}

.footer {
    text-align: center;
    padding: 10px 0;
    background-color: transparent;
    width: 100%;
}

.footer .copyright-info {
    font-size: 11px;
    color: #0A4E95;
}
@media(max-width:1200px) {
    .loginBanner {
        flex: 1;
    }
        .loginBanner > img {
            height: 100%;
            position: absolute;
        }
    .top-header .logo-p {
        padding-left: 2rem;
    }
}
@media(min-width:768px) and (max-width:1199px) {
    .col-3.cols-3, .col-2.cols-2 {
        width: 50%;
    }
}
@media (max-width:767px) {
    .loginWrapper .login-title {
        font-size: 25px;
    }
    .logo-p {
        flex-direction: column;
        padding: 0px 0.75rem !important;
    }

    .contact_detail {
        padding: 0px;
    }

        .contact_detail li:first-child {
            font-size: 16px;
        }

        .contact_detail li {
            font-size: 12px;
        }

    .col-3.cols-3, .col-2.cols-2 {
        width: 45%;
    }
    .col-2.cols-2 {
    width:55%
    }
        .loginWrapper.login-card {
            padding: 0px;
            position: static;
            transform: translate(0);
            margin: 15px auto;
            max-width: calc(100% - 30px);
        }

    .loginWrapper > div {
        padding-top: 25px !important;
    }
}
#form-modal {
    opacity: 1;
    display: block;
    position: absolute;
   padding-right:3vw;
}
    #form-modal .modal-content {margin-left:auto;
    }
    body > footer.footer .copyright-info, body > footer.footer .copyright-info a {
        font-size: 14px;
        color: #fff;
    }
        body > footer.footer .copyright-info p {
            margin: 0px;
        }