/* Scrollbar CSS */
::-webkit-scrollbar {
    width: 10px;
    height: 5px;
    border: 1px solid #cccccc;
}

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: #cccccc;
}

::-webkit-scrollbar-thumb:hover {
    background: #b4b4b4;
}

/* HOME CSS START */
#HOME {
    /* padding: 150px 0; */
    background-image: url(../images/home1.jpg);
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    position: relative;
}

#HOME .inner-box {
    box-sizing: border-box;
    height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}

.overlay {
    background: #000000cc;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#HOME .content {
    position: relative;
    z-index: 2;
}

#HOME .content .brand-name {
    /* text-align: center; */
    font-size: 90px;
    font-weight: 700;
    text-transform: uppercase;
    color: whitesmoke;
}

#HOME .content .brand-name span {
    font-size: 140px;
}

#HOME .content .slogen {
    /* text-align: center; */
    font-size: 21px;
    color: whitesmoke;
}

@media screen and (max-width: 767.5px) {
    #HOME .content .brand-name {
        font-size: 50px;
        text-align: center;
    }

    #HOME .content .brand-name span {
        font-size: 75px;
    }

    #HOME .content .slogen {
        text-align: center;
        font-size: 17px;
    }
}

.login-box {
    max-width: 400px;
    padding: 40px;
    background: #122d4f;
    box-sizing: border-box;
    box-shadow: 0 15px 25px #00000099;
    border-radius: 10px;
    margin: auto;
}

.login-box p:first-child {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label {
    top: -20px;
    left: 0;
    color: #fff;
    font-size: 12px;
}

.login-box form .login_btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 3px;
    background: transparent;
    border: none;
}

.login-box .login_btn:hover {
    background: #fff;
    color: #272727;
    border-radius: 5px;
}

.login-box .login_btn span {
    position: absolute;
    display: block;
}

.login-box .login_btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff);
    animation: btn-anim1 1.5s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.login-box .login_btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff);
    animation: btn-anim2 1.5s linear infinite;
    animation-delay: .375s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.login-box .login_btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #fff);
    animation: btn-anim3 1.5s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.login-box .login_btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #fff);
    animation: btn-anim4 1.5s linear infinite;
    animation-delay: 1.125s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.login-box p:last-child {
    color: #aaa;
    font-size: 14px;
}

.login-box a.a2 {
    color: #fff;
    text-decoration: none;
}

.login-box a.a2:hover {
    background: transparent;
    color: #aaa;
    border-radius: 5px;
}

/* HOME CSS END */

/* ABOUT CSS START */
#ABOUT {
    padding: 40px 20px;
}

#ABOUT .about_content h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #122d4f;
}

#ABOUT .about_content p {
    text-align: justify;
    font-size: 14px;
}

@media screen and (max-width: 767.5px) {
    #ABOUT .about_content h1 {
        margin-bottom: 0px;
    }
    
    #ABOUT .about_content p {
        font-size: 11px;
    }
}

/* ABOUT CSS END */

/* SERVICES CSS START */
#SERVICES {
    padding: 20px 20px;
}

#SERVICES .services_content h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #122d4f;
}

.scard {
    position: relative;
    /* width: 280px; */
    height: 130px;
    /* background: #341d64; */
    background: rgb(2, 0, 36);
    background: linear-gradient(163deg, #020024 0%, #122d4f 23%, #204470 65%);
    border-radius: 20px;
    padding: 20px;
    padding-left: 130px;
    transition: 0.3s;
    margin: 10px;
}

.scard:hover {
    filter: drop-shadow(5px 5px 0px #b964ff) drop-shadow(5px 5px 0px #674aff) drop-shadow(5px 5px 0px #0cccee);
    scale: 1.05;
}

.scard i {
    position: absolute;
    top: 40px;
    left: 30px;
    color: white;
    font-size: 50px;
}

.title1 {
    color: white;
    font-weight: bolder;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 5px;
}

.title2 {
    color: white;
    font-weight: bolder;
    font-size: 24px;
    line-height: 22px;
}

/* SERVICES CSS END */

/* CONTACT CSS START */
#CONTACT {
    padding: 20px 20px;
}

#CONTACT .contact_content h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    /* margin-bottom: 20px; */
    color: #122d4f;
}

#CONTACT .contact_content p {
    font-size: 18px;
}

#CONTACT .contact_content p b {
    color: #122d4f;
}



.input {
    display: flex;
    position: relative;
}

.input input {
    padding: .3em 0;
    margin-top: .6em;
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 1px solid black;
    background: transparent;
}

.input input:focus {
    border-bottom: 1px solid solid;
}

.input div:hover,
.input input[type=text]~div {
    border-bottom: 1px solid #122d4f;
}

.input div {
    width: 100%;
    display: flex;
    align-content: space-around;
    border-bottom: 1px solid #122d4f;
}

.input label {
    position: absolute;
    bottom: .3em;
    transition-property: all;
    transition-duration: .5s;
    pointer-events: none;
}

.input input:focus~label,
.input input:not(:placeholder-shown)~label {
    bottom: 1.6em;
    color: #122d4f;
    transform: scale(.75);
    transform-origin: left;
}

/* submit btn css start */
.submit_button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: #122d4f;
    cursor: pointer;
    position: relative;
    padding: 8px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease;
}

.submit_button::before,
.submit_button::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
}

.submit_button::before {
    top: 0;
    border-bottom-width: 0;
}

.submit_button::after {
    bottom: 0;
    border-top-width: 0;
}

.submit_button:active,
.submit_button:focus {
    outline: none;
}

.submit_button:active::before,
.submit_button:active::after {
    right: 3px;
    left: 3px;
}

.submit_button:active::before {
    top: 3px;
}

.submit_button:active::after {
    bottom: 3px;
}

.button_lg {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: #fff;
    background-color: #051931;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background-color: #122d4f;
}

.button_lg::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 4px;
    height: 4px;
    background-color: #122d4f;
    transition: all .2s ease;
}

.button_sl {
    display: block;
    position: absolute;
    top: 0;
    bottom: -1px;
    left: -8px;
    width: 0;
    background-color: #122d4f;
    transform: skew(-15deg);
    transition: all .2s ease;
}

.button_text {
    position: relative;
}

.submit_button:hover {
    color: #0f1923;
}

.submit_button:hover .button_sl {
    width: calc(100% + 15px);
}

.submit_button:hover .button_lg::after {
    background-color: #fff;
}

/* submit btn css end */
/* CONTACT CSS END */

/* STATUS CSS START */

#STATUS {
    padding: 40px 20px;
}

#STATUS .status_content .invoice-field h1 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #122d4f;
    text-align: center;
}

#STATUS .status_content .invoice-field p {
    font-size: 18px;
    text-align: center;
}

#STATUS .inner-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.Invoice_Input {
    padding: 0 1rem;
    color: #122d4f;
    font-size: 15px;
    border: 1px solid #122d4f;
    border-radius: 6px 0 0 6px;
}

.button--submit {
    min-height: 50px;
    padding: .5em 1em;
    border: none;
    border-radius: 0 6px 6px 0;
    background-color: #122d4f;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

.button--submit:hover {
    background-color: #204470;
}

.Invoice_Input:focus,
.Invoice_Input:focus-visible {
    border-color: #122d4f;
    outline: none;
}


/* STATUS CSS END */

/* MOBILE NAVIGATION CSS START */

.navigation {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    /* border-radius: 10px; */
}

.navigation ul {
    display: flex;
    width: 100vw;
}

.navigation ul li {
    list-style-type: none;
    position: relative;
    width: calc(100%/5);
    height: 60px;
    z-index: 2;
}

.navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 65px;
    font-size: 1.5rem;
    transition: 0.5s;
    color: #222327;
}

.navigation ul li.active a .icon {
    transform: translateY(-12px);
    color: #122d4f;
}

.navigation ul li a .text {
    position: absolute;
    background: #122d4f;
    color: white;
    padding: 2px 7px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(15px);
}

.navigation ul li.active a .text {
    opacity: 1;
}

@media screen and (max-width: 767.5px) {
    .navigation {
        display: flex;
    }

    #main_navbar {
        display: none;
    }

    .footer {
        margin-bottom: 50px;
    }
}

/* MOBILE NAVIGATION CSS END */


/* DOWNLOAD BUTTON CSS */
#downloadBtn {
    border-radius: 50%;
    padding: 5px 10px;
    background-color: #051931;
    border-color: #051931;
    transition: 0.3s;
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 100;
}

#downloadBtn:hover {
    background-color: #0f1923;
}

@media screen and (max-width: 767.5px) {
    #downloadBtn {
        display: block;
    }
}

@media screen and (min-width: 767.5px) {
    #downloadBtn {
        display: none;
    }
}

.playstore-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
    margin: 5px 0px;
}

.playstore-button:hover {
    background-color: transparent;
    color: rgba(0, 0, 0, 1);
}

.playstore-button svg {
    width: 20px;
    height: 20px;
}

.playIcon {
    height: 1.5rem;
    width: 1.5rem;
}

.playTexts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.playText-1 {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.playText-2 {
    font-weight: 600;
}
