@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

:root {
    --primary-color: #f4f4f4;
    --primary-light-color: #FFE769;
    --secondary-color: #FFE4BA;
    --secondary-light-color: #FFF6E8;
    --post-color: #62EEA8;
    --delete-color: #FF9F9F;
    --light-color: #FFFEFC;
    --grey-color: #747E79;
    --dark-color: #000000;

    --primary-font: 'Poppins', sans-serif;
    --seconday-font: 'Poppins', sans-serif;

    --border-width: 3px;
    --element-border-radius: 5px;

    --button-height: 5px;
    --small-button-height: 2px;

    --element-padding: 0.8em;

    --maximum-width: 320px;

    --tw-gradient-to: #e9e4fd 0;

    --tw-gradient-from: #fff 100;

    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

    --shadow-soft: 0 4px 6px -1px hsl(220 13% 18% / .1)
}

.under-construction {
    width: 100%;
    text-align: center;
    background-color: orange;
    color: #000;
    position: absolute;
    z-index: 99999;
    vertical-align: middle;
    font-size: 12px;
    padding: 5px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    color: var(--dark-color);
    /*background-color: var(--primary-color);*/
    font-family: var(--primary-font);
    height: 100vh;
}

.public-site {
    /*background-color: rgb(243 241 254 / 1);*/
}

main {
    padding: 2rem;
    height: 100vh;
    overflow: auto;
}

.btn-primary {
    background-color: #ff571a;
    border-color: #ff571a;
    padding: .5rem .7rem;
    height: 50px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #ff571a;
    border-color: #ff571a;
}





/* === Structure === */

.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* === Navbar === */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: black;
    box-shadow: 0px 8px 16px -4px rgba(128, 128, 128, 0.2);
    position: relative;
    z-index: 9;

    width: 100%;

}

.logo-img {
    width: auto;
    height: 50px;
    margin-left: 1rem;
}

.logo {
    font-size: 3rem;
    text-decoration: none;
    color: white;
}

.navbar a {
    text-decoration: none;
    color: black;
    padding: 5px 15px;
    text-align: center;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all .5s ease-in-out;
}

.navbar a.btn {
    color: #fff;
    display: flex;
    align-items: center;
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.navbar a:hover,
.navbar a.active {
    border-bottom: 2px solid #ff571a;
}

.navbar.pvt a:hover,
.navbar.pvt a.active {
    border-bottom: 2px solid #ff571a;
    background-color: #eaeaea;
}


/* Style the dropdown button */
.dropdown {
    position: relative;
    /* This makes the positioning of the dropdown content relative to this container */
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    margin-top: 1.5rem;
    right: 0;
    left: auto;
    white-space: nowrap;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 1rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
    /* Ensure text is aligned to the left */
}


/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* === Hamburger Menu === */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.closebtn {
    display: none;
}

.hide {
    display: none;
}





/* === Buttons === */

button {
    font-weight: 600;
    width: 100%;
}

button:hover {
    cursor: pointer;
}


/* === Forms === */

input,
button {
    padding: var(--element-padding);
    border-radius: var(--element-border-radius);
    width: 100%;
    font-size: 1.1em;
    text-align: center;
}

input {
    text-align: left;
}

span.appname {
    font-size: 3rem;
    color: #333;
}











/* Auth page styles - Login, Signup, Forgot Password */

.auth-page_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;


}

.login-form-container {
    display: flex;
    justify-content: center;
    /* align-items: center;  */
    width: 100%;
    max-width: 500px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 15px;
    color: rgb(31 41 55 / 1);
    letter-spacing: -.025em;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 2rem;
}

.login-form .small {
    color: rgb(107 114 128 / 1);
    margin-top: 0px;
    font-size: .875rem;
    line-height: 1.25rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

.input-group input {
    padding: 10px;
    border: 1px solid rgb(229 231 235 / 1);
    border-radius: calc(var(.5rem) - 2px);
    width: calc(100% - 20px);
    font-size: .875rem;
    line-height: 1.25rem;
}

.input-group,
.login-btn,
.google-login-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group {
    flex-direction: column;

}

.login-btn {
    background-color: #ff5819;
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-weight: 500;
    color: white;
    cursor: pointer;
    height: 2.5rem;
    font-size: 1.2rem;
}

.login-btn:hover {
    transition: all 0.2s ease;
    transform: scale(1.05);
}

.google-login-btn {
    color: var(--dark-color);
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.google-login-btn:hover {
    transition: all 0.2s ease;
    transform: scale(1.05);
}

.google-btn-logo {
    width: 1.375em;
}

.alt-signin-divider {
    margin: 1em 0;
    text-align: center;
    font-size: 0.875em;
    color: var(--dark-color);
}

.signup-link-container {
    text-align: center;
    margin-top: 1em;
}

.error-msg {
    color: red;
    font-size: 1rem;
    margin-top: 0.5em;
    text-align: center;
}

.login-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    max-width: 10rem;
    margin-top: 1rem;
    height: 2.5rem;
    cursor: pointer;
    background-color: rgb(202, 195, 195);
    border: none;
}

.login-link-btn:hover {
    background-color: var(--grey-color);
    border: none;
    color: white;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #3366ff;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}

.form-check-input:checked {
    background-color: #4f46e5;
    border-color: #fff;
}

.form-check-label {
    margin-left: 5px;
    cursor: pointer;
}

input[type=date] {
    width: 200px;
}

input[type=date]::-webkit-calendar-picker-indicator {
    filter: invert(34%) sepia(92%) saturate(800%) hue-rotate(200deg);
}

/* Footer Styles */

footer {
    background-color: #ff6e00;
    /* Light grey background */
    color: #333;
    /* Dark grey text */
    font-family: var(--primary-font);
    text-align: center;
    /* Centering the content */
    padding: 10px 0;
    /* Padding above and below */
    font-size: 14px;
    /* Standard font size */
    position: relative;
    z-index: 1;
}

.simple-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    /* Padding on the sides */
}

.simple-footer a {
    color: white;
    /* Standard link color */
    text-decoration: none;
    /* No underlines on links */
    margin: 0 5px;
    /* Margins for spacing */
}

.simple-footer a:hover {
    text-decoration: underline;
    /* Underline on hover for better user interaction */
}


.bg-primary-light {
    background-color: #e6edff;
}

.text-gradient {
    background: linear-gradient(90deg, #3366FF 0%, #6f42c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.badge {
    padding: 4px 8px;
}

.display-4 {
    font-size: 3.5rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.display-5 {
    font-size: 3rem;
}

.pricing-card svg {
    margin-right: 10px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.follow-us a {
    margin-right: 5px;
}

.plan-selector {
    display: flex;
    flex-direction: column;
    height: 65%;
    justify-content: space-between;
}

/* Spinner */
.spinner {
    border: 4px solid #111111;
    border-top: 4px solid #4f46e5;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Spinner */

.supported-platforms {}

.supported-platforms img {
    width: auto;
    margin-right: 10px;
}

.accordion-header {
    font-size: 1.2rem;
    font-weight: 500;
}

.accordion-header .accordion-button {
    border: 1px solid #f3f1fe;
    padding: 8px 6px;
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    outline: none;
    background: #f3f1fe;
}

.accordion-body {
    padding: 10px;
}

/* Responsive */
@media screen and (max-width: 600px) {




    .navbar-right {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        overflow-x: hidden;
        /* Prevent horizontal scroll */
        overflow-y: auto;
        transition: 0.5s;
        /* Smooth transition for sliding in/out */
        padding: 0;
        /*padding-bottom: 40rem;*/
        margin: 0;
        z-index: 9;
    }

    .navbar-right a {
        color: black;
        padding: 15px;
        text-decoration: none;
        font-size: 2rem;
        display: block;
        /* Ensure links take full width */
        transition: 0.3s;
        /* Smooth transition for hover effect */
    }

    .navbar a:hover {

        background-color: inherit;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
        right: auto;
        text-align: center;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        overflow-y: auto;

    }

    .dropdown-content a {
        padding: auto;
        text-align: center;
        font-size: 1.6rem;
        color: gray;
    }


    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-size: 2.2rem;
    }

    .closebtn {
        display: block;
        position: absolute;
        top: 0;
        right: 1rem;
        font-size: 3rem;
        cursor: pointer;
        color: black
    }

    .simple-footer {
        flex-direction: column;
        padding: 0;
    }
}

.icon-32 {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.login-bg {
    background: transparent url(../images/login_bg.jpg) no-repeat center center;
    background-size: cover;
}

.forgot-pass-bg {
    background: transparent url(../images/login_bg.jpg) no-repeat center center;
    background-size: cover;
}

.signup-bg {
    background: transparent url(../images/login_bg.jpg) no-repeat center center;
    background-size: cover;
}

.login-bg::before,
.forgot-pass-bg::before,
.signup-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* adjust to match lavender tone */
    z-index: 0;
}

.custom-h-login {
    min-height: calc(100vh - 96px);
}

.logo-link,
.logo-link:hover,
.logo-link:focus {
    padding: 0 !important;
    text-decoration: none !important;
    outline: none;
    transition: none !important;
    border: none !important;
}

.logo-link img {
    margin-left: 0;
    width: auto;
    height: 50px;
}

.attribute {
    display: flex;
    justify-content: right;
    font-size: .5rem;
    padding: 0 1rem;
}

.payment-cancelled .card {
    border: none;
    padding: 40px;
    width: 100%;
    text-align: center;
    background-color: transparent !important;
    box-shadow: none !important;
}

.payment-cancelled h2 {
    font-size: 2rem;
}

.payment-cancelled .btn-custom {
    background-color: #8b5cf6;
    color: white;
    border: none;
}

.payment-cancelled .btn-custom:hover {
    background-color: #7c3aed;
}

.payment-cancelled .subtext {
    color: #666;
}


.payment-success .success-icon {
    background-color: #1f1f1f;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-success .success-icon svg {
    width: 40px;
    height: 40px;
    color: #00c853;
}

.payment-success .card-light {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.payment-success .card-light-purple {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-success .btn-purple {
    background-color: #7c3aed;
    color: white;
    border: none;
}

.payment-success .btn-purple:hover {
    background-color: #6d28d9;
}

.payment-success .text-muted-light {
    color: #cfcfcf;
}

.payment-success .link-light:hover {
    text-decoration: underline;
}

.payment-success .highlight {
    color: #ffc107;
}

/* Notification container */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    z-index: 99999;
}

/* Notification message */
.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.5s forwards, fadeOut 0.5s 4s forwards;
}

/* Different types of notifications */
.success {
    background-color: #28a745;
}

.error {
    background-color: #dc3545;
}

.warning {
    background-color: #ffc107;
    color: #333;
}

.info {
    background-color: #17a2b8;
}

/* Close button */
.notification .close-btn {
    cursor: pointer;
    margin-left: 10px;
    font-weight: bold;
}

/* Animation for appearing */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation for disappearing */
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.why-choose p {
    text-align: justify;
}

.capabilities-img {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(107, 91, 149, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 14px;
    display: none;
}

.cookie-banner p {
    margin: 0;
    padding-right: 1rem;
}

.cookie-banner a {
    color: #00baff;
    text-decoration: underline;
}

.cookie-btn {
    background-color: #ffffff;
    border: none;
    color: #4f46e5;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    width: auto;
}

.video-container {
    width: 100%;
    /* Or set a max-width */
    max-width: 800px;
    margin: 0 auto;
    /* Optional: center horizontally */
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    /* Removes small white gaps */
}

.form-control {
    height: 50px;
    border-radius: .5rem;
}

.get-started {
    height: auto;
}

.text-primary {
    color: #ff571a !important;
}

.btn-outline-primary {
    color: #ff571a;
    border-color: #ff571a;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #ff571a;
    ;
    border-color: #ff571a;
}

.btn-primary:hover {
    background-color: #e78131;
    /* color: #ff571a; */
}

.home-page-bg {
    background: transparent url(../images/bg_img.jpg) no-repeat top center;
    background-size: cover;
}

.bg-highlight {
    background-color: #ff571a;
    padding: 0 8px;
    color: #fff;
}

.howitworks {
    background: transparent url(../images/howitworks.jpg) no-repeat top center;
    background-size: cover;
}

.aboutus {
    background: transparent url(../images/aboutus.jpg) no-repeat top center;
    background-size: cover;
}

.howitworks .card {
    border: none;
    box-shadow: 0px 0px 6px 6px rgba(183, 181, 181, 0.2);
    ;
    border-radius: 6px;
}

.whatyouget .col-4 {
    background-color: #fff;
}

.poweredby {
    background-color: #fff;
}

.howitworks .feature-icon {
    background-color: #ff571a;
    padding: 30px;
    border-radius: 50%;
}

.howitworks .feature-items li:before {
    content: "✅";
    width: 16px;
    height: 16px;
    padding-right: 10px;
}

.main-text {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Subtle 3-dot pulsing loader */
.loader-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.loader-dots div {
    width: 6px;
    height: 6px;
    background-color: #bbb;
    border-radius: 50%;
    animation: pulse 1.2s infinite ease-in-out;
}

.loader-dots div:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.kpi-label {
    font-size: .675rem;
    font-weight: 500;
    letter-spacing: -.025em;
    color: #64748b;
}

.ul-insights li {
    border: none;
    background: #f8fafc;
    margin: 5px 0px;
    border-radius: 6px !important;
    font-size: .9rem;
    transition: all .5s linear;
}

.ul-insights li:hover {
    background: #eaeaea;
}

.ul-wrap {
    height: 300px;
    overflow: auto;
}

.card h5 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
}

.ul-highlight li {

    border-left: 3px solid #ff571a !important;
    font-size: .8rem;
    padding: 15px;
}

.smart-features .card {
    transition: all .5s linear;
}

.smart-features .card:hover {
    box-shadow: 0px 0px 5px 5px #eaeaea;
    transform: scale(1.05);
}

.original-price {
    font-size: 1.2rem;
    color: red;
    text-decoration: line-through;
}