body {
    font-family: 'Cabin', sans-serif;
    color: whitesmoke;
}

html {
    scroll-behavior: smooth;
}

/* Placeholder text colour */
/* Change the placeholder colour for majority of browsers */
::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(94, 188, 156) !important;
    /* Firefox */
    opacity: 1;
}

::-ms-input-placeholder,
:-ms-input-placeholder {
    /* Microsoft Edge + IE 10/11 */
    color: rgb(94, 188, 156) !important;
}

.navbar {
    height: 100px;
    /* background-color: rgba(248, 249, 250, 0.08) !important; */
}

.home-head {
    height: calc(100vh - 100px);
    margin-top: 100px; /* Add margin equal to navbar height */
    padding-top: 20px; /* You can adjust this value for spacing */
}

.signup-head {
    min-height: calc(100vh - 100px);
    margin-top: 100px; /* Add margin equal to navbar height */
    padding-top: 20px;
}


.about-head {
    min-height: calc(100vh - 100px);
}

/* .uses-head {
    min-height: calc(50vh - 28.5px);
} */

.pricing-head {
    min-height: calc(50vh - 50px);
    background: repeating-linear-gradient(45deg,
            #ffffff,
            #e7e7e7 10px);
}

.contact-head {
    min-height: calc(50vh - 28.5px);
    background: rgb(65, 157, 127);
    background: linear-gradient(175deg, rgb(43, 115, 91) 0%,  rgb(65, 157, 127) 10% 90%, rgb(43, 115, 91) 100%);
}

.footer {
    min-height: 200px;
}

#message-input {
    height: 210px;
    resize: none;
}

.form-control {
    color: black;
}

.form-control:focus {
    color: black;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 99;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    height: 50px;
    width: 50px;
    margin: 0;
    padding: 0;
    border: 1px solid white;
    background-color: rgb(94, 188, 156);
}

#c {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    padding: 0;
    margin: 0;
}

.header-container {
    display: flex;
    opacity: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-container h1 {
    font-size: 128px;
}

.header-container p {
    font-size: 32px;
}

.uses-head {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .header-container h1 {
        font-size: 96px;
    }

    .header-container p {
        font-size: 24px;
    }

    .send-btn-block {
        justify-content: end;
    }

    .send-btn {
        width: 75% !important;
    }

    .card-col {
        margin-bottom: 1rem;
    }

    .suitsYou {
        margin-bottom: 2rem !important;
    }

    #card1 {
        margin-top: 2rem;
    }

    #nessoMainLogo {
        height: 35px;
    }

    #nessoLogoTop {
        height: 20px;
    }

    .tac, .brands {
        text-align: start !important;
    }

    .brands {
        margin-top: 1rem;
    }

    .tacdiv {
        justify-content: start !important;
    }

    .bottomfoot {
        align-items: start !important;
    }

    .uses-head {
        padding-bottom: 0 !important;
    } 

    .options-head, .headlines-head {
        padding-top: 0 !important;
    }
    
}

/* CSS style to align text */
.list-group-item {
    display: flex;
    justify-content: space-between;
}

/* Optional: Add some margin between items */
.list-group-item:not(:last-child) {
    margin-bottom: 5px;
}

.contactBtn {
    color: rgb(65, 157, 127) !important;
}

.bigger-text {
    font-size: 20px;
}

.upper-icon {
    position: absolute;
    top: 15px;
    right: 5px;
}

.centered-content {
    justify-content: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.small-button {
    padding: 0.25rem 1rem;
    font-size: 0.875rem; 
}

.noStyle {
    text-decoration: none;
}

/* typing animation */

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: .15em solid white transparent;  /* Adjust cursor size here */
    white-space: nowrap;
}

.typing-text.animate {
    animation: 
        typing 4000ms steps(44, end) forwards, 
        blink-caret 1s step-end 4s, /* This will start blinking after typing is done */
        hide-cursor 0.5s 5.5s forwards; /* This will hide the cursor 1.5s after blinking starts */
}

@keyframes typing {
    0% { width: 0ch; }
    50% { width: 17.5ch; } /* roughly the length of "revolutionize your workflow." */
    60% { width: 17.5ch; } /* delay before typing the next part */
    100% { width: 29ch; } /* the length of the full text */
}

@keyframes blink-caret {
    0%, 100% { border-color: white; }
    50% { border-color: transparent; }
}

