/* NOTO SANS FONT */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Noto Sans", sans-serif;
}

a{
    text-decoration: none;
}

ul{
    padding: 0;
}

li{
    list-style: none;
    /* padding: 0; */
}

:root {
    --noto-sans: "Noto Sans", sans-serif;
    --d-yellow: #E4CC2C;
    --l-yellow: #FFF5B1;
    --l-2-yellow: #fff6b5;
    --black: #222b32;
    --landing-gradient: linear-gradient(180deg, rgba(250, 245, 255, 0.2692) 0%, #FFF5B1 100%);
    --glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    --backdrop-filter: blur(10px);
    --defaultbg: transparent;
    --scroll-navbar: #fcfcec;
    --white: #fff;
    --offwhite: #eee;
    --grey: #adb5bd;
    --box-shadow: 0 .2rem 0.6rem rgba(0, 0, 0, .1);
    --whatsapp-icon: #25D366;
}

/* SCROLL BAR STYLE START */

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background-color: var(--defaultbg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--d-yellow);
    border-radius: 10px;

}
::selection {
    color: var(--white);
    background-color: var(--d-yellow);
}

/* SCROLL BAR STYLE END */




/* USEFUL CSS FOR HEADING, PARAGRAPH START */

.text-subtitle {
    color: var(--d-yellow);
    font-weight: bold;
}

.text-subtitle-2 {
    color: var(--white);
    font-weight: bold;
}

.text-yellow-highlight {
    color: var(--d-yellow);
}

.landing-heading {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    /* font-size: 38px; */
    color: var(--black)
}

.about-heading {
    text-align: left;
    font-style: normal;
    font-weight: 700;
    /* font-size: 38px; */
    color: var(--black)
}

.font-14 {
    font-size: 14px;
}

.font-12 {
    font-size: 12px;
}

/* USEFUL CSS FOR HEADING, PARAGRAPH END */





/* NAVBAR CSS START */

.offcanvas{
    background: var(--scroll-navbar);
}

.navbar {
    background-color: transparent;
    padding: 10px 30px 10px 30px;
    height: 70px;
    font-weight: 500;
}

.scrolled {
    background: var(--scroll-navbar);
    transition: 0.3s all;
    /* backdrop-filter: var(--backdrop-filter);
    -webkit-backdrop-filter: var(--backdrop-filter); */
    /* box-shadow: var(--box-shadow); */
}


.navbar-toggler {
    border: none;
    font-size: 1.25rem;
}

.navbar-toggler:focus,
.btn-close:focus {
    box-shadow: none;
    outline: none;
}

.nav-link {
    font-size: 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.btn-warning {
    background-color: var(--d-yellow);
    padding: 5px 15px 8px 15px;
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
}

.dropdown-menu{
    border: none;
    /* background-color: var(--l-yellow); */
    font-size: 14px;
}

.dropdown-item:hover{
    background-color: var(--l-yellow);
}

.dropdown-item:focus{
    background-color: var(--d-yellow);
}

.dropdown:hover > .dropdown-menu{
    display: block;
    margin-top: 0px;

}

/* NAVBAR CSS END */



/* LANDING BG START */

.img-fluid-about{
    height: 100%;
    width: 100%;
}

.landing-bg {
    background: var(--landing-gradient);
    width: 100%;
    height: 1150px;
}

.landing-bg-p1 {
    height: 1050px;
}

.about-us-box {
    margin-top: -200px;
}

.about-us-border {
    box-shadow: var(--box-shadow);
    /* border-radius: 8px; */
}

.list-style-none {
    list-style: none;
}

.about-icon {
    color: var(--d-yellow);
}

.left-border {
    border-left: 5px solid var(--d-yellow);
    padding-left: 10px;
}

.left-border-2 {
    border-left: 5px solid var(--black);
    padding-left: 10px;
}

.bg-yellow {
    background-color: var(--d-yellow);
}

.card-service {
    margin: auto;
    /* width: min(300px, 100%); */
    background-color: #fefefe;
    border-radius: 1rem;
    padding: 0.5rem;
    color: var(--black);
    box-shadow: var(--box-shadow);
}

.card:hover{
    border-color: var(--d-yellow);
    cursor: pointer;
}

.card__hero {
    background-color: var(--l-2-yellow);
    /* background-color: #fef4e2; */
    /* background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("/images/business-loan.jpg"); */
    background-size: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem;
    font-size: 0.875rem;
}

.card__job-summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

.card__hero .card__job-title {
    margin: 2rem 0;
    font-size: 1.8rem;
    font-weight: 600;
    /* padding-right: 2rem; */
}

.card__hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    font-weight: 400;
}

.card__footer {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0.75rem 0.75rem 0rem 0.75rem;
    row-gap: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.bg-services{
    background: linear-gradient(rgb(255,255,255) 80%,rgb(255,245,177) 20%);
}

.bg-offwhite{
    background: var(--offwhite);
}

.circle-icon{
    color: var(--white);
    font-size: 2rem;
}

/* Input container */
.input-container {
    position: relative;
    margin: 15px;
  }

  /* Label when input is filled */
.input-field[data-filled="true"] + .input-label {
    top: -20px;
    font-size: 12px;
    color: var(--d-yellow);
}

.input-field[data-filled="true"] {
    border-bottom: 2px solid var(--d-yellow);
}

  /* Input field */
  .input-field {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid #ccc;
    outline: none;
    background-color: transparent;
    /* color: var(--grey); */
  }

  /* Input label */
  .input-label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    color: rgba(204, 204, 204, 0);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .input-field[data-filled="true"] + .input-label {
    top: -20px;
    font-size: 12px;
    color: var(--d-yellow);
}

/* Highlight stays active when data-filled */
.input-field[data-filled="true"] + .input-label + .input-highlight {
    width: 100%;
}

  /* Input highlight */
  .input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--d-yellow);
    transition: all 0.3s ease;
  }

  .not-valid{
    position: absolute;
    /* bottom: 10%; */
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--d-yellow);
    transition: all 0.3s ease;
  }

  /* Input field:focus styles */
  .input-field:focus + .input-label {
    top: -20px;
    font-size: 12px;
    color: var(--d-yellow);
  }

  .input-field .not-valid:focus + .input-label {
    top: -10px;
    font-size: 12px;
    color: var(--d-yellow);
  }

  .input-field:focus + .input-label + .input-highlight {
    width: 100%;
  }

  .input-field:focus + .input-label + .not-valid {
    width: 100%;
  }

  .has-error input {
    border-color: red;
}

.error-message {
    font-size: 12px;
    color: red;
    margin-top: 5px;
}


/* Marquee container */
.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100px; /* Set a height for the marquee */
    display: flex;
    align-items: center;
}


.bg-about-us {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),url('/images/about-us-bg.jpg');
    /* background-image: linear-gradient(rgb(255, 255, 255) 80%, rgb(255, 245, 177) 20%), url('/images/service-bg.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 89vh;
}

.about-tag-line{
    letter-spacing: 0.8px;
}

.get-involve-icon {
    font-size: 50px;
    justify-content: center;
    color: var(--black);
}

.bg-secured {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url('/images/service-bg.jpg');
    /* background-image: linear-gradient(rgb(255, 255, 255) 80%, rgb(255, 245, 177) 20%), url('/images/service-bg.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.bg-unsecured {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url('/images/unsecured-loans.jpg');
    /* background-image: linear-gradient(rgb(255, 255, 255) 80%, rgb(255, 245, 177) 20%), url('/images/service-bg.jpg'); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
}

.text-service{
    font-size: 14px;
    letter-spacing: 0.8px;
    font-weight: 400;
}

.text-yellow{
    color: var(--d-yellow);
}


.box-shadow-card{
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    background-color: var(--white);
}


.border-left-col{
    border-left: 1px solid var(--grey);
}

.modal-list{
    font-size: 14px;
}

.border-right-col{
    border-right: 1px solid var(--grey);
}

.service-card-up{
    margin: -90px 0px 0px 0px;
}

.service-card-active{
    background-color: var(--l-yellow);
}

.service-card-active:hover{
    cursor: pointer;
}

.service-icon{
    font-size: 40px;
}

.service-heading{
    border-left: 6px solid var(--d-yellow);
}

.text-loan{
    color: var(--black);
}

.img-partner{
    width: 100%;
    height: 90px;
}

.form-control{
    font-size: 14px;
    border-radius: 3px;
}

.form-control:focus{
    box-shadow: none;
    border-color: var(--d-yellow);
}

.form-label{
    font-size: 14px;
}

.form-select{
    font-size: 14px;
    border-radius: 3px;
    color: var(--black);
}

.form-select:focus{
    border-color: var(--d-yellow);
    box-shadow: none;
}

.city-list:hover{
    background: var(--d-yellow);
    color: var(--black);
}

.city-name {
    display: none;  /* Hide the city name div by default */
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    background-color: #fff;
}

/* .contact-city-name {
    display: none;
    max-height: 100px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    background-color: #fff;
} */

.city-field-form {
    position: relative;  /* Only apply to the city field wrapper */
}

.contact-city-name {
    display: none;
    max-height: 150px; /* Adjust height */
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    position: absolute; /* Position above the city input */
    z-index: 999;
    width: calc(100% - 2px); /* Align with the input width */
    top: 60px; /* Adjust this value to position the dropdown above the input field */
}

.contact-city-name.show {
    display: block;
    margin-bottom: 5px; /* Space between dropdown and input */
}

#contact-city {
    padding-right: 40px; /* Space for dropdown */
}


.form-select option:focus {
    background-color: #dcdcdc;
}

#inputLoan:hover > option:hover{
    background-color: var(--d-yellow);
    color: var(--black);
}

.city-name.show {
    display: block;  /* Show the city name div when there are results */
}

.contact-city-name.show {
    display: block; /* Show the city name div when there are results */
}

/* LANDING BG END */

.scroller{
    overflow: hidden;
    max-width: 100%;
    /* outline: 3px solid yellow; */
}

.scroller__inner{
    padding-block: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.scroller[data-animated=true]{
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, white);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    /* border: 5px solid lime; */
}

.scroller[data-animated=true] .scroller__inner{
    flex-wrap: nowrap;
    /* animation: scroll 20s linear infinite; */
    animation: scroll 20s var(--_animation-direction, forwards) linear infinite;
    width: 100%;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.to-top {
    background-color: white;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    border: none;
    position: fixed;
    bottom: 600px;
    right: 40px;
    padding: 1px 3px 1px 3px;
    border-radius: 5px;
    font-size: 25px;
    color: var(--whatsapp-icon);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
}

.to-top.active {
    text-decoration: none;
    bottom: 32px;
    pointer-events: auto;
    color: var(--whatsapp-icon);
    opacity: 1;
}

.to-top:active {
    transform: scale(1);
    text-decoration: none;
  }


/* .visible-icon {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.hide-icon {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
} */


/* .icon-whatsapp{
    color: var(--whatsapp-icon);
    background-color: var(--white);
    padding: 1px 3px 1px 3px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
} */


@keyframes scroll {
    to{
        transform: translate(calc(-50% - 0.5rem));
    }
}



/* FOOTER CSS START */

.footer-heading{
    font-weight: 350;
    letter-spacing: 0.5px;
}

.footer-about{
    font-weight: 200;
    letter-spacing: 0.6px;
}

.footer-links{
    letter-spacing: 0.8px;
    font-weight: 200;
    color: var(--white);
}

.footer-links:hover{
    color: var(--d-yellow);
}

.copyright {
    letter-spacing: 1px;
    font-weight: 200;

}

/* FOOTER CSS END */



/* MAINTANANCE MODE CSS */

.const-heading {
    font-family: var(--noto-sans);
    font-weight: 900;
    letter-spacing: 1.5px;
}

.text-small {
    font-size: 12px;
}

/* MAINTANANCE MODE CSS */


/* MEDIA QUERY START */

@media (min-width: 991px) {

    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--d-yellow);
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        visibility: visible;
    }

}


@media (max-width: 991px) {
    .navbar {
        padding: 0px 5px 70px 5px;
    }
}

@media (max-width: 500px) {
    .navbar {
        padding: 0px 5px 80px 5px;
    }
}

@media (min-width: 340px) {
    .card__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }
}

/* MEDIA QUERY END */
