* {
    box-sizing: border-box;
    /* Include padding and borders in element width */
}

:root {

    --background-color: #FAF9F6;
    --navbar-menu-active-color: black;
    --navbar-background-color: white;
    --navbar-text-color: #848884;
    --section-background-color: #ece9f2;
    --font-family: "Greycliff",
        -apple-system,
        BlinkMacSystemFont,
        avenir next,
        avenir,
        segoe ui,
        helvetica neue,
        helvetica,
        Cantarell,
        Ubuntu,
        roboto,
        noto,
        arial,
        sans-serif;
    --gradient-color: linear-gradient(#b169ff, #653dbb);

}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

body {
    background-color: var(--background-color);
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;

}

ul,
li,
a,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

a {

    text-decoration: none;
}

.lead {
    font-size: 1.15rem;
    font-weight: 500;
    margin-left: 1.5rem;
    font-family: Greycliff, sans-serif;

}


.nh-menuitem.active {

    color: var(--navbar-menu-active-color);

}





.shoutout-embed {
    display: block;
    transform: translateY(15px);
    margin-top: 0rem;
    transition: 0.5s ease-out
}

.resizable-div {
    width: 50%;
    /* Resize the div relative to the parent (50% of screen width) */
    height: auto;
    /* The height adjusts based on the content */
    padding: 20px;
    margin: 20px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

.download-link-image {
  
    width: 10rem;
    height: auto;
    position: relative;

}


.text-darker {
    color: #222;
    margin: 0px auto;
    display: block;
    font-family: inherit;
    font-weight: 700;
}

.row-top-1 {
    margin-top: 10px;
}

.testimonal-block {
    height: 100%;
}

.section-css {
    background-color: var(--section-background-color);
}

.nh-section-inset {
    border-radius: 0px;
    width: 100%;

    margin: 15px 15px 0 0;

}

.submit-email-form {
    margin-top: 20px;
    width: 80%;

}

.submit-email {

    width: 100%;

}

.nh-hiw-img {
    height: 60;
    width: 60;
}

/* Navbar Styling */

.custom-navbar {
    -webkit-box-shadow: 0 4px 6px -6px #222;
    -moz-box-shadow: 0 4px 6px -6px #222;
    box-shadow: 0 4px 6px -6px #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--navbar-background-color);
    color: var(--navbar-text-color);
    position: static;
    z-index: 1000;
    /* Ensure it stays on top */
    transition: position 0.3s;
}

/* Menu toggle button (hidden on larger screens) */
.custom-menu-toggle {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--navbar-menu-active-color) !important;
    cursor: pointer;
    display: none;
    /* Hidden by default */
}

/* Navigation Links */
.custom-nav-links {
    margin-left: 20px;
    display: flex;
    gap: 1rem;
    list-style: none;
    transition: all 0.3s ease-in-out;
    /* color: #343434; */
}

.custom-nav-links a {
    color: var(--navbar-text-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    font-weight: 500;
    font-family: Quincy, sans-serif;
}

.active-nav-menu {
    color: var(--navbar-menu-active-color) !important;
}

.custom-nav-links a:hover {
    color: var(--navbar-menu-active-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .custom-navbar {
        position: fixed !important;
        /* Fixed navbar for mobile view */
        top: 0;
        left: 0;
        width: 100%;
    }

    .custom-menu-toggle {
        display: block;
        /* Show toggle button */
    }

    .custom-nav-links {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* Adjust based on navbar height */
        left: 0;
        width: 100%;
        background-color: var(--navbar-background-color);
        /* Mobile navbar background */
        padding: 1rem 0;
        border-radius: 0;
        text-align: left;
        margin: 0;
    }

    .custom-nav-links.active {
        display: flex;
        /* Show links when active */
    }

    .custom-nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
        /* Full width for mobile */
    }
}




/* Footer css ---------------------------*/
.footer-container {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-top: 3rem;

}

.footer-download {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    justify-content: center !important;
    justify-content: center !important;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.social-image {
    margin-top: 1rem;
    justify-content: center;
    display: flex;
}

/* .footer-menu a {
    display: inline-block;
    padding: 8px 15px;
} */
/* .footer-menu {
    padding-bottom: 50px;
    border-bottom: 1px solid #f1f1f1;
    text-align: center;
    margin-top: 50px;

} */

/* Footer css ends ---------------------------*/

@media screen and (max-width: 480px) {
    .social-image {
        padding-top: 3rem;
        /* Increase top margin on smaller screens */
    }
}

@media screen and (max-width: 479px) {
    .nh-hiw-step {
        margin: 0 15px 0 15px;
    }
}

@media screen and (max-width: 479px) {
    .nh-bottom-testimonials-wrap {
        padding: 15px;
    }
}

@media screen and (max-width: 479px) {
    .grid-wrapper {
        padding: 15px;
    }
}




/* 
Custom scrollbar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FAF9F6;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-color);
    border-radius: 10px;
}

/* 
Custom scrollbar ends*/


/* custom css of bootstrap */
.custom-container {
    display: flex;
    padding-right: 3rem;
    padding-left: 3rem;
    margin-top: 3rem;
    align-items: center;
    flex-direction: column;
}

.custom-h1 {
    margin-top: 3rem;
    margin-left: 1.5rem;
    font-size: 3.75rem;
    letter-spacing: -.5px;
    line-height: 1.2;
    font-weight: 700;
    font-family: Quincy sans-serif;
}


.social-feedback {
    display: block;
    transform: translateY(15px);
    margin-top: 0rem;
    transition: 0.5s ease-out
}



/* page not found page csss */
.error-class {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;

}

.error-inner-div {

    margin: 2px;
    text-align: center;
    font-size: 30px;
    /* Adjust the font size as needed */
    font-weight: bold;
    /* Optional: makes the text bold */
    background: var(--gradient-color);
    /* Your gradient colors */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.error-p {
    height: 0.7rem;
}

.error-h3 {

    margin: 5px;
}

.error-button {
    background: var(--gradient-color);
    height: 2rem;
    width: 5rem;
    border: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;

}

.error-a {
    color: black;
    font-weight: 500;
}

/* ////---------------//// */


/* Customized animation */


@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(-50%);
        /* Start off-screen to the right */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at normal position */
    }
}

@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(100%);
        /* Start off-screen to the right */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at normal position */
    }
}

@keyframes zoomin {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;

    }
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.animated {
    opacity: 0;
    transition: opacity 0.5s;
}

/* The class added to trigger the animation */
.fade-left-s.in-view {
    animation: fade-left 1s ease-in forwards;
}

.fade-left.in-view {
    animation: fade-left 1s ease-out forwards;
}

.fade-right.in-view {
    animation: fade-left 1s ease-out forwards;
}

.zoom-in.in-view {
    animation: zoomin 1s ease-out forwards;
    transform-origin: center center;
    display: inline-block;
}

.fadeInUp.in-view {
    animation: fadeInUp 1s ease-out forwards;

}