﻿
/* =========================================================
   TBETHSHA TOP UTILITY BAR
========================================================= */

.tb-topbar {

    width: 100%;

    min-height: 38px;

    background: #06162f;

    border-bottom: 1px solid rgba(255,255,255,.08);

    color: #a9bdd5;

    font-family: "Roboto", sans-serif;
}


/* =========================================================
   CONTAINER
========================================================= */

.tb-topbar-container {

    width: 92%;

    max-width: 1380px;

    min-height: 38px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.tb-topbar-left {

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;
}


/* =========================================================
   TOPBAR ITEM
========================================================= */

.tb-topbar-item {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #f9f9fa;

    text-decoration: none;

    font-size: 10.5px;

    font-weight: bold;

    white-space: nowrap;

    transition:
        color .25s ease;
}


.tb-topbar-item:hover {

    color: #ffffff;
}


/* =========================================================
   ICON
========================================================= */

.tb-topbar-icon {

    width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(18,105,232,.14);

    color: #4da0ff;

    font-size: 9px;

    transition:
        background .25s ease,
        color .25s ease;
}


.tb-topbar-item:hover .tb-topbar-icon {

    background: #1269e8;

    color: #ffffff;
}


/* =========================================================
   DIVIDER
========================================================= */

.tb-topbar-divider {

    width: 1px;

    height: 14px;

    background: rgba(255,255,255,.13);

    flex-shrink: 0;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.tb-topbar-right {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 15px;

    min-width: 0;
}


/* =========================================================
   COMPANY TAG
========================================================= */

.tb-topbar-tag {

    color: #f9f9fa;

    font-size: 9.5px;

    font-weight: bold;

    letter-spacing: .2px;

    white-space: nowrap;
}


/* =========================================================
   LINKEDIN
========================================================= */

.tb-topbar-social {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 5px;

    background: rgba(18,105,232,.08);

    color: #8ebfff;

    text-decoration: none;

    font-size: 11px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.tb-topbar-social:hover {

    background: #1269e8;

    border-color: #1269e8;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .tb-topbar-container {

        width: 94%;

        gap: 12px;
    }

    .tb-topbar-left {

        gap: 10px;
    }

    .tb-topbar-item {

        font-size: 10px;
    }

    .tb-topbar-tag {

        display: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-topbar {

        min-height: 36px;

        height: 36px;
    }


    .tb-topbar-container {

        width: 92%;

        min-height: 36px;

        justify-content: space-between;
    }


    /* Hide less important information */

    .tb-topbar-left {

        gap: 0;
    }


    .tb-topbar-left
    .tb-topbar-divider {

        display: none;
    }


    /* Hide location on mobile */

    .tb-location {

        display: none;
    }


    /* Email hidden */

    .tb-topbar-left
    .tb-topbar-item:nth-child(3) {

        display: none;
    }


    /* Phone */

    .tb-topbar-item {

        font-size: 10px;

        gap: 6px;
    }


    .tb-topbar-icon {

        width: 21px;

        height: 21px;

        font-size: 8px;
    }


    /* Right side */

    .tb-topbar-right {

        gap: 8px;
    }


    .tb-topbar-social {

        width: 23px;

        height: 23px;

        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-topbar {

        height: 34px;

        min-height: 34px;
    }


    .tb-topbar-container {

        min-height: 34px;

        width: 90%;
    }


    .tb-topbar-item {

        font-size: 9px;
    }


    .tb-topbar-icon {

        width: 19px;

        height: 19px;

        font-size: 7px;
    }


    .tb-topbar-social {

        width: 21px;

        height: 21px;

        font-size: 9px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .tb-topbar-item span:last-child {

        font-size: 8.5px;
    }
}

/* =========================================================
   TBETHSHA PROFESSIONAL HEADER
========================================================= */

.tb-header {
    width: 100%;
    height: 82px;

    background:#040d30;

    position: sticky;
    top: 0;
    z-index: 9999;

    /*border-bottom: 1px solid #e8edf5;*/

    box-shadow: 0 3px 18px rgba(12, 39, 78, 0.06);
}

.tb-nav-container {
    width: 92%;
    max-width: 1380px;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.tb-logo {
    display: flex;
    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.tb-logo img {
    width: 190px;
    height: auto;

    display: block;
}


/* =========================================================
   NAVIGATION
========================================================= */

.tb-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    height: 100%;
}

.tb-nav-link {
    position: relative;

    height: 100%;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* NORMAL TEXT */
    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.35px;

    white-space: nowrap;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


/* Hover */

.tb-nav-link:hover {
    color: #1269e8;
}


/* Active / Hover bottom line */

.tb-nav-link::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;

    bottom: 0;

    height: 3px;

    background: #1269e8;

    border-radius: 3px 3px 0 0;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.25s ease;
}

.tb-nav-link:hover::after,
.tb-nav-link.active::after {
    transform: scaleX(1);
}

.tb-nav-link.active {
    color: #1269e8;
}


/* =========================================================
   SERVICES
========================================================= */

.tb-nav-dropdown {
    position: relative;

    height: 100%;
}

.tb-services-label {
    cursor: pointer;

    gap: 7px;
}

.tb-arrow {
    font-size: 14px;
    line-height: 1;

    color: #52657f;

    transition: transform 0.25s ease;
}


/* =========================================================
   SERVICES DROPDOWN
========================================================= */

.tb-dropdown-menu {
    position: absolute;

    top: calc(100% + 7px);
    left: 50%;

    width: 340px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid #e4ebf4;

    border-radius: 12px;

    transform:
        translateX(-50%)
        translateY(10px);

    opacity: 0;
    visibility: hidden;

    box-shadow:
        0 20px 50px rgba(16, 47, 88, 0.13),
        0 5px 18px rgba(16, 47, 88, 0.06);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* Dropdown pointer */

.tb-dropdown-menu::before {
    content: "";

    position: absolute;

    top: -6px;
    left: 50%;

    width: 11px;
    height: 11px;

    background: #ffffff;

    border-left: 1px solid #e4ebf4;
    border-top: 1px solid #e4ebf4;

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* Desktop hover */

@media (min-width: 992px) {

    .tb-nav-dropdown:hover .tb-dropdown-menu {

        opacity: 1;

        visibility: visible;

        transform:
            translateX(-50%)
            translateY(0);
    }

    .tb-nav-dropdown:hover .tb-arrow {
        transform: rotate(180deg);

        color: #1269e8;
    }
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.tb-dropdown-menu a {

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px;

    border-radius: 8px;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.tb-dropdown-menu a:hover {

    background: #f4f8ff;

    transform: translateX(3px);
}


.tb-dropdown-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: #1269e8;

    background: #edf5ff;

    font-size: 17px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.tb-dropdown-menu a:hover .tb-dropdown-icon {

    background: #1269e8;

    color: #ffffff;
}


.tb-dropdown-menu strong {

    display: block;

    margin-bottom: 3px;

    color: #14294a;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;
}


.tb-dropdown-menu small {

    display: block;

    color: #718096;

    font-family: "Roboto", sans-serif;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   HEADER LET'S TALK
========================================================= */

.tb-header-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 116px;

    padding: 12px 20px;

    border-radius: 6px;

    background: #1269e8;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.4px;

    box-shadow:
        0 7px 18px rgba(18, 105, 232, 0.20);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.tb-header-btn:hover {

    background: #0757ca;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(18, 105, 232, 0.30);
}

.tb-header-btn i {
    font-size: 13px;
}


/* =========================================================
   MOBILE CONTROLS
========================================================= */

.tb-menu-checkbox,
.tb-dropdown-checkbox,
.tb-menu-btn,
.tb-mobile-cta {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .tb-nav-container {
        width: 94%;
    }

    .tb-logo img {
        width: 170px;
    }

    .tb-nav-link {
        padding: 0 11px;

        font-size: 11px;
    }

    .tb-nav-link::after {
        left: 11px;
        right: 11px;
    }

    .tb-header-btn {
        min-width: 105px;

        padding: 11px 15px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

/* =========================================================
   TBETHSHA MOBILE NAVIGATION
   PROFESSIONAL + ICON BASED UI
========================================================= */

@media (max-width: 991px) {

    /* =====================================================
       HEADER
    ===================================================== */

    .tb-header {
        height: 72px;
    }

    .tb-nav-container {
        width: 92%;
    }

    .tb-logo img {
        width: 165px;
    }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .tb-menu-btn {

        width: 42px;
        height: 42px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 5px;

        cursor: pointer;

        border-radius: 9px;

        background: #edf5ff;

        border: 1px solid #dceaff;

        transition: all 0.3s ease;
    }

    .tb-menu-btn:hover {
        background: #1269e8;
    }

    .tb-menu-btn span {

        width: 20px;
        height: 2px;

        background: #1269e8;

        border-radius: 5px;

        transition: all 0.3s ease;
    }

    .tb-menu-btn:hover span {
        background: #ffffff;
    }


    /* =====================================================
       MOBILE NAVIGATION PANEL
    ===================================================== */

    .tb-navigation {

        position: absolute;

        top: 72px;
        left: 0;

        width: 100%;

        height: auto;

        padding: 10px 5% 20px;

        background: #ffffff;

        border-top: 1px solid #e8eef6;

        box-shadow:
            0 18px 40px rgba(12, 42, 82, 0.13);

        display: block;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-12px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }


    /* OPEN MENU */

    .tb-menu-checkbox:checked ~ .tb-navigation {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    /* =====================================================
       HAMBURGER ANIMATION
    ===================================================== */

    .tb-menu-checkbox:checked
    + .tb-menu-btn {

        background: #1269e8;

        border-color: #1269e8;
    }

    .tb-menu-checkbox:checked
    + .tb-menu-btn span:nth-child(1) {

        background: #ffffff;

        transform:
            translateY(7px)
            rotate(45deg);
    }

    .tb-menu-checkbox:checked
    + .tb-menu-btn span:nth-child(2) {

        opacity: 0;
    }

    .tb-menu-checkbox:checked
    + .tb-menu-btn span:nth-child(3) {

        background: #ffffff;

        transform:
            translateY(-7px)
            rotate(-45deg);
    }


    /* =====================================================
       NAVIGATION LINKS
    ===================================================== */

    .tb-nav-link {

        width: 100%;

        min-height: 54px;

        height: auto;

        padding: 0 8px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 12px;

        color: #162b4d;

        background: #ffffff;

        border-bottom: 1px solid #edf1f6;

        font-family: "Poppins", sans-serif;

        font-size: 12px;

        font-weight: 600;

        letter-spacing: 0.25px;

        transition:
            color 0.25s ease,
            background 0.25s ease,
            padding-left 0.25s ease;
    }


    /* Remove desktop line */

    .tb-nav-link::after {
        display: none;
    }


    /* Hover */

    .tb-nav-link:hover {

        color: #1269e8;

        background: #f5f9ff;

        padding-left: 12px;
    }


    /* Active */

    .tb-nav-link.active {

        color: #1269e8;

        background: #f5f9ff;
    }


    /* =====================================================
       PAGE ICONS
       
       Uses Font Awesome icons through CSS.
    ===================================================== */

    .tb-nav-link::before {

        width: 34px;
        height: 34px;

        flex-shrink: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 8px;

        background: #edf5ff;

        color: #1269e8;

        font-family: FontAwesome;

        font-size: 14px;

        transition:
            background 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
    }


    /* HOME */

    .tb-navigation > .tb-nav-link:nth-child(1)::before {

        content: "\f015";
    }


    /* ABOUT */

    .tb-navigation > .tb-nav-link:nth-child(2)::before {

        content: "\f2bd";
    }


    /* INDUSTRIES */

    .tb-navigation > .tb-nav-link:nth-child(4)::before {

        content: "\f1ad";
    }


    /* CONTACT */

    .tb-navigation > .tb-nav-link:nth-child(5)::before {

        content: "\f0e0";
    }


    /* Hover icon */

    .tb-nav-link:hover::before {

        background: #1269e8;

        color: #ffffff;

        transform: translateX(2px);
    }


    /* Active icon */

    .tb-nav-link.active::before {

        background: #1269e8;

        color: #ffffff;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .tb-nav-dropdown {

        height: auto;

        width: 100%;
    }


    .tb-services-label {

        width: 100%;

        min-height: 54px;

        justify-content: space-between;

        cursor: pointer;

        color: #162b4d;

        background: #ffffff;
    }


    /* Services icon */

    .tb-services-label::before {

        content: "\f085";

        width: 34px;
        height: 34px;

        flex-shrink: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 8px;

        background: #edf5ff;

        color: #1269e8;

        font-family: FontAwesome;

        font-size: 14px;

        transition:
            background 0.25s ease,
            color 0.25s ease;
    }


    /* Services label content arrangement */

    .tb-services-label {

        display: flex;

        align-items: center;

        gap: 12px;
    }


    /* Arrow */

    .tb-arrow {

        width: 30px;
        height: 30px;

        margin-left: auto;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 7px;

        background: #f1f5fa;

        color: #60738e;

        font-size: 14px;

        transition:
            transform 0.3s ease,
            background 0.3s ease,
            color 0.3s ease;
    }


    /* Services hover */

    .tb-services-label:hover {

        color: #1269e8;

        background: #f5f9ff;
    }

    .tb-services-label:hover::before {

        background: #1269e8;

        color: #ffffff;
    }


    /* Services opened */

    .tb-dropdown-checkbox:checked
    + .tb-services-label {

        color: #1269e8;

        background: #f5f9ff;
    }


    .tb-dropdown-checkbox:checked
    + .tb-services-label::before {

        background: #1269e8;

        color: #ffffff;
    }


    .tb-dropdown-checkbox:checked
    + .tb-services-label
    .tb-arrow {

        transform: rotate(180deg);

        background: #1269e8;

        color: #ffffff;
    }


    /* =====================================================
       SERVICES DROPDOWN
    ===================================================== */

    .tb-dropdown-menu {

        position: static;

        width: 100%;

        display: none;

        padding: 6px 0 8px 46px;

        background: #f8faff;

        border: 0;

        border-radius: 0;

        box-shadow: none;

        transform: none;

        opacity: 1;

        visibility: visible;
    }


    .tb-dropdown-menu::before {
        display: none;
    }


    /* Open */

    .tb-dropdown-checkbox:checked
    ~ .tb-dropdown-menu {

        display: block;
    }


    /* =====================================================
       SERVICE ITEMS
    ===================================================== */

    .tb-dropdown-menu a {

        min-height: 52px;

        padding: 7px 9px;

        display: flex;

        align-items: center;

        gap: 10px;

        border-radius: 8px;

        border-bottom: 1px solid #e8eef6;

        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }


    .tb-dropdown-menu a:last-child {
        border-bottom: 0;
    }


    .tb-dropdown-menu a:hover {

        background: #edf5ff;

        transform: translateX(2px);
    }


    /* Service icon */

    .tb-dropdown-icon {

        width: 34px;
        height: 34px;

        flex-shrink: 0;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 8px;

        background: #ffffff;

        color: #1269e8;

        border: 1px solid #dceaff;

        font-size: 14px;

        transition:
            background 0.25s ease,
            color 0.25s ease;
    }


    .tb-dropdown-menu a:hover
    .tb-dropdown-icon {

        background: #1269e8;

        color: #ffffff;
    }


    /* Service title */

    .tb-dropdown-menu strong {

        display: block;

        margin-bottom: 2px;

        color: #14294a;

        font-family: "Poppins", sans-serif;

        font-size: 11px;

        font-weight: 600;
    }


    /* Service description */

    .tb-dropdown-menu small {

        display: block;

        color: #718096;

        font-family: "Roboto", sans-serif;

        font-size: 9.5px;

        line-height: 1.4;
    }


    /* =====================================================
       MOBILE CTA
    ===================================================== */

    .tb-mobile-cta {

        margin-top: 14px;

        height: 46px;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 9px;

        border-radius: 7px;

        background:
            linear-gradient(
                135deg,
                #1269e8,
                #0757ca
            );

        color: #ffffff;

        text-decoration: none;

        font-family: "Poppins", sans-serif;

        font-size: 11px;

        font-weight: 600;

        letter-spacing: .4px;

        box-shadow:
            0 7px 18px rgba(18,105,232,.20);

        transition:
            transform .25s ease,
            box-shadow .25s ease;
    }


    .tb-mobile-cta:hover {

        color: #ffffff;

        transform: translateY(-1px);

        box-shadow:
            0 10px 24px rgba(18,105,232,.28);
    }


    /* =====================================================
       HIDE DESKTOP CTA
    ===================================================== */

    .tb-header-btn {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-header {
        height: 68px;
    }


    .tb-navigation {
        top: 68px;

        padding:
            8px 5%
            16px;
    }


    .tb-logo img {
        width: 145px;
    }


    .tb-menu-btn {

        width: 40px;
        height: 40px;
    }


    .tb-nav-link {

        min-height: 52px;

        font-size: 11.5px;
    }


    .tb-nav-link::before,
    .tb-services-label::before {

        width: 32px;
        height: 32px;

        font-size: 13px;
    }


    .tb-dropdown-menu {

        padding-left: 43px;
    }


    .tb-dropdown-menu a {

        min-height: 49px;
    }


    .tb-dropdown-icon {

        width: 32px;
        height: 32px;

        font-size: 13px;
    }


    .tb-dropdown-menu strong {
        font-size: 10.5px;
    }


    .tb-dropdown-menu small {
        font-size: 9px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .tb-logo img {
        width: 135px;
    }


    .tb-navigation {
        padding-left: 4%;
        padding-right: 4%;
    }


    .tb-nav-link {
        min-height: 50px;
    }


    .tb-dropdown-menu {
        padding-left: 40px;
    }


    .tb-dropdown-menu small {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-header {
        height: 68px;
    }

    .tb-navigation {
        top: 68px;
    }

    .tb-logo img {
        width: 145px;
    }

    .tb-menu-btn {

        width: 40px;
        height: 40px;
    }
}
/* =========================================================
   TBETHSHA PROFESSIONAL IT FOOTER
========================================================= */

.tb-footer {

    width: 100%;

    font-family: "Poppins", sans-serif;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   COMMON CONTAINER
========================================================= */

.tb-footer-container {

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   FOOTER CTA
========================================================= */

.tb-footer-cta {

    position: relative;

    overflow: hidden;

    padding: 34px 0;

    background:
        linear-gradient(
            105deg,
            #071b3b 0%,
            #0a3473 55%,
            #1269e8 100%
        );
}


/* decorative circle */

.tb-footer-cta::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -130px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 50px rgba(255,255,255,.025),
        0 0 0 100px rgba(255,255,255,.015);

    pointer-events: none;
}


.tb-footer-cta::after {

    content: "";

    position: absolute;

    width: 260px;
    height: 150px;

    left: 40%;
    bottom: -100px;

    background: rgba(71,157,255,.14);

    border-radius: 50%;

    filter: blur(60px);

    pointer-events: none;
}


.tb-footer-cta .tb-footer-container {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.tb-footer-cta-content {

    max-width: 800px;
}


.tb-footer-eyebrow {

    display: block;

    margin-bottom: 7px;

    color: #7fc0ff;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.tb-footer-cta h2 {

    margin: 0 0 7px;

    color: #ffffff;

    font-size: clamp(25px, 3vw, 37px);

    line-height: 1.2;

    font-weight: 600;
}


.tb-footer-cta h2 span {

    color: #54a8ff;
}


.tb-footer-cta p {

    margin: 0;

    color: rgba(255,255,255,.72);

    font-family: "Roboto", sans-serif;

    font-size: 12.5px;

    line-height: 1.6;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.tb-footer-cta-action {

    flex-shrink: 0;
}


.tb-footer-cta-btn {

    min-width: 150px;

    padding: 13px 21px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    background: #ffffff;

    color: #0b4fa8;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .4px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.15);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.tb-footer-cta-btn i {

    transition:
        transform .25s ease;
}


.tb-footer-cta-btn:hover {

    background: #edf6ff;

    color: #0757ca;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.20);
}


.tb-footer-cta-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.tb-footer-main {

    background: #06162f;

    padding: 58px 0 48px;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}


.tb-footer-grid {

    display: grid;

    grid-template-columns:
        1.8fr
        .9fr
        1.15fr
        1.45fr;

    gap: 50px;
}


/* =========================================================
   BRAND
========================================================= */

.tb-footer-logo {

    display: inline-block;

    margin-bottom: 18px;
}


.tb-footer-logo img {

    display: block;

    width: 190px;

    height: auto;
}


.tb-footer-brand p {

    max-width: 390px;

    margin: 0;

    color: #8da2bd;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CANADIAN BADGE
========================================================= */

.tb-footer-badge {

    display: flex;

    align-items: center;

    gap: 9px;

    max-width: 270px;

    margin-top: 20px;

    color: #91a7c1;

    font-family: "Roboto", sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


.tb-footer-badge-icon {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(18,105,232,.12);

    color: #4da1ff;

    font-size: 11px;
}


/* =========================================================
   SOCIAL
========================================================= */

.tb-footer-social {

    display: flex;

    gap: 8px;

    margin-top: 20px;
}


.tb-social-link {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 7px;

    background: rgba(255,255,255,.02);

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.tb-social-link:hover {

    background: #1269e8;

    border-color: #1269e8;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.tb-footer-column h3 {

    margin: 3px 0 21px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.3px;
}


.tb-footer-column h3::after {

    content: "";

    display: block;

    width: 26px;

    height: 2px;

    margin-top: 8px;

    background: #1269e8;

    border-radius: 2px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.tb-footer-column ul {

    padding: 0;

    margin: 0;

    list-style: none;
}


.tb-footer-column li {

    margin-bottom: 11px;
}


.tb-footer-column li a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #8da2bd;

    text-decoration: none;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.tb-footer-column li a i {

    color: #3f91ed;

    font-size: 9px;

    transition:
        transform .25s ease;
}


.tb-footer-column li a:hover {

    color: #ffffff;

    transform: translateX(3px);
}


.tb-footer-column li a:hover i {

    transform: translateX(2px);
}


/* =========================================================
   CONTACT
========================================================= */

.tb-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;

    color: #ffffff;

    text-decoration: none;
}


.tb-contact-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(18,105,232,.12);

    color: #4da1ff;

    font-size: 11px;

    transition:
        background .25s ease,
        color .25s ease;
}


.tb-contact-item:hover .tb-contact-icon {

    background: #1269e8;

    color: #ffffff;
}


.tb-contact-content small {

    display: block;

    margin-bottom: 3px;

    color: #5f7694;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}


.tb-contact-content strong {

    display: block;

    color: #d8e4f3;

    font-family: "Roboto", sans-serif;

    font-size: 11.5px;

    font-weight: 400;

    line-height: 1.6;
}


.tb-contact-item:hover
.tb-contact-content strong {

    color: #ffffff;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.tb-footer-bottom {

    background: #041126;

    padding: 17px 0;
}


.tb-footer-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.tb-footer-bottom p {

    margin: 0;

    color: #5e7593;

    font-family: "Roboto", sans-serif;

    font-size: 14px;
}


.tb-footer-bottom p strong {

    color: #9eb2ca;

    font-weight: 500;
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.tb-footer-links {

    display: flex;

    align-items: center;

    gap: 11px;
}


.tb-footer-links a {

    color: #7187a2;

    text-decoration: none;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    transition:
        color .25s ease;
}


.tb-footer-links a:hover {

    color: #ffffff;
}


.tb-footer-links span {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background: #38516f;
}


/* =========================================================
   CANADA
========================================================= */

.tb-footer-canada {

    display: flex;

    align-items: center;

    gap: 6px;

    color: #7187a2;

    font-family: "Roboto", sans-serif;

    font-size: 9.5px;

    white-space: nowrap;
}


.tb-canada-line {

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: #1269e8;

    box-shadow:
        0 0 8px rgba(18,105,232,.7);
}


.tb-canada-flag {

    font-size: 14px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .tb-footer-grid {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 42px;
    }

    .tb-footer-brand {

        grid-column: span 3;
    }

    .tb-footer-brand p {

        max-width: 650px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .tb-footer-main {

        padding: 48px 0 38px;
    }


    .tb-footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 35px 30px;
    }


    .tb-footer-brand {

        grid-column: span 2;
    }


    .tb-footer-bottom-inner {

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }
}


/* =========================================================
   MOBILE CTA
========================================================= */

@media (max-width: 576px) {

    .tb-footer-container {

        width: 90%;
    }


    /* CTA */

    .tb-footer-cta {

        padding: 30px 0;
    }


    .tb-footer-cta .tb-footer-container {

        display: block;
    }


    .tb-footer-eyebrow {

        font-size: 8.5px;

        letter-spacing: 1.5px;
    }


    .tb-footer-cta h2 {

        font-size: 24px;

        line-height: 1.3;
    }


    .tb-footer-cta p {

        font-size: 11.5px;

        line-height: 1.6;
    }


    .tb-footer-cta-action {

        margin-top: 16px;
    }


    .tb-footer-cta-btn {

        width: 100%;

        max-width: 180px;

        padding: 12px 18px;
    }


    /* Main */

    .tb-footer-main {

        padding: 42px 0 30px;
    }


    .tb-footer-grid {

        display: block;
    }


    .tb-footer-brand {

        margin-bottom: 35px;
    }


    .tb-footer-logo img {

        width: 175px;
    }


    .tb-footer-brand p {

        font-size: 11.5px;

        line-height: 1.75;
    }


    .tb-footer-column {

        padding-bottom: 25px;

        margin-bottom: 25px;

        border-bottom:
            1px solid rgba(255,255,255,.07);
    }


    .tb-footer-column:last-child {

        border-bottom: 0;

        margin-bottom: 0;

        padding-bottom: 0;
    }


    .tb-footer-column h3 {

        margin-bottom: 18px;
    }


    .tb-footer-column li {

        margin-bottom: 11px;
    }


    .tb-footer-column li a {

        font-size: 11.5px;
    }


    /* Contact */

    .tb-contact-item {

        margin-bottom: 15px;
    }


    .tb-contact-content strong {

        font-size: 11px;
    }


    /* Bottom */

    .tb-footer-bottom {

        padding: 20px 0;
    }


    .tb-footer-bottom-inner {

        display: flex;

        flex-direction: column;

        gap: 11px;
    }


    .tb-footer-bottom p {

        font-size: 9.5px;

        line-height: 1.6;
    }


    .tb-footer-links {

        flex-wrap: wrap;

        justify-content: center;

        row-gap: 7px;
    }


    .tb-footer-canada {

        justify-content: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .tb-footer-cta h2 {

        font-size: 22px;
    }


    .tb-footer-logo img {

        width: 160px;
    }


    .tb-footer-brand p {

        font-size: 11px;
    }


    .tb-footer-badge {

        font-size: 9px;
    }


    .tb-footer-bottom-inner {

        gap: 9px;
    }
}
/* =========================================================
   TBETHSHA HERO BANNER
========================================================= */

.tb-hero {
    position: relative;
    width: 100%;
    height: 540px;
    min-height: 540px;
    overflow: hidden;
    background-color: #ffffff;
    /*background-image: url("../img/banner-img-2.png");*/
    background-image: url('../img/banner-img.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* =========================================================
   SUBTLE OVERLAY
========================================================= */

.tb-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.10) 0%,
            rgba(255,255,255,.02) 45%,
            rgba(0,25,65,.08) 100%
        );
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.tb-hero-container {

    position: relative;

    z-index: 2;

    width: 92%;

    max-width: 1380px;

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.tb-hero-content {

    width: 52%;

    max-width: 650px;

    padding-top: 5px;
}


/* =========================================================
   EYEBROW
========================================================= */

.tb-hero-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    color: #1269e8;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    line-height: 1.4;
}


/* =========================================================
   HEADING
========================================================= */

.tb-hero h1 {

    margin: 0;

    color: rgb(228, 233, 242);

    font-family: "Cormorant Garamond", "serif !important";

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 600;

    line-height: 1.12;

    letter-spacing: -1.5px;
}


.tb-hero h1 span {

    color: #1269e8;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tb-hero p {

    max-width: 560px;

    margin: 20px 0 0;

    color: #abbed9;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   BUTTONS
========================================================= */

.tb-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 27px;
}


.tb-hero-btn {

    min-height: 45px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 5px;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .4px;

    white-space: nowrap;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.tb-hero-btn-primary {

    background: #1269e8;

    color: #ffffff;

    border: 1px solid #1269e8;

    box-shadow:
        0 8px 20px rgba(18,105,232,.20);
}


.tb-hero-btn-primary:hover {

    background: #0757ca;

    border-color: #0757ca;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(18,105,232,.28);
}


.tb-hero-btn-primary i {

    transition:
        transform .25s ease;
}


.tb-hero-btn-primary:hover i {

    transform: translateX(4px);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.tb-hero-btn-outline {

    background: rgba(255,255,255,.85);

    color: #162b4d;

    border: 1px solid #1269e8;
}


.tb-hero-btn-outline:hover {

    background: #1269e8;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(18,105,232,.18);
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .tb-hero {

        height: 510px;

        min-height: 510px;
    }

    .tb-hero-content {

        width: 55%;
    }

    .tb-hero h1 {

        font-size: 48px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-hero {

        height: 500px;

        min-height: 500px;

        background-position: center center;
    }


    .tb-hero-container {

        width: 90%;
    }


    .tb-hero-content {

        width: 58%;

        max-width: 570px;
    }


    .tb-hero-eyebrow {

        font-size: 9px;

        letter-spacing: 1.2px;

        margin-bottom: 12px;
    }


    .tb-hero h1 {

        font-size: 42px;

        letter-spacing: -1px;
    }


    .tb-hero p {

        max-width: 480px;

        margin-top: 16px;

        font-size: 13px;

        line-height: 1.65;
    }


    .tb-hero-buttons {

        margin-top: 22px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-hero {

        /*
           Same image.
           Same background.
           Only positioning changes slightly.
        */

        height: 500px;

        min-height: 500px;

        background-size: cover;

        background-position: center center;
    }


    


    .tb-hero-container {

        width: 90%;

        align-items: center;
    }


    .tb-hero-content {

        width: 100%;

        max-width: 470px;

        padding-top: 0;
    }


    .tb-hero-eyebrow {

        max-width: 330px;

        margin-bottom: 12px;

        font-size: 8.5px;

        line-height: 1.5;

        letter-spacing: 1.1px;
    }


    .tb-hero h1 {

        max-width: 430px;

        font-size: 34px;

        line-height: 1.16;

        letter-spacing: -.7px;
    }


    .tb-hero p {

        max-width: 400px;

        margin-top: 15px;

        color: #42536c;

        font-size: 12px;

        line-height: 1.7;
    }


    .tb-hero-buttons {

        display: flex;

        align-items: stretch;

        flex-wrap: wrap;

        gap: 10px;

        margin-top: 21px;
    }


    .tb-hero-btn {

        min-height: 43px;

        padding: 0 15px;

        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-hero {

        height: 480px;

        min-height: 480px;

        /*
           SAME HERO IMAGE
        */

        background-position: center center;
    }


    


    .tb-hero-container {

        width: 88%;
    }


    .tb-hero-content {

        max-width: 360px;
    }


    .tb-hero-eyebrow {

        max-width: 290px;

        font-size: 7.5px;

        letter-spacing: .9px;
    }


    .tb-hero h1 {

        font-size: 29px;

        line-height: 1.18;

        letter-spacing: -.5px;
    }


    .tb-hero p {

        max-width: 340px;

        margin-top: 13px;

        font-size: 11px;

        line-height: 1.65;
    }


    .tb-hero-buttons {

        gap: 8px;

        margin-top: 18px;
    }


    .tb-hero-btn {

        min-height: 40px;

        padding: 0 12px;

        gap: 7px;

        font-size: 8.5px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .tb-hero {

        height: 455px;

        min-height: 455px;
    }


    .tb-hero h1 {

        font-size: 26px;
    }


    .tb-hero p {

        font-size: 10.5px;
    }


    .tb-hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .tb-hero-btn {

        min-width: 155px;

        width: auto;
    }
}

/* =========================================================
   TBETHSHA WHO ARE WE SECTION
========================================================= */

.tb-about-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.tb-about-container {

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    align-items: center;

    gap: 75px;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.tb-about-image-wrap {

    position: relative;

    padding: 0 15px 15px 0;
}


.tb-about-image {

    position: relative;

    width: 100%;

    height: 510px;

    overflow: hidden;

    border-radius: 14px;

    background: #071b3b;

    box-shadow:
        0 20px 50px rgba(15, 43, 80, 0.13);
}


.tb-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,25,55,.02) 50%,
            rgba(5,25,55,.25) 100%
        );

    pointer-events: none;
}


.tb-about-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center right;

    transition:
        transform .7s ease;
}


.tb-about-image:hover img {

    transform: scale(1.035);
}


/* =========================================================
   IMAGE BLUE BORDER ACCENT
========================================================= */

.tb-about-image-wrap::before {

    content: "";

    position: absolute;

    left: -12px;

    bottom: -12px;

    width: 100px;

    height: 100px;

    border-left: 3px solid #1269e8;

    border-bottom: 3px solid #1269e8;

    border-radius: 0 0 0 10px;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   FLOATING CARD
========================================================= */

.tb-about-floating-card {

    position: absolute;

    right: -25px;

    bottom: 35px;

    z-index: 4;

    min-width: 205px;

    padding: 14px 16px;

    display: flex;

    align-items: center;

    gap: 11px;

    background: rgba(255,255,255,.96);

    border: 1px solid #e5edf7;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(15,45,82,.14);

    backdrop-filter: blur(8px);
}


.tb-about-card-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: #edf5ff;

    color: #1269e8;

    font-size: 15px;
}


.tb-about-floating-card strong {

    display: block;

    margin-bottom: 2px;

    color: #14294a;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 600;
}


.tb-about-floating-card small {

    display: block;

    color: #718096;

    font-family: "Roboto", sans-serif;

    font-size: 9.5px;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.tb-about-content {

    max-width: 650px;
}


/* =========================================================
   EYEBROW
========================================================= */

.tb-section-eyebrow {

    display: inline-block;

    margin-bottom: 11px;

    color: #1269e8;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================================
   HEADING
========================================================= */

.tb-about-content h2 {

    margin: 0;

    color: #0b1e43;

    font-family: "Poppins", sans-serif;

    font-size: clamp(30px, 3vw, 43px);

    font-weight: 600;

    line-height: 1.18;

    letter-spacing: -.8px;
}


.tb-about-content h2 span {

    display: block;

    color: #1269e8;
}
/* =========================================================
   SERVICES GRID
========================================================= */

/* =========================================================
   ABOUT SERVICES - CLEAN ICON + TEXT
   No card style
========================================================= */

.tb-about-services {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 28px;

    row-gap: 8px;

    margin-top: 18px;

    max-width: 620px;
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.tb-about-service {

    min-height: 48px;

    padding: 5px 0;

    display: flex;

    align-items: center;

    gap: 10px;

    background: transparent;

    border: 0;

    border-radius: 0;

    box-shadow: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


/* =========================================================
   ICON
========================================================= */

.tb-about-service-icon {

    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #edf5ff;

    color: #1269e8;

    font-size: 13px;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


/* =========================================================
   TEXT
========================================================= */

.tb-about-service-content {

    min-width: 0;
}


.tb-about-service-content h3 {

    margin: 0;

    color: #1b3153;

    font-family: "Poppins", sans-serif;

    font-size: 10.5px;

    font-weight: 600;

    line-height: 1.35;
}


/* =========================================================
   HOVER
========================================================= */

.tb-about-service:hover {

    background: transparent;

    border: 0;

    box-shadow: none;

    transform: translateX(3px);
}


.tb-about-service:hover
.tb-about-service-icon {

    background: #1269e8;

    color: #ffffff;

    transform: scale(1.05);
}


.tb-about-service:hover
.tb-about-service-content h3 {

    color: #1269e8;
}


/* =========================================================
   LAST SERVICE
========================================================= */

.tb-about-service:last-child {

    grid-column: span 2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-about-services {

        max-width: 680px;

        column-gap: 25px;

        row-gap: 7px;

        margin-top: 16px;
    }

    .tb-about-service {

        min-height: 46px;

        gap: 9px;
    }

    .tb-about-service-icon {

        width: 32px;

        height: 32px;

        flex-basis: 32px;

        font-size: 12px;
    }

    .tb-about-service-content h3 {

        font-size: 10.5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-about-services {

        display: grid;

        grid-template-columns: 1fr;

        gap: 3px;

        margin-top: 15px;

        max-width: 100%;
    }


    .tb-about-service {

        min-height: 44px;

        padding: 4px 0;

        gap: 9px;
    }


    .tb-about-service:last-child {

        grid-column: auto;
    }


    .tb-about-service-icon {

        width: 31px;

        height: 31px;

        flex-basis: 31px;

        border-radius: 6px;

        font-size: 11px;
    }


    .tb-about-service-content h3 {

        font-size: 10.5px;

        line-height: 1.3;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-about-services {

        gap: 2px;

        margin-top: 13px;
    }


    .tb-about-service {

        min-height: 42px;

        gap: 8px;
    }


    .tb-about-service-icon {

        width: 29px;

        height: 29px;

        flex-basis: 29px;

        font-size: 10px;
    }


    .tb-about-service-content h3 {

        font-size: 10px;
    }
}


/* =========================================================
   CTA BUTTON
========================================================= */

.tb-about-btn {

    margin-top: 25px;

    min-height: 43px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 5px;

    background: #1269e8;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .3px;

    box-shadow:
        0 7px 18px rgba(18,105,232,.18);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.tb-about-btn i {

    transition:
        transform .25s ease;
}


.tb-about-btn:hover {

    background: #0757ca;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(18,105,232,.25);
}


.tb-about-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .tb-about-section {

        padding: 75px 0;
    }


    .tb-about-container {

        gap: 50px;
    }


    .tb-about-image {

        height: 470px;
    }


    .tb-about-content h2 {

        font-size: 34px;
    }


    .tb-about-services {

        gap: 8px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-about-section {

        padding: 65px 0;
    }


    .tb-about-container {

        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .tb-about-image-wrap {

        max-width: 720px;

        width: 100%;

        margin: 0 auto;
    }


    .tb-about-image {

        height: 430px;
    }


    .tb-about-content {

        max-width: 720px;

        margin: 0 auto;
    }


    .tb-about-content h2 {

        font-size: 36px;
    }


    .tb-about-description {

        max-width: 680px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-about-section {

        padding: 55px 0;
    }


    .tb-about-container {

        width: 90%;

        gap: 38px;
    }


    /* Image */

    .tb-about-image-wrap {

        padding: 0 8px 8px 0;
    }


    .tb-about-image {

        height: 350px;

        border-radius: 11px;
    }


    .tb-about-floating-card {

        right: -5px;

        bottom: 20px;

        min-width: 175px;

        padding: 10px 12px;
    }


    .tb-about-card-icon {

        width: 34px;

        height: 34px;

        font-size: 13px;
    }


    .tb-about-floating-card strong {

        font-size: 10.5px;
    }


    .tb-about-floating-card small {

        font-size: 8.5px;
    }


    /* Content */

    .tb-section-eyebrow {

        font-size: 8.5px;

        letter-spacing: 1.4px;
    }


    .tb-about-content h2 {

        font-size: 29px;

        line-height: 1.2;
    }


    .tb-about-description {

        margin-top: 14px;

        margin-bottom: 21px;

        font-size: 11.5px;

        line-height: 1.7;
    }


    /* Services */

    .tb-about-services {

        grid-template-columns:
            1fr;

        gap: 8px;
    }


    .tb-about-service {

        min-height: 66px;

        padding: 10px;
    }


    .tb-about-service-icon {

        width: 32px;

        height: 32px;

        font-size: 12px;
    }


    .tb-about-service-content h3 {

        font-size: 10.5px;
    }


    .tb-about-service-content p {

        font-size: 9px;
    }


    /* Button */

    .tb-about-btn {

        width: 100%;

        max-width: 220px;

        margin-top: 20px;

        min-height: 42px;

        font-size: 9.5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-about-section {

        padding: 48px 0;
    }


    .tb-about-container {

        width: 90%;

        gap: 32px;
    }


    .tb-about-image {

        height: 290px;
    }


    .tb-about-floating-card {

        right: -2px;

        bottom: 15px;

        min-width: 160px;

        padding: 9px 10px;
    }


    .tb-about-content h2 {

        font-size: 26px;
    }


    .tb-about-description {

        font-size: 11px;
    }


    .tb-about-service {

        padding: 9px;
    }


    .tb-about-service-content h3 {

        font-size: 10px;
    }


    .tb-about-service-content p {

        font-size: 8.8px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .tb-about-image {

        height: 255px;
    }


    .tb-about-floating-card {

        min-width: 145px;
    }


    .tb-about-card-icon {

        width: 30px;

        height: 30px;
    }


    .tb-about-content h2 {

        font-size: 24px;
    }
}
/* =========================================================
   TBETHSHA PREMIUM SERVICES SECTION
========================================================= */

.tb-services-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #f8faff;

    overflow: hidden;
}
/* =========================================================
   CONTAINER
========================================================= */

.tb-services-container {

    position: relative;

    z-index: 2;

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tb-services-header {

    max-width: 720px;

    margin: 0 auto 48px;

    text-align: center;
}


.tb-services-eyebrow {

    display: inline-block;

    margin-bottom: 9px;

    color: #1269e8;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.tb-services-header h2 {

    margin: 0;

    color: #0b1e43;

    font-family: "Poppins", sans-serif;

    font-size: clamp(28px, 3vw, 40px);

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -.7px;
}


.tb-services-header h2 span {

    color: #1269e8;
}


.tb-services-line {

    width: 42px;

    height: 3px;

    margin: 14px auto 15px;

    background: #1269e8;

    border-radius: 5px;
}


.tb-services-header p {

    max-width: 600px;

    margin: 0 auto;

    color: #6b7b91;

    font-family: "Roboto", sans-serif;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.tb-services-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 15px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.tb-service-card {

    position: relative;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e4ebf4;

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(18,54,94,.035);

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .35s ease;
}


.tb-service-card:hover {

    transform: translateY(-9px);

    border-color: rgba(18,105,232,.25);

    box-shadow:
        0 22px 45px rgba(14,54,100,.13);
}


/* =========================================================
   IMAGE
========================================================= */

.tb-service-image {

    position: relative;

    width: 100%;

    height: 175px;

    overflow: hidden;

    background: #08224b;
}


.tb-service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.tb-service-card:hover
.tb-service-image img {

    transform: scale(1.09);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.tb-service-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3,25,58,.02) 25%,
            rgba(3,25,58,.55) 100%
        );

    transition:
        background .4s ease;
}


.tb-service-card:hover
.tb-service-image-overlay {

    background:
        linear-gradient(
            180deg,
            rgba(18,105,232,.05),
            rgba(3,38,90,.68)
        );
}


/* =========================================================
   NUMBER
========================================================= */

.tb-service-number {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #1269e8;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(0,0,0,.12);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.tb-service-card:hover
.tb-service-number {

    background: #1269e8;

    color: #ffffff;

    transform: rotate(8deg);
}


/* =========================================================
   ICON
========================================================= */

.tb-service-icon {

    position: absolute;

    left: 15px;

    bottom: 14px;

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: rgba(255,255,255,.96);

    color: #1269e8;

    font-size: 16px;

    box-shadow:
        0 7px 20px rgba(0,0,0,.16);

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.tb-service-card:hover
.tb-service-icon {

    background: #1269e8;

    color: #ffffff;

    transform:
        translateY(-3px)
        rotate(-3deg);
}


/* =========================================================
   CONTENT
========================================================= */

.tb-service-content {

    min-height: 190px;

    padding: 20px 16px 16px;

    display: flex;

    flex-direction: column;
}


.tb-service-content h3 {

    min-height: 39px;

    margin: 0 0 9px;

    color: #14294a;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.4;
}


.tb-service-content h3 span {

    display: inline;
}


.tb-service-content p {

    margin: 0;

    color: #718096;

    font-family: "Roboto", sans-serif;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   LEARN MORE
========================================================= */

.tb-service-link {

    margin-top: auto;

    padding-top: 15px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    color: #1269e8;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.tb-service-link span {

    width: 23px;

    height: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5ff;

    transition:
        background .3s ease,
        transform .3s ease;
}


.tb-service-link i {

    font-size: 8px;

    transition:
        transform .3s ease;
}


.tb-service-link:hover {

    color: #0757ca;
}


.tb-service-link:hover span {

    background: #1269e8;

    color: #ffffff;

    transform: translateX(3px);
}


.tb-service-link:hover i {

    transform: translateX(2px);
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.tb-services-bottom {

    margin-top: 35px;

    text-align: center;
}


.tb-services-all-btn {

    min-height: 43px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 1px solid #1269e8;

    border-radius: 5px;

    background: #ffffff;

    color: #1269e8;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 9.5px;

    font-weight: 600;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.tb-services-all-btn:hover {

    background: #1269e8;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(18,105,232,.20);
}


.tb-services-all-btn i {

    transition:
        transform .3s ease;
}


.tb-services-all-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .tb-services-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 18px;
    }


    .tb-service-image {

        height: 190px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-services-section {

        padding: 70px 0;
    }


    .tb-services-header {

        margin-bottom: 38px;
    }


    .tb-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }


    .tb-service-image {

        height: 205px;
    }


    .tb-service-content {

        min-height: 175px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-services-section {

        padding: 55px 0;
    }


    .tb-services-container {

        width: 90%;
    }


    .tb-services-header {

        margin-bottom: 30px;
    }


    .tb-services-eyebrow {

        font-size: 8px;

        letter-spacing: 1.6px;
    }


    .tb-services-header h2 {

        font-size: 27px;

        line-height: 1.25;
    }


    .tb-services-header p {

        font-size: 11px;

        line-height: 1.65;
    }


    /* One card per row */

    .tb-services-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Card becomes horizontal */

    .tb-service-card {

        display: grid;

        grid-template-columns:
            145px 1fr;

        min-height: 150px;

        border-radius: 11px;
    }


    .tb-service-card:hover {

        transform: translateY(-4px);
    }


    .tb-service-image {

        height: 100%;

        min-height: 150px;
    }


    .tb-service-icon {

        width: 37px;

        height: 37px;

        left: 10px;

        bottom: 10px;

        font-size: 13px;
    }


    .tb-service-number {

        width: 27px;

        height: 27px;

        top: 9px;

        right: 9px;

        font-size: 8px;
    }


    .tb-service-content {

        min-height: 150px;

        padding: 15px 13px;
    }


    .tb-service-content h3 {

        min-height: auto;

        margin-bottom: 6px;

        font-size: 11px;
    }


    .tb-service-content p {

        font-size: 9.5px;

        line-height: 1.55;
    }


    .tb-service-link {

        padding-top: 9px;

        font-size: 8px;
    }


    .tb-service-link span {

        width: 21px;

        height: 21px;
    }


    .tb-services-bottom {

        margin-top: 25px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-services-section {

        padding: 48px 0;
    }


    .tb-services-container {

        width: 90%;
    }


    .tb-services-header h2 {

        font-size: 25px;
    }


    .tb-services-header p {

        font-size: 10.5px;
    }


    .tb-service-card {

        grid-template-columns:
            115px 1fr;

        min-height: 145px;
    }


    .tb-service-image {

        min-height: 145px;
    }


    .tb-service-content {

        min-height: 145px;

        padding: 13px 11px;
    }


    .tb-service-content h3 {

        font-size: 12px;
    }


    .tb-service-content p {

        font-size: 13px;

        line-height: 1.5;
    }


    .tb-service-link {

        font-size: 10px;
    }


    .tb-service-icon {

        width: 34px;

        height: 34px;

        font-size: 12px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .tb-service-card {

        grid-template-columns:
            100px 1fr;
    }


    .tb-service-image {

        min-height: 140px;
    }


    .tb-service-content {

        min-height: 140px;

        padding: 12px 10px;
    }


    .tb-service-content p {

        font-size: 8.5px;
    }


    .tb-service-link {

        padding-top: 6px;

        font-size: 7px;
    }
}

/* =========================================================
   TBETHSHA CONSULTING APPROACH
   DARK BLUE IMAGE BACKGROUND
========================================================= */

.tb-approach-section {

    position: relative;

    width: 100%;

    padding: 85px 0;

    overflow: hidden;

    /* Background image */
    background-image:url("../img/a1.png");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;
}


/* =========================================================
   DARK BLUE OVERLAY
========================================================= */

.tb-approach-section::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

   

    pointer-events: none;
}
/* =========================================================
   CONTAINER
========================================================= */

.tb-approach-container {

    position: relative;

    z-index: 2;

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        .85fr
        1.15fr;

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.tb-approach-intro {

    max-width: 500px;
}


.tb-approach-eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    color: #67b4ff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.tb-approach-intro h2 {

    margin: 0;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: clamp(32px, 3.2vw, 46px);

    font-weight: 600;

    line-height: 1.17;

    letter-spacing: -.8px;
}


.tb-approach-intro h2 span {

    display: block;

    color: #4da1ff;
}


.tb-approach-intro > p {

    max-width: 470px;

    margin: 18px 0 26px;

    color: rgba(255,255,255,.70);

    font-family: "Roboto", sans-serif;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.tb-approach-btn {

    min-height: 43px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 5px;

    background: #1269e8;

    color: #ffffff;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 9.5px;

    font-weight: 600;

    letter-spacing: .3px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.22);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.tb-approach-btn i {

    transition:
        transform .25s ease;
}


.tb-approach-btn:hover {

    background: #3187f5;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.28);
}


.tb-approach-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   PROCESS
========================================================= */

.tb-approach-process {

    position: relative;
}


/* Connecting line */

.tb-approach-process::before {

    content: "";

    position: absolute;

    left: 23px;

    top: 27px;

    bottom: 27px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            rgba(103,180,255,.50),
            rgba(255,255,255,.12)
        );

    z-index: 0;
}


/* =========================================================
   PROCESS ITEM
========================================================= */

.tb-approach-item {

    position: relative;

    z-index: 1;

    display: flex;

    align-items: flex-start;

    gap: 22px;

    padding: 16px 0;

    transition:
        transform .3s ease;
}


.tb-approach-item:hover {

    transform: translateX(6px);
}


/* =========================================================
   NUMBER
========================================================= */

.tb-approach-number {

    width: 47px;

    height: 47px;

    flex: 0 0 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    color: #67b4ff;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 5px 20px rgba(0,0,0,.18);

    backdrop-filter: blur(5px);

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.tb-approach-item:hover
.tb-approach-number {

    background: #1269e8;

    border-color: #1269e8;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================================
   PROCESS CONTENT
========================================================= */

.tb-approach-item-content {

    padding-top: 2px;

    max-width: 550px;
}


.tb-approach-item-content > span {

    display: block;

    margin-bottom: 3px;

    color: #67b4ff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


.tb-approach-item-content h3 {

    margin: 0 0 5px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.35;
}


.tb-approach-item-content p {

    margin: 0;

    color: rgb(255, 247, 247);

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    line-height: 1.65;
}
/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-approach-section {

        padding: 70px 0;

        background-position: center center;

        background-size: cover;

        background-repeat: no-repeat;
    }


    /* Keep the IT consulting image visible */

    .tb-approach-section::before {

        background:
            linear-gradient(
                105deg,
                rgba(3, 18, 43, 0.78) 0%,
                rgba(5, 32, 69, 0.74) 50%,
                rgba(6, 55, 112, 0.70) 100%
            );
    }


    .tb-approach-container {

        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }


    .tb-approach-intro h2 {

        font-size: 34px;
    }


    .tb-approach-intro > p {

        font-size: 12px;

        color: rgba(255,255,255,.72);
    }


    .tb-approach-item {

        gap: 16px;

        padding: 13px 0;
    }


    .tb-approach-number {

        width: 42px;

        height: 42px;

        flex-basis: 42px;
    }


    .tb-approach-process::before {

        left: 20px;

        background:
            linear-gradient(
                to bottom,
                rgba(103,180,255,.45),
                rgba(255,255,255,.10)
            );
    }


    .tb-approach-item-content h3 {

        color: #ffffff;
    }


    .tb-approach-item-content p {

        color: rgba(255,255,255,.64);

        font-size: 11px;
    }


    .tb-approach-item-content > span {

        color: #67b4ff;
    }
}
/* =========================================================
   MOBILE - KEEP BACKGROUND IMAGE VISIBLE
========================================================= */

@media (max-width: 767px) {

    .tb-approach-section {

        padding: 55px 0;

        background-position: center center;

        background-size: cover;

        background-repeat: no-repeat;
    }


    /* Dark blue overlay but image remains visible */

    .tb-approach-section::before {

        background:
            linear-gradient(
                180deg,
                rgba(3, 18, 43, 0.72) 0%,
                rgba(5, 32, 69, 0.68) 50%,
                rgba(5, 32, 69, 0.74) 100%
            );
    }


    .tb-approach-container {

        width: 90%;

        display: block;
    }


    .tb-approach-intro {

        max-width: 100%;

        margin-bottom: 38px;
    }


    .tb-approach-eyebrow {

        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .tb-approach-intro h2 {

        font-size: 28px;

        line-height: 1.2;
    }


    .tb-approach-intro > p {

        margin-top: 14px;

        margin-bottom: 20px;

        font-size: 11px;

        line-height: 1.7;
    }


    .tb-approach-btn {

        min-height: 41px;

        font-size: 9px;
    }


    /* Process */

    .tb-approach-process::before {

        left: 18px;

        top: 22px;

        bottom: 22px;

        background:
            linear-gradient(
                to bottom,
                rgba(103,180,255,.45),
                rgba(255,255,255,.10)
            );
    }


    .tb-approach-item {

        gap: 14px;

        padding: 12px 0;
    }


    .tb-approach-item:hover {

        transform: translateX(3px);
    }


    .tb-approach-number {

        width: 37px;

        height: 37px;

        flex-basis: 37px;

        font-size: 8px;
    }


    .tb-approach-item-content {

        padding-top: 1px;
    }


    .tb-approach-item-content > span {

        font-size: 11px;

        letter-spacing: 1.2px;
    }


    .tb-approach-item-content h3 {

        font-size: 13px;

        margin-bottom: 4px;
    }


    .tb-approach-item-content p {

        font-size: 9.5px;

        line-height: 1.55;
    }
}
@media (max-width: 480px) {

    .tb-approach-section {

        padding: 48px 0;

        background-position: center center;

        background-size: cover;
    }


    .tb-approach-section::before {

        background:
            linear-gradient(
                180deg,
                rgba(3, 18, 43, 0.70) 0%,
                rgba(5, 32, 69, 0.67) 50%,
                rgba(5, 32, 69, 0.73) 100%
            );
    }


    .tb-approach-intro {

        margin-bottom: 30px;
    }


    .tb-approach-intro h2 {

        font-size: 25px;
    }


    .tb-approach-intro > p {

        font-size: 12px;

        line-height: 1.65;
    }


    .tb-approach-item {

        gap: 12px;

        padding: 10px 0;
    }


    .tb-approach-number {

        width: 34px;

        height: 34px;

        flex-basis: 34px;

        font-size: 7.5px;
    }


    .tb-approach-process::before {

        left: 16px;
    }


    .tb-approach-item-content h3 {

        font-size: 12px;
    }


    .tb-approach-item-content p {

        font-size: 12px;
    }
}

/* =========================================================
   TBETHSHA - COMPACT WHY CHOOSE US
========================================================= */

.tb-why-mini {

    position: relative;

    width: 100%;

    padding: 55px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.tb-why-mini-container {

    width: 92%;

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.tb-why-mini-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 28px;
}


.tb-why-mini-label {

    display: block;

    margin-bottom: 7px;

    color: #1269e8;

    font-family: "Poppins", sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.tb-why-mini-header h2 {

    margin: 0;

    color: #0b1e43;

    font-family: "Poppins", sans-serif;

    font-size: 30px;

    font-weight: 600;

    line-height: 1.2;

    letter-spacing: -.5px;
}


.tb-why-mini-header h2 span {

    color: #1269e8;
}


.tb-why-mini-header > p {

    max-width: 440px;

    margin: 0 0 2px;

    color: #728196;

    font-family: "Roboto", sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   REASONS GRID
========================================================= */

.tb-why-mini-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top: 1px solid #e4ebf3;

    border-bottom: 1px solid #e4ebf3;
}


/* =========================================================
   ITEM
========================================================= */

.tb-why-mini-item {

    position: relative;

    min-height: 145px;

    padding: 19px 18px;

    border-right: 1px solid #e4ebf3;

    transition:
        background .35s ease,
        transform .35s ease;
}


.tb-why-mini-item:first-child {

    border-left: 1px solid #e4ebf3;
}


.tb-why-mini-item:hover {

    background: #f7faff;

    transform: translateY(-4px);

    z-index: 2;
}


/* =========================================================
   NUMBER
========================================================= */

.tb-why-mini-number {

    display: block;

    margin-bottom: 11px;

    color: #a4b2c2;

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;

    transition:
        color .3s ease;
}


.tb-why-mini-item:hover
.tb-why-mini-number {

    color: #1269e8;
}


/* =========================================================
   ICON
========================================================= */

.tb-why-mini-item > i {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 11px;

    border-radius: 7px;

    background: #edf5ff;

    color: #1269e8;

    font-size: 11px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.tb-why-mini-item:hover > i {

    background: #1269e8;

    color: #ffffff;

    transform:
        translateY(-2px)
        rotate(-5deg);

    box-shadow:
        0 7px 16px rgba(18,105,232,.18);
}


/* =========================================================
   TITLE
========================================================= */

.tb-why-mini-item h3 {

    margin: 0 0 4px;

    color: #172c4c;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 600;

    line-height: 1.35;

    transition:
        color .3s ease;
}


.tb-why-mini-item:hover h3 {

    color: #1269e8;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.tb-why-mini-item p {

    margin: 0;

    color: #8491a1;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    line-height: 1.5;
}


/* =========================================================
   BOTTOM
========================================================= */

.tb-why-mini-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding-top: 20px;
}


.tb-why-mini-bottom span {

    width: 35px;

    height: 1px;

    background: #cddbea;
}


.tb-why-mini-bottom p {

    margin: 0;

    color: #7b899a;

    font-family: "Poppins", sans-serif;

    font-size: 15px;

    letter-spacing: .3px;

    text-align: center;
}


.tb-why-mini-bottom strong {

    color: #1269e8;

    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .tb-why-mini {

        padding: 48px 0;
    }


    .tb-why-mini-header {

        gap: 30px;

        margin-bottom: 24px;
    }


    .tb-why-mini-header h2 {

        font-size: 27px;
    }


    .tb-why-mini-header > p {

        font-size: 10px;
    }


    .tb-why-mini-item {

        min-height: 135px;

        padding: 16px 13px;
    }


    .tb-why-mini-item h3 {

        font-size: 10px;
    }


    .tb-why-mini-item p {

        font-size: 8px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tb-why-mini {

        padding: 42px 0;
    }


    .tb-why-mini-container {

        width: 90%;
    }


    .tb-why-mini-header {

        display: block;

        margin-bottom: 22px;
    }


    .tb-why-mini-label {

        font-size: 12px;

        letter-spacing: 1.5px;
    }


    .tb-why-mini-header h2 {

        font-size: 25px;
    }


    .tb-why-mini-header > p {

        max-width: 100%;

        margin-top: 10px;

        font-size: 10px;

        line-height: 1.6;
    }


    /* Two-column compact layout */

    .tb-why-mini-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .tb-why-mini-item {

        min-height: 125px;

        padding: 15px 12px;

        border-bottom: 1px solid #e4ebf3;
    }


    .tb-why-mini-item:nth-child(2),
    .tb-why-mini-item:nth-child(4) {

        border-right: 0;
    }


    .tb-why-mini-item:nth-child(5) {

        grid-column: span 2;

        border-right: 0;
    }


    .tb-why-mini-item > i {

        width: 29px;

        height: 29px;

        font-size: 10px;
    }


    .tb-why-mini-item h3 {

        font-size: 10px;
    }


    .tb-why-mini-item p {

        font-size: 8px;
    }


    .tb-why-mini-bottom {

        padding-top: 17px;

        gap: 8px;
    }


    .tb-why-mini-bottom span {

        width: 20px;
    }


    .tb-why-mini-bottom p {

        font-size: 7.5px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .tb-why-mini {

        padding: 38px 0;
    }


    .tb-why-mini-header h2 {

        font-size: 23px;
    }


    .tb-why-mini-header > p {

        font-size: 13px;
    }


    .tb-why-mini-item {

        min-height: 118px;

        padding: 13px 10px;
    }


    .tb-why-mini-number {

        margin-bottom: 8px;

        font-size: 10px;
    }


    .tb-why-mini-item > i {

        width: 27px;

        height: 27px;

        margin-bottom: 8px;

        font-size: 9px;
    }


    .tb-why-mini-item h3 {

        font-size: 13px;
    }


    .tb-why-mini-item p {

        font-size: 14px;

        line-height: 1.45;
    }


    .tb-why-mini-bottom p {

        font-size: 9px;
    }
}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .tb-why-mini-header h2 {

        font-size: 21px;
    }


    .tb-why-mini-item {

        min-height: 110px;

        padding: 12px 8px;
    }


    .tb-why-mini-item h3 {

        font-size: 9px;
    }


    .tb-why-mini-item p {

        font-size: 7px;
    }
}


