.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#000000;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ---------- COLOURS ---------- */
:root {
    --tt-green: #bfd93f;
    --tt-dark: #2f2f2f;
    --tt-white: #ffffff;
}

/* base font */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ============ BUTTON (fixed bottom centre) ============ */

.tt-menu-wrapper {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 9999;
}

.tt-menu-toggle {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: #181818;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* small ring around button – yehi bada circle banega */
.tt-menu-toggle::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 4px solid var(--tt-green);
    background: transparent;
    transform-origin: center;
    transform: scale(1);
    transition:
        transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
        background 0.3s ease 0.4s,
        border-width 0.3s ease 0.4s;
    z-index: -1;
}

/* 3 lines icon + X icon */

.tt-menu-icon,
.tt-menu-close {
    position: absolute;
    color: var(--tt-white);
    font-size: 26px;
    line-height: 1;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.tt-menu-icon span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px 0;
    background: var(--tt-white);
}

/* X hidden by default */
.tt-menu-close {
    opacity: 0;
    transform: scale(0.8);
}

/* hover thoda lift */
.tt-menu-toggle:hover {
    transform: translate(-50%, -2px);
}

/* ============ OVERLAY (grey menu screen) ============ */

.tt-menu-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 9998;
}

.tt-menu-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--tt-dark);
    opacity: 0.97;
}

/* menu content */
.tt-menu-inner {
    position: relative;
    text-align: center;
    color: var(--tt-white);
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease 0.25s, transform 0.45s ease 0.25s;
}

.tt-menu-nav {
    font-weight: 700;
    font-size: clamp(26px, 4vw, 38px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 120px;
}

.tt-menu-link {
    display: block;
    color: var(--tt-white);
    text-decoration: none;
    margin: 12px 0;
}

.tt-menu-link::after {
    content: "/";
    margin-left: 4px;
    color: var(--tt-green);
}

.tt-menu-link:hover {
    color: var(--tt-green);
}

/* bottom WALK / TALK + socials */
.tt-menu-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.tt-menu-bottom-text {
    min-width: 80px;
}

.tt-menu-social a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--tt-white);
    font-weight: 700;
    font-size: 16px;
}

.tt-menu-social a:hover {
    color: var(--tt-green);
}

/* --------- STATES (open / animating / closing) --------- */

/* 1) jab circle expand ho raha hai: */
body.tt-menu-opening .tt-menu-toggle::before {
    transform: scale(40);          /* same circle huge */
    background: var(--tt-green);   /* pura green disc */
    border-width: 0;
}

/* 2) circle expand hone ke baad, menu screen active: */
body.tt-menu-open .tt-menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.tt-menu-open .tt-menu-inner {
    opacity: 1;
    transform: translateY(0);
}

/* circle still bada rahe lekin background transparent ho jaye
   taa-ke sirf grey overlay dikhe */
body.tt-menu-open .tt-menu-toggle::before {
    transform: scale(40);
    background: transparent;
    border-width: 0;
}

/* 3) closing ke waqt – circle wapas shrink hota hua */
body.tt-menu-closing .tt-menu-toggle::before {
    transform: scale(1);
    background: var(--tt-green);
    border-width: 4px;
}

/* icons change: */
body.tt-menu-open .tt-menu-icon,
body.tt-menu-opening .tt-menu-icon {
    opacity: 0;
    transform: scale(0.8);
}

body.tt-menu-open .tt-menu-close,
body.tt-menu-opening .tt-menu-close,
body.tt-menu-closing .tt-menu-close {
    opacity: 1;
    transform: scale(1);
}

/* jab bilkul band ho jaye to X hide, 3 lines wapas */
body:not(.tt-menu-open):not(.tt-menu-opening):not(.tt-menu-closing) .tt-menu-close {
    opacity: 0;
    transform: scale(0.8);
}
body:not(.tt-menu-open):not(.tt-menu-opening):not(.tt-menu-closing) .tt-menu-icon {
    opacity: 1;
    transform: scale(1);
}

/* bottom button background */
body.tt-menu-open .tt-menu-toggle,
body.tt-menu-opening .tt-menu-toggle,
body.tt-menu-closing .tt-menu-toggle {
    background: #3b3b3b;
}

/* responsive */
@media (max-width: 767px) {
    .tt-menu-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .tt-menu-wrapper {
        bottom: 24px;
    }

    .tt-menu-toggle {
        width: 56px;
        height: 56px;
    }
}


.thirty-person-title.ng-binding {
    color: black;
    font-size: 28px;
    text-transform: uppercase;
}



.elementor-nav-menu--main .elementor-item {
    color: #1F2020 !important;
    fill: #1F2020 !important;
    opacity: 1 !important;
    visibility: visible !important;
}/* End custom CSS */