/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   BASE STYLES (Generic + Mobile)
   ========================================================================== */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
    color: white;
    min-height: 100vh;
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

main {
    position: relative
}

:root {
    --container-min: 1200px;
    --container-max: 1600px;
    --primary-gradient: linear-gradient(to bottom, #1f1f50, #3a3a6f);
}

a {
    color: #ffdb15;
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    transform: translateY(-200%);
    background: #ffdb15;
    color: black;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font: 600 0.95rem/1 'Inter', sans-serif;
    text-decoration: none;
    z-index: 3000;
}

.skip-link:focus,
.skip-link:focus-visible {
    transform: translateY(0);
    outline: 3px solid black;
}

#main-content {
    scroll-margin-top: 96px;
}

.main-section {
    position: relative;
    padding: 9rem 1.5rem 2rem 1.5rem;
}

/* ==========================================================================
   HEADER (Mobile-first)
   ========================================================================== */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1.3rem 1rem;
    min-height: 60px;
    max-width: 100vw;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    height: 100%;
    min-height: 44px;
}

.header-logo {
    height: 40px;
    width: auto;
    margin: 0;
}

/* Mobile Navigation */
.header-buttons {
    display: flex;
    gap: clamp(0.2rem, 1vw, 0.5rem);
    flex: 1;
    justify-content: center;
    margin: 0 clamp(0.3rem, 2vw, 1rem);

}

.header-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    color: #ffdb15;
    border: none;
    padding: clamp(0.4rem, 1.5vw, 0.7rem) clamp(0.6rem, 2.5vw, 1.2rem);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    flex: 1;
    text-align: center;
    word-break: break-word;
}

.header-btn:hover {
    background: rgba(62, 73, 137, 1);
    transform: translateY(-1px);
}

.header-btn:active {
    transform: translateY(0);
}

.header-btn.app-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: #00C2CB;
    color: #00151f;
    border: 6px solid white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: none;
    text-align: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15) inset;
}

.header-btn.app-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.header-btn.app-btn:active {
    transform: translateY(0);
}

/* Hamburger (mobile) */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.hamburger-menu span {
    width: 45px;
    height: 4.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Desktop nav hidden by default (mobile-first) */
.desktop-nav {
    display: none;
}

.login-link {
    display: none;
}

.resources-dropdown {
    display: none;
}

/* ==========================================================================
   MOBILE OVERLAY MENU
   ========================================================================== */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, #1f1f50, #3a3a6f);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 4vh, 3rem) 1.5rem;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .35s ease;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.mobile-overlay::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: 260px;
    left: 0px;
    width: 400px;
    height: 400px;
    opacity: 0.15;
}

.mobile-overlay::after {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    bottom: 60px;
    right: 0px;
    width: 400px;
    height: 400px;
    transform: scaleX(-1);
    opacity: 0.15;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.overlay-content {
    width: 100%;
    max-width: min(80%, 400px);
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vh, 2rem);
    position: relative;
    height: fit-content;
    max-height: 85vh;
    justify-content: center;
}

.overlay-content::before {
    content: '';
    position: absolute;
    background: url('../images/birds3.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    top: -260px;
    right: -180px;
    width: 400px;
    height: 400px;
    opacity: 0.05;
}

.overlay-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(0.5rem, 2vh, 1rem);
}

.overlay-logo {
    height: clamp(86px, 6vh, 90px);
    width: auto;
}

.overlay-nav {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2vh, 1.5rem);
}

.overlay-link {
    background: #ffdb15;
    color: black;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 3.5vh, 1.5rem);
    padding: clamp(0.8rem, 2.5vh, 1.4rem) clamp(1.2rem, 4vh, 2rem);
    border: 3px solid white;
    border-radius: 38px;
    text-align: center;
    display: block;
    transition: transform .2s ease;
}

.overlay-link:hover {
    transform: translateY(-2px);
}

.overlay-link.active {
    background: #ffdb15;
    color: #1f1f50;
}

.overlay-login-wrapper {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: clamp(0.5rem, 2vh, 1rem);
}

.overlay-login-wrapper a {
    color: #ffdb15;
    text-decoration: underline;
    font-size: clamp(0.9rem, 2.5vh, 1rem);
}

.overlay-login-wrapper .sep {
    color: #ffdb15;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    bottom: clamp(-4rem, -8vh, -5rem);
    right: 0;
    width: clamp(45px, 8vh, 56px);
    height: clamp(45px, 8vh, 56px);
}

.circle-arrow {
    background: #ffdb15;
    border: 3px solid white;
    border-radius: 50%;
    width: clamp(45px, 8vh, 56px);
    height: clamp(45px, 8vh, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.circle-arrow .arrow {
    display: block;
    transform: rotate(90deg);
    width: clamp(24px, 5vh, 30px);
    height: clamp(24px, 5vh, 30px);
}


/* ==========================================================================
    FOOTER (Generic + Mobile)
    ========================================================================== */

.footer {
    background-color: #1D1D40;
    color: white;
    padding: 2rem 1.5rem 4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    position: relative;
    min-height: 200px;
}

.footer-links,
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-inline-start: 0;
}

.footer-links li {
    list-style: none;
}

@media (max-width:767px) {
    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
        position: relative;
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-columns::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: white;
        transform: translateX(-0.5px);
    }

    .footer-col.account-col {
        display: none;
    }

    .resources-col {
        grid-column: 1;
        grid-row: 1;
    }

    .support-col {
        grid-column: 1;
        grid-row: 2;
    }

    .socials-col {
        grid-column: 2;
        grid-row: 1;
    }

    .legal-col {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-heading {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        color: #ffdb15;
    }

    .footer-links li+li {
        margin-top: 1rem;
    }

    .footer-links a {
        font-size: 1.3rem;
        color: white;
    }
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
    align-self: flex-end;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ==========================================================================
   DESKTOP STYLES (768px and up)
   ========================================================================== */

@media (min-width: 768px) {

    /* Shared page clamps */
    .header-content,
    .footer-columns,
    .footer-bottom {
        max-width: clamp(var(--container-min), 85vw, var(--container-max));
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .why-flok-heading::before {
        display: block;
    }

    /* Header Desktop */
    .header-buttons,
    .hamburger-menu {
        display: none;
    }

    .desktop-nav {
        display: flex;
        gap: 1rem;
        margin-left: auto;
        align-items: center;
    }

    .desktop-nav .menu-group {
        display: flex;
        gap: 0.8rem;
        align-items: center;
    }

    .header-content {
        margin: 0 auto;
        padding: 0 2rem;
    }

    .header-logo {
        height: 60px;
    }

    .nav-btn {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 1rem;
        padding: 0.7rem 1.3rem;
        background: #fff;
        border-radius: 999px;
        color: #000;
        text-decoration: none;
        display: inline-block;
        border: none;
        transition: transform 0.2s ease, background 0.25s ease;
        box-shadow: none;
        position: relative;
    }

    .nav-btn-highlight {
        font-weight: 700;
    }

    .nav-btn-highlight::after {
        content: '.';
        position: absolute;
        pointer-events: none;
        color: white;
        font-size: 1.5rem;

        left: 50%;
        bottom: -25px;
        /* keep your current vertical position */
        transform: translateX(-50%);
        /* true center */

        transition: none;
        /* no independent movement */
    }

    /* Keep hover/focus identical (optional, but clean) */
    .nav-btn-highlight:hover::after,
    .nav-btn-highlight:focus-visible::after {
        transform: translateX(-50%);
    }

    .nav-btn-highlight:hover,
    .nav-btn-highlight:focus-visible {
        transform: none;
    }

    .nav-btn:hover {
        transform: translateY(-5px);
    }

    .nav-btn.cta-app {
        background: #00C2CB;
        color: #00151f;
        font-weight: 700;
        padding: 0.75rem 1.2rem;
        border: 3px solid #fff;
        border-radius: 20px;
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15) inset;
        font-size: 1.2rem;
        text-align: center;
    }

    .nav-btn.cta-app:hover {
        filter: brightness(1.05);
    }

    .resources-dropdown {
        display: block;
    }

    /* Auth links on the far right */
    .auth-links {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin-left: 0.6rem;
        font-weight: 700;
    }

    .auth-links a {
        color: #ffdb15;
        text-decoration: underline;
        font-weight: 400;
    }

    .auth-links .sep {
        opacity: 0.9;
        margin: 0 0.2rem;
    }

    .login-link {
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        color: #ffdb15;
        text-decoration: underline;
        margin-left: 20px;
        display: inline-block;
    }

    /* Resources dropdown behaviour */
    .resources-btn.is-open {
        background: #ffdb15;
        font-weight: 700;
    }

    .resources-dropdown {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 1500;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform .28s ease, opacity .28s ease;
    }

    .resources-dropdown.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .resources-inner {
        background: rgba(0, 0, 0, 0.9);
        padding: 3rem 0;
        position: relative;
        overflow: hidden;
        max-height: 450px;
    }

    .resources-inner,
    .resources-grid {
        margin-left: auto;
        margin-right: auto;
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: center;
    }

    .resources-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
        gap: 3.5rem;
        align-items: start;
    }

    .resources-grid h3 {
        color: #ffdb15;
        font-size: 2rem;
        margin: 0 0 1.25rem 0;
        font-weight: 700;
    }

    .links-col ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .links-col li+li {
        margin-top: 1rem;
    }

    .links-col a {
        color: #fff;
        font-weight: 400;
        font-size: 1.35rem;
    }

    .links-col-highlight {
        font-weight: 900 !important;
        text-decoration-color: #ffdb15
    }

    .image-col {
        display: flex;
        justify-content: center;
    }

    .image-col .fade-wrap {
        position: relative;
        overflow: hidden;
        max-width: 320px;
    }

    .image-col img {
        display: block;
        width: 300px;
        height: auto;
        object-fit: cover;
    }

    .fade-left {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(to right, #000 0%, rgba(29, 29, 64, 0) 60%);
    }

    .dropdown-decor-left,
    .dropdown-decor-bottom {
        position: absolute;
        opacity: .1;
        user-select: none;
        pointer-events: none;
    }

    .dropdown-decor-left {
        left: 0;
        top: 1rem;
        width: 160px;
        height: auto;
    }

    .dropdown-decor-bottom {
        bottom: -6rem;
        width: 160px;
        height: auto;
        transform: rotate(-90deg);
    }


    /* Footer Desktop */
    .footer {
        background-color: #1D1D40;
        padding: 2.5rem 1.5rem 4.5rem;
    }

    .footer-columns {
        max-width: clamp(var(--container-min), 85vw, var(--container-max));
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem 3rem;
        text-align: center;
        align-items: start;
    }

    .footer-divider {
        display: none !important;
    }

    .footer-heading {
        color: #ffdb15;
        font-weight: 700;
        font-size: 1.6rem;
        margin: 0 0 0.8rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li+li {
        margin-top: 0.6rem;
    }

    .footer-links a {
        color: #fff;
        font-weight: 400;
        font-size: 1.1rem;
    }

    .footer-logo {
        height: 48px;
    }
}

@media (max-width: 1030px) {
    #resourcesToggle {
        display: none;
    }
}

.Hospitality {
    text-align: center;
}

.Hospitality h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.Go-To-Industry-Buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 90vw;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
}

.industry-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.industry-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.industry-btn:focus {
    outline: 3px solid #ffdb15;
    outline-offset: 2px;
}

.subheading {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 48px;
}

.undertext {
    font-size: 32px;
    margin: auto;
    margin-top: 60px;
}

.info {
    font-size: 28px;
    margin: auto;
}

hr {
    margin: auto;
    margin-top: 40px;
    margin-bottom: 25px;
}

.FineDining {
    margin: auto;
    text-align: center;
}

.FineDining h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.FineDining-Content {
    display: flex;
    height: fit-content;
    align-items: center;
    gap: 30px;
}

.FineDining-Content ul {
    text-align: left;
}

.FineDining-Content ul li {
    font-size: 28px;
    font-weight: normal;
    margin-top: 40px;
}

.FineDining-Content img {
    height: 100%;
}

.FineDining h1::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 11;
    transform: scaleX(-1);
    right: -20px;
    width: 400px;
    height: 400px;
    opacity: 0.15;
}


.Pubs-Restaurants-CasualDining {
    text-align: center;
}

.Pubs-Restaurants-CasualDining h1 {
    color: #ffdb15;
    font-size: 72px;
}

.PRCD-Content {
    Display: flex;
    height: fit-content;
    align-items: Center;
}

.PRCD-Content ul {
    align-items: center;
    padding-left: 60px;
    text-align: left;
}

.PRCD-Content ul li {
    font-size: 28px;
    font-weight: normal;
    margin-top: 40px;
}

.PRCD-Content img {
    width: 50%;
    margin-top: 2vh
}

.Pubs-Restaurants-CasualDining h1::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 20;
    left: -20px;
    width: 400px;
    height: 400px;
    transform: scaleX(1)translateY(115px);
    opacity: 0.15;
}

.ECH {
    margin: auto;
    text-align: center;
}

.ECH h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.ECH h1::before {
    content: '';
    position: absolute;
    background: url('../images/birds4.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 20;
    right: -13px;
    width: 400px;
    height: 400px;
    transform: scaleX(1)translateY(-50px);
    opacity: 0.6;
}

.ECH-Content {
    display: flex;
    height: fit-content;
    align-items: center;
    gap: 30px;
}

.ECH-Content ul {
    text-align: left;
    padding-left: 60px;
}

.ECH-Content ul li {
    font-size: 28px;
    font-weight: normal;
    margin-top: 40px;
}

.ECH-Content img {
    width: 40%;
    margin-top:3vh;
}

.ICC {
    margin: auto;
    text-align: center;
}

.ICC h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.ICC h1::before {
    content: '';
    position: absolute;
    background: url('../images/dots1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 20;
    left: -65px;
    width: 400px;
    height: 400px;
    transform: scaleX(1)translateY(450px);
    opacity: 0.15;
}

.ICC-Content {
    width: 80%;
    Display: flex;
    margin: auto;
    height: fit-content;
    align-items: center;
}

.ICC-Content ul {
    align-items: center;
    padding-left: 120px;
    text-align: left;
}

.ICC-Content ul li {
    font-size: 28px;
    font-weight: normal;
    margin-top: 40px;
}

.ICC-Content img {
    height: 100%;
    margin-top:3vh;
}

.TSH {
    margin: auto;
    text-align: center;
}

.TSH h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.TSH h1::before {
    content: '';
    position: absolute;
    background: url('../images/birds1.webp') no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 20;
    top: unset;
    left: 100px;
    width: 1200px;
    height: 1200px;
    transform: scaleX(1)translateY(550px);
    opacity: 0.03;
}


.TSH ul {
    text-align: left;
    width:66%;
    margin:auto;
}

.TSH ul li {
    font-size: 32px;
    font-weight: normal;
}

.TSH .undertext {
    margin-bottom: 35px;
}

.TSH-LIST-2 {
    margin-bottom: 150px;
}


.why-flok {
    margin: auto;
    text-align: center;
}

.why-flok h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.why-flok-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.why-flok-content ul {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.why-flok-content ul li::before {
    content: "✓";
    color: #ffdb15;
    font-weight: bold;
    margin-right: 10px;
}


.why-flok-content ul li {
    font-size: 30px;
    font-weight: normal;
    margin-top: 50px;
}

.why-flok-content ul li b {
    padding-left: 5px;
}

.why-flok-content img {
    width: 100%;
    max-width: 450px;
    align-self: center;
    margin-top:3vh;
}

.readyfor {
    margin: auto;
    text-align: center;
}

.readyfor h1 {
    margin: auto;
    color: #ffdb15;
    font-size: 72px;
}

.signup-wrapper {
    text-align: center;
    margin-top: 50px;
}

.signup-btn {
    background: #ffdb15;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    padding: 18px 55px;
    border: 2px solid white;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
}

.signup-btn a {
    color: black !important;
    text-decoration: none;
}

#special-button{
    background:#ffdb15;
    color:#000;
}

li::marker{
    color:#ffdb15;
}

@media(max-width:767px) {

    ul,
    li {
        width: unset !important;
    }

    .main-section {
        padding: 0px;
        padding-top: 100px;
        width: 90vw;
        margin: auto;
    }

    .Hospitality h1 {
        font-size: 38px;
    }

    .Go-To-Industry-Buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        width: unset;
        margin: 2rem auto 2rem;
        padding: unset;
    }

    .industry-btn {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        padding: 0.75rem 0.75rem;
        background: transparent;
        color: white;
        border: 3px solid white;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .industry-btn:hover {
        background: white;
        color: black;
        transform: translateY(-2px);
    }

    .industry-btn:focus {
        outline: 3px solid #ffdb15;
        outline-offset: 2px;
    }

    .subheading {
        font-size: 18px;
    }

    .info {
        font-size: 19px;
    }

    .FineDining {
        display: flex;
        flex-direction: column;
        align-content: center;
    }

    .FineDining h1 {
        font-size: 34px;
        order: 0;
    }

    .FineDining h1::before {
        top: unset;
        left: 150;
        transform: scaleX(-1)translateY(940px);
    }

    .FineDining-Content {
        display: contents;
    }

    .undertext {
        width: 95%;
        order: 1;
        margin-top: 25px;
        font-size: 24px;
    }

    br {
        display: none;
    }

    .FineDining-Content img {
        margin-top: 40px;
        width: fit-content;
        max-width: 400px;
        order: 2;
        align-self: center;
    }

    .FineDining-Content ul {
        order: 3;
        text-align: left;
        padding-left: 40px;
    }

    .FineDining-Content ul li {
        font-size: 24px;
        order: 4;
    }

    #undertext2 {
        order: 5 !important;
    }

    .Pubs-Restaurants-CasualDining {
        display: flex;
        flex-direction: column;
    }

    .Pubs-Restaurants-CasualDining h1 {
        font-size: 34px;
        order: 0;
    }

    .Pubs-Restaurants-CasualDining h1::before {
        top: unset;
        transform: translateY(600px);
    }

    .PRCD-Content {
        display: contents;
    }

    .PRCD-Content img {
        margin-top: 40px;
        width: fit-content;
        max-width: 400px;
        align-self: center;
        order: 2;
    }

    .PRCD-Content ul {
        order: 3;
        text-align: left;
        padding-left: 40px;
    }

    .PRCD-Content ul li {
        font-size: 24px;
        order: 4;
    }

    .ECH {
        display: flex;
        flex-direction: column;
    }

    .ECH h1 {
        font-size: 34px;
        order: 0;
    }

    .ECH h1::before {
        transform: TranslateY(1381px)TranslateX(-6px);
        width: 400px;
        opacity: 0.2;
    }

    .ECH-Content {
        display: contents;
    }

    .ECH-Content img {
        margin-top: 40px;
        width: fit-content;
        max-width: 400px;
        order: 2;
        align-self: center;

    }

    .ECH-Content ul {
        order: 3;
        text-align: left;
        padding-left: 40px;
    }

    .ECH-Content ul li {
        font-size: 24px;
        order: 4;
    }

    .ICC {
        width: 95%;
        display: flex;
        flex-direction: column;
    }

    .ICC h1 {
        font-size: 34px;
        order: 0;
    }

    .ICC h1::before {
        top: unset;
        transform: translateY(1090px);
    }

    .ICC-Content {
        display: contents;
    }

    .ICC-Content img {
        margin-top: 40px;
        width: fit-content;
        max-width: 400px;
        order: 2;
        align-self: center;
    }

    .ICC-Content ul {
        order: 3;
        text-align: left;
        padding-left: 40px;
    }

    .ICC-Content ul li {
        font-size: 24px;
        order: 4;
    }

    .TSH {
        display: contents;
        width: 90vw;
    }

    .TSH h1 {
        font-size: 34px;
    }

    .TSH h1::before {
        content: '';
        position: absolute;
        background: url('../images/dots1.webp') no-repeat;
        background-size: contain;
        pointer-events: none;
        z-index: 11;

        left: 300px;
        transform: scaleX(-1);
        width: 45vw;
        height: 45vh;
        max-width: 45vw;
        max-height: 45vh;
        opacity: 0.2;
        top: 7280px;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .TSH ul {
        padding-left: 40px;
        width:66%;
        margin:auto;
    }

    .TSH ul li {
        width: 84vw;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .TSH-LIST-2 {
        margin-bottom: 25px;
    }

    .why-flok {
        display: flex;
        width: 90vw;
        flex-direction: column;
    }

    .why-flok h1 {
        font-size: 34px;
        order: 0;
    }

    .why-flok h1::before {
        content: '';
        position: absolute;
        background: url('../images/birds1.webp') no-repeat;
        background-size: contain;
        pointer-events: none;
        z-index: 12;
        left: 0px;
        width: 660px;
        height: 660px;
        transform: scaleX(1);
        transform: translateY(900px);
        opacity: 0.1;
    }

    .why-flok-content {

        display: contents;
    }

    .why-flok-content img {
        order: 2;
        width: fit-content;
        max-width: 400px;
        margin-left: 0;
        margin-top: 20px;
        align-self: center;
    }

    .why-flok-content ul {
        width: 85%;
        order: 3;
        text-align: left;
    }

    .why-flok-content ul li {
        width: 100%;
        font-size: 24px;
        order: 4;
    }

    .readyfor {
        display: flex;
        flex-direction: column;
    }

    .readyfor h1 {
        font-size: 34px;
        width: 100%;
        max-width: 100%;
    }
}