@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* @font-face {
  font-family: 'MyCustomFont';
  src: url("{{ asset('assets/font/MyFont.ttf') }}") format('truetype');
  font-weight: normal;
  font-style: normal;
} */

:root {
    --clr-primary-bg: #101010;
    --clr-secondary-bg: #000000;
    --clr-green: #ACEF4B;
    --clr-purple: #3f55c1;
    --clr-red: #842f36;
    --clr-blue: #4057BF;
    --clr-text: #f8f8f8;
    --font-family: "Poppins", sans-serif;
}

#blurOverlay {
    transition: opacity .4s ease;
}

.loader-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid rgba(168, 85, 247, 0.2);
    border-top-color: #a855f7;
    animation: neonSpin 1.1s linear infinite;
}

@keyframes neonSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.fade-in-content {
    animation: fadeInContent 0.6s ease forwards;
}

@keyframes fadeInContent {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}


body {
    background: var(--clr-primary-bg);
    /* font-family: var(--font-family); */
    /* font-family: 'MyCustomFont', sans-serif; */
}

.primary_btn{
    background: var(--clr-blue);
    color: #fff;
    padding: .3rem 1.5rem;
    border-radius: 4px;
    font-size: 1.2rem;
}

/*Welcome*/

.clr-green {
    color: var(--clr-green);
}

.login_btn {
    font-size: 1rem;
    font-weight: 500;
    padding: .3rem .8rem;
    border-radius: 4px;
    transition: all 250ms ease-in-out;
    color: #ACEF4B;
}

.login_btn:hover {
    color: var(--clr-blue);
    background: var(--clr-green);
}

.slides_nav_container {
    position: relative;
    width: 100%;
    max-width: 35rem;
    text-align: center;
    justify-content: center;
}

.previous_slide_btn {
    color: var(--clr-green);
    position: absolute;
    left: .5rem;
    top: -1rem;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    font-size: 1.5rem;
}

.previous_slide_btn:hover {
    padding-inline-end: .5rem;
    left: 0;
}

.next_detail_slide:not(.first_slide .next_detail_slide){
    margin-top: 1.5rem !important;
}

.nav_slides_item {
    width: 1.5rem;
    height: .2rem;
    background: #dddddd;
    border-radius: 20px;
    transition: background 500ms ease-in-out;
}

.nav_slides_item.slide_visited {
    background: #626262 !important;
}

.business_detail_slide,
.business_validation_card {
    width: 100%;
    max-width: 35rem;
    background: var(--clr-secondary-bg);
    text-align: center;
    padding: 2.5rem;
    box-shadow: 0 0 20px #121212;
    border-radius: 20px;
    margin-block: 1rem;
    *{
        color: var(--clr-text)
    }
}

.input_error {
    background: #fbb1b1 !important;
    border: 1px solid red !important;
}

.first_slide .business_detail_header {
    opacity: .6
}

.business_detail_header {
    border-radius: 8px;
    height: 10rem;
    width: 100%;
}


.second_slide .business_detail_header {
    position: relative;
}

.second_slide .business_detail_header::before {
    content: '';
    width: 1rem;
    aspect-ratio: 1;
    border: 3px solid var(--clr-red);
    border-radius: 50%;
    background: var(--clr-blue);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slider_title {
    font-size: 1.5rem;
    margin-block: 1.5rem;
}

.business_detail_input {
    margin-bottom: .5rem;
}

.business_detail_btn{
    width: 100%;
    background: var(--clr-blue);
    color: #fff;
    padding-block: .5rem;
    border-radius: 4px;
    transition: all 250ms ease-in-out;
    i {
        transition: padding 250ms ease-in-out;
    }
}


.skip_validataion_btn {
    background: transparent;
    border: 2px solid var(--clr-blue);
    color: var(--clr-purple-dark);
}

.business_detail_btn:hover {
    background: var(--clr-blue);
    color: #fff;

    i {
        padding-left: .5rem;
    }

    .skip_validation_btn {
        color: #fff !important;
    }
}


.form-control {
    display: block;
    height: 50px;
    margin-right: 0.5rem;
    text-align: center;
    font-size: 1.25rem;
    min-width: 0;

    :last-child {
        margin-right: 0;
    }
}

/*Dashboard*/

.business_title {
    font-size: 1.7rem;
    font-weight: 500;
}

li {
    margin-top: 0
}

.active_page {
    border-radius: 0 40px 40px 0 !important;
}

/*AI SUGGESTION*/

.generate_btn, .generate_explaination {
    *{
        color: var(--clr-green) !important;
    }
    display: flex;
    align-items: center;
    gap: .5rem;
}

.suggestions_wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .8rem;
}

.suggestion {
    color: var(--clr-text);
    cursor: pointer;
    font-size: .9rem;
}

.suggestion:hover {
    text-decoration: underline;
}

.business_plan_page_title {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    /*margin-block: 1rem;*/
}
