/* ? Font Importing */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ? CSS Reset */
* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    ;
}

/* ? Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
html,
body {
    height: 100%;
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
body::-webkit-scrollbar{
    width: 0;
}

/* ? CSS Color | Roots */

:root {
    --textColor: #303030;
    --bodyColor: #ffffff;
    --boxElm: #f5f5f5;
    --borderColor: 1px solid #cccccc;
    --greenAlert: #6bdc61;
    --greenAlertClose: #246828;
    --redAlert: #dd4f4f;
    --redAlertClose: #93000055;
}

/*? Loader  */
#loader {
    background: #fff;
    height: 100vh;
    background-size: 20%;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000000;
}

#loader h1 {
    font-weight: 500;
    position: relative;
    font-size: 30px;
    /* color: #191919; */
}

#loader h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* ? HTML - ScrollBar */


html::-webkit-scrollbar {
    width: 0;
}

/* ? Body */

body {
    transition: all 0.5s;
}


/* ? Navbar */

#navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    width: 100%;
    position: fixed;
    z-index: 1000000;
}

#navbar #logo a {
    text-decoration: none;
}

#navbar #logo a h1 {
    color: var(--textColor);
    font-size: 20px;
    font-weight: 500;
}

#navbar #logo a h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* ? Settings */

#navbar #settings {
    display: flex;
    align-items: center;
}

#navbar #settings .settingBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    border: var(--borderColor);
    transition: 0.5s;
}

#navbar #settings .settingBtn i {
    font-size: 22px;
    color: var(--textColor);
}
#navbar #settings .settingBtn:hover{
    background: #ccc;
}

/** SideBar */
#sideBar {
    position: fixed;
    right: 0;
    display: flex;
    justify-content: flex-start;

    align-items: flex-start;
    flex-direction: column;
    width: 280px;
    background: #f5f5f5;
    height: 100%;
    z-index: 1000000;
    padding: 20px;
    /* margin: 10px; */
    transition: 0.5s;
    transform: translateX(400px);
}

#sideBar #close {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 20px;
    color: #181818;
    border-radius: 3px;
    cursor: pointer;
    /* transition: 0.5s; */

}

#sideBar a {
    display: flex;
    position: relative;
    top: 50px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #ccc;
    /* display: inline; */
    width: 85%;
    margin: 6px 0px;
    border-radius: 3px;
    text-decoration: none;
    color: #181818;
    text-underline-offset: 3px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.5s;
}

#sideBar #terms {
    position: absolute;
    bottom: 110px;
    width: 86%;

}

#sideBar a:hover {
    text-decoration: underline;
    color: #008386;
}

#sideBar #terms a {
    width: 86%;
    text-decoration: underline;
    color: #008386;
}

/* Alert */
#alert {
    display: none;
    align-items: center;
    position: fixed;
    margin-top: 66px;
    justify-content: space-around;
    padding: 10px;
    background: #dd4f4f;
    width: 100%;
    z-index: 1000;

}

#alertMsg {
    color: #fff;
}

#alertClose {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #93000055; */
    border-radius: 2px;
    font-size: 25px;
    color: #ffffff;
    background-color: #93000055;
    cursor: pointer;
}

/*? Home */
#home {
    position: relative;
    top: 200px;
}

#home h1 {
    width: 100%;
    text-align: center;
    font-size: 35px;
    color: var(--textColor);
    font-weight: 500;
}

#home h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}


/*? Search | SearchBox */
#search {
    width: 60%;
    position: relative;
    left: 17%;
    margin-top: 30px;
    background: var(--boxElm);
    padding: 20px;
    border: var(--borderColor);
    border-radius: 5px;
}

#search p {
    font-size: 18px;
    margin-bottom: 15px;
}

#searchBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* background: #000; */
    /* border: var(--borderColor); */
}

#searchBox input {
    width: 70%;
    padding: 10px 20px;
    border: var(--borderColor);
    background: var(--bodyColor);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    /* border-radius: 5px; */
    color: var(--textColor);
    font-size: 16px;
}

#searchBox input:focus {
    outline: none;
}

#searchBox button {
    margin-right: 5px;
    width: 30%;
    padding: 10.5px 15px;
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    color: var(--textColor);
    background: #23eee4;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: none;
    font-weight: 500;
    cursor: pointer;
}

#searchBox button #searchIcon {
    font-size: 15px;
    margin-right: 10px;
}

/* Result */
#home #resultMsg {
    font-size: 18px;
    color: var(--textColor);
    position: relative;
    left: 17%;
    top: 30px;
    text-decoration: underline;
    text-underline-offset: 3px;

}

#result {
    padding-bottom: 150px;
    overflow-x: hidden;

}

/* Bank Info */
#resultBox {
    display: none;
    background: var(--boxElm);
    width: 62%;
    position: relative;
    left: 17%;
    padding: 10px;
    border: var(--borderColor);
    border-radius: 5px;
    top: 60px;
    overflow: hidden;
    /* height: 255px; */
    transition: all 0.5s;

}

#resultBox .resultItem {
    /* background: var(--bodyColor); */
    margin: 5px;
    /* padding: 15px; */
    border-radius: 5px;
    /* border: var(--borderColor); */
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

#bankLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* background: #000; */
}

#bankLink a {
    color: #23eee4;
}

#resultBox .item {
    margin-top: 10px;
    padding: 10px 20px;
    border: var(--borderColor);
    background: var(--bodyColor);
    border-radius: 5px;
    transition: 0.5s;
}

#upArrow {
    font-size: 22px;
    background: var(--bodyColor);
    border: var(--borderColor);
    height: 44px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-right: 0px;
    margin-left: 5px;
    position: relative;
    transition: 0.5s;
    top: 5px;
    cursor: pointer;
}

#upArrow:hover {
    background: #005354;
}

#bankName {
    width: 100%;
    margin-top: 0px;
}

#bankInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* background: #000; */
}

#bankInfo #bankcode {
    width: 50%;
    margin-right: 5px;
}

#bankInfo #UPI {
    width: 50%;
    margin-left: 5px;
}

#address {
    margin-bottom: 8px;
}

#bankLink a {
    color: #228f99;
    text-underline-offset: 3px;
}

#navbar {
    background: rgba(245, 245, 245, 0.679);
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
}

#mid p {
    font-weight: 400;
    color: #fff;
}

/* Responsive */
@media (max-width:610px) and (min-width:520px) {
    body {
        /* background: #181818; */
    }

    #searchBox input {
        width: 60%;
        padding: 10px 20px;
        border: var(--borderColor);
        background: var(--bodyColor);
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        /* border-radius: 5px; */
        color: var(--textColor);
        font-size: 16px;
    }

    #searchBox input:focus {
        outline: none;
    }

    #searchBox button {
        margin-right: 5px;
        width: 40%;
        padding: 10.5px 15px;
        border: none;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        color: var(--textColor);
        background: #23eee4;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-left: none;
        font-weight: 500;
        cursor: pointer;
    }

    #bankInfo #UPI {
        width: 30%;
    }

    #search {
        width: 70%;
        left: 12%;
    }

    #result #resultMsg {
        left: 12%;
    }

    #resultBox {
        width: 74%;
        left: 12%;
    }

    #navbar {
        background: rgba(245, 245, 245, 0.81);
        backdrop-filter: blur(10.3px);
        -webkit-backdrop-filter: blur(10.3px);
    }
}

@media (max-width:520px) and (min-width:425px) {
    body {
        /* background: #000; */
    }

    #search {
        width: 80%;
        position: relative;
        left: 6%;
        margin-top: 30px;
        background: var(--boxElm);
        padding: 20px;
        border: var(--borderColor);
        border-radius: 5px;
    }

    #bankInfo #UPI {
        width: 30%;
    }

    #searchBox input {
        width: 60%;
        padding: 10px 20px;
        border: var(--borderColor);
        background: var(--bodyColor);
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        /* border-radius: 5px; */
        color: var(--textColor);
        font-size: 16px;
    }

    #searchBox input:focus {
        outline: none;
    }

    #searchBox button {
        margin-right: 5px;
        width: 40%;
        padding: 10.5px 15px;
        border: none;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        color: var(--textColor);
        background: #23eee4;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        border-left: none;
        font-weight: 500;
        cursor: pointer;
    }

    #result #resultMsg {
        position: relative;
        left: 6%;
    }

    #resultBox {
        width: 84%;
        left: 6%;
    }

    #navbar {
        background: rgba(245, 245, 245, 0.81);
        backdrop-filter: blur(10.3px);
        -webkit-backdrop-filter: blur(10.3px);
    }
}

@media (max-width:424px) and (min-width:320px) {
    body {
        /* background: #000; */
    }

    #home {
        top: 160px;
    }

    #home h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #result #resultMsg {
        position: relative;
        left: 5%;
    }

    #resultBox {
        width: 84%;
        left: 5%;
    }

    #resultMsg {
        left: 5%;
    }

    #bankInfo #UPI {
        width: 30%;
    }

    #search {
        width: 80%;
        position: relative;
        left: 4%;
        margin-top: 30px;
        background: var(--boxElm);
        padding: 20px;
        border: var(--borderColor);
        border-radius: 5px;

    }

    #searchBox {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        /* background: #000; */
    }

    #searchBox button {
        border-radius: 5px;
        /* margin-left:6px ; */
        width: 100%;
        border: var(--borderColor);
        margin: 0px 0px 0px 0px;
        padding: 10px 20px;

    }

    #navbar {
        background: rgba(245, 245, 245, 0.81);
        backdrop-filter: blur(10.3px);
        -webkit-backdrop-filter: blur(10.3px);
    }

    #searchBox input {
        width: 87%;
        padding: 10px 20px;
        border: var(--borderColor);
        background: var(--bodyColor);
        border-radius: 5px;
        color: var(--textColor);
        font-size: 16px;
        margin-bottom: 8px;
    }

}

/* Main Hone */
#mainHome {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    position: relative;
    top: 130px;
}

#mainHome h1 {
    font-size: 3rem;
    text-align: center;
    font-weight: 500;
}

#mainHome h2 {
    font-size: 17px;
    text-align: center;
    font-weight: 400;
    width: 80%;
    font-weight: 400;
}

#howtouse {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    top: 150px;
    /* padding: 20px; */

    margin-bottom: 50px;
    left: 16%;
    width: 100%;
}

#howtouse h1 {
    /* display: flex;
    align-items: flex-start; */
    position: relative;
    left: 1%;
    font-weight: 500;
    font-size: 1.5rem;
    /* flex-wrap: wrap; */
}

#howtouse div {
    padding: 10px;
    margin: 10px;
    /* background: #f5f5f5; */
    border: 1px solid #ccc;
    border-radius: 7px;
    width: 62%;
}

#howtouse div p {
    text-decoration: none;
    position: relative;
    left: 0;
    font-size: 18px;
    padding: 10px;
}

#howtouse h1 span {
    /* display: flex; */
    /* font-weight: 600; */
    /* flex-direction: column; */
    /* align-items: flex-start; */
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

#howtouse strong {
    font-weight: 600;
}

#mainHome h1 {
    font-weight: 600;
}

@media (max-width:450px) and (min-width:220px) {
    body {
        /* background: #181818; */
    }

    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        top: 80px;
        /* padding: 20px; */
        left: 3%;
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        width: 83%;

    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }

    #howtouse #h1 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #howtouse #h1 span {
        /* display: flex; */
        margin-left: 0px;
        /* flex-direction: column; */
        /* align-items: flex-start; */
    }

    #mainHome h1 {
        font-size: 2rem;
        font-weight: 600;
        width: 80%;
        left: 10%;
    }

    body #mid {
        position: relative;
        top: 70px;
    }

    #mainHome h1 {
        font-size: 2.3rem;
        font-weight: 600;
        width: 90%;
    }

    #mainHome h2{
        width: 90%;
    }

    #mid #midText {
        width: 90%;
    }
}

@media (max-width:768px) and (min-width:600px) {
    body {
        /* background: #000; */
    }

    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        /* top: 100px; */
        /* padding: 20px; */
        /* left: 18%; */
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        /* width: 63%; */
    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }
}

@media (max-width:600px) and (min-width:520px) {
    body {
        /* background: #000; */
    }

    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        /* top: 50px; */
        /* padding: 20px; */
        left: 10%;
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        width: 75%;
    }

    #howtouse div p {
        text-decoration: none;
        position: relative;
        left: 0;
        padding: 10px;
    }

    .lastdiv {
        padding-bottom: 0px;
    }

    footer .footer-section p {
        text-align: center;
        position: relative;
        left: 10%;
    }

    #mainHome h1 {
        font-size: 2.3rem;
        font-weight: 600;
    }
}

@media (max-width:519px) and (min-width:425px) {
    #howtouse {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        /* top: 50px; */
        /* padding: 20px; */
        left: 5%;
        width: 100%;
    }

    #howtouse h1 {
        display: flex;
        align-items: flex-start;
        position: relative;
        left: 2%;
        font-size: 1.5rem;
    }

    #howtouse div {
        padding: 10px;
        margin: 10px;
        /* background: #f5f5f5; */
        border: 1px solid #ccc;
        border-radius: 7px;
        width: 83%;
    }

    #mainHome h1 {
        font-size: 2.3rem;
        font-weight: 600;
    }
}

@media (max-width:1600px) and (min-width:900px) {
    #mainHome h1 {
        width: 60%;
    }

    #mainHome h2 {
        width: 60%;
    }
}

#mid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: relative;
    top: 130px;
    background: #015e60;
    height: 250px;
    margin-top: 70px;
    margin-bottom: 50px;
}

#midText {
    text-align: center;
    position: relative;
    /* top: 0px; */
    width: 50%;
    color: #fff;
    margin: 50px 30px;
    font-size: 18px;
}

#findPin {
    position: relative;
    margin: auto;
    text-align: center;
    height: 50px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #181818;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    top: -35px;
    box-shadow: 10px 10px 0px #181818;
    transition: 0.5s;
    color: #181818;
    /* margin-bottom: 40px; */
}

#findPin:hover {
    box-shadow: 0px 0px 0px #012c2d;
}

#howtouse a {
    color: #008386;
}


/** Footer - Code */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: 240px;
}

.footer-container {
    display: flex;
    width: 100%;
    background: #f5f5f5;
}

.footer-container #first {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
}

.footer-container #first h1 {
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.footer-container #second {
    width: 25%;
    padding: 30px;
}

.footer-container #second h3 {
    font-weight: 500;

}

.footer-container #second ul {
    padding-top: 10px;
}

.footer-container #second ul li {
    list-style: none;
    padding: 5px;
}

#second ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third {
    width: 35%;
    padding: 30px;
}

.footer-container #third h3 {
    font-weight: 500;
}

.footer-container #third ul {
    padding-top: 10px;
}

.footer-container #third ul li {
    list-style: none;
    padding: 5px;
}

.footer-container #third ul li a {
    text-decoration: none;
    color: #00867f;
}

.footer-container #third #div {
    display: flex;
    position: relative;
    /* left: -40px; */
    /* justify-content:space-around; */
}

.footer-container #third #div ul:nth-child(2) {
    position: relative;
    left: 5%;
}

.copyright {
    padding: 20px;
}

.copyright p {
    font-weight: 500;
}

.copyright p span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer #first h1 span {
    background: -webkit-linear-gradient(top left, #00eaff, #005354);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width:800px) {
    .footer-container {
        display: flex;
        width: 100%;
        background: #f5f5f5;
        flex-direction: column;
    }

    .footer-container #first {
        align-items: flex-start;
        justify-content: flex-start;
        width: 90%;
    }

    .footer-container #first p {
        text-align: left;
    }

    .footer-container #second {
        width: 90%;
    }

    .footer-container #third {
        width: 90%;
    }
}

@media screen and (max-width:770px) {
    .footer-container #first p {
        text-align: left;
        position: relative;
        left: 0;
        margin: 0;
    }

    .copyright p {
        text-align: center;
    }
}

/** Explore Our Tools */
#howtouse #toolX{
    border:none ;
}
#howtouse #toolX .etool{
    width: 98%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px;
    position: relative;
    left: -2%;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: #008386;
}
#howtouse #toolX .etool p{
    font-size: 17px;
    color:#005354;
    text-underline-offset: 4px;
    
}
#howtouse #toolX .etool i{
    height: 40px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    color: #00867f;
    border-radius: 3px;
    border: 1px solid #ccc;
}
@media (max-width:1000px) and (min-width:800px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left: -3%;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}
@media (max-width:800px) and (min-width:600px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left: -4%;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}
@media (max-width:425px) and (min-width:300px) {
    body{
        /* background: #000; */
    }
    #howtouse #toolX .etool{
        width: 98%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        margin: 10px;
        position: relative;
        left:-20px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }
}