/***********************************/
/********** General CSS ***********/
/*********************************/
/*#3159d7*/



body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

/**********************************/
/******** HEADER Menu CSS *********/
/**********************************/
.top-bar {
    padding: 2px 0;
    background: #3a5fb0;
}

.top-bar .tb-contact p {
    display: inline-block;
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}

.top-bar .tb-contact p i {
    margin-right: 6px;
}

.top-bar .tb-contact p:first-child {
    margin-right: 15px;
}

.top-bar .tb-menu {
    font-size: 0;
    text-align: right;
}

.top-bar .tb-menu a {
    color: #ffffff;
    font-size: 14px;
    margin: 0 8px;
}

.top-bar .tb-menu a:hover {
    color: #ffffff;
}

.top-bar .tb-menu a:last-child {
    margin-right: 0;
}

.top-bar .tb-menu a::after {
    position: absolute;
    content: "/";
    margin: 1px 0 0 6px;
    color: #ffffff;
    font-size: 14px;
}

.top-bar .tb-menu a:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .top-bar .tb-contact,
    .top-bar .tb-menu {
        text-align: center;
    }
}


/**********************************/
/*********** Brand CSS ************/
/**********************************/
.brand {
    margin: 15px 0;
    background: #ffffff;
}

.b-logo {
    display: flex;
    align-items: center;
    gap: 8px;   /* spacing between SVG and logo */
}

.brand .b-logo {
    text-align: left;
    overflow: hidden;
}

.brand .b-logo a img {
    max-width: 100%;
    max-height: 100px;
}

.brand .b-ads {
    overflow: hidden;
}

.brand .b-ads a img {
    max-width: 100%;
    max-height: 100%;
}

.brand .b-search {
    width: 100%;
}


.brand .b-search {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #3a5fb0;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    padding: 0;
}

.brand .b-search select {
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background: transparent;
    border-right: 1px solid #ccc;
    outline: none;
}

.brand .b-search input {
    flex: 1;
    border: none !important;
    padding: 12px 15px;
    font-size: 8px !important;
    outline: none;
}

.brand .b-search button {
    background: #3a5fb0;
    color: #fff;
    padding: 12px 25px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
}


.brand .b-search button:hover {
    background: #2f4e8f;
    color: #ffffff;
    border-radius: 0 2px 2px 0;
}

.brand .b-search input::placeholder {
    font-size: 15px !important;   /* smaller placeholder */
        /* optional softer color */
}

.b-actions a {
    text-decoration: none;
    white-space: nowrap;
    font-weight: 200;
    color: #fff;
}

.btn-post {
    background: #3a5fb0;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 4px;
    margin-right: 10px;
    font-weight: 600 !important;
    text-decoration: none;
    border-radius: 5px 5px 20px 5px;
    border: 2px solid #3a5fb0;
}

.btn-post:hover {
    background: #2f4e8f;      /* white background */
    color: #ffffff;           /* blue text */
    text-decoration: none;
    border: 2px solid #2f4e8f;
    border-radius: 5px 5px 20px 5px;
}

.b-search {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #3a5fb0;
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}

/* SELECT */
.brand .b-search select {
    flex: 0 0 160px;            /* fixed width */
    border: none;
    padding: 12px 14px;
    font-size: 14px;
    background: transparent;
    border-right: 1px solid #ccc;
    outline: none;
}

/* INPUT */
.brand .b-search input {
    flex: 1 1 auto;             /* takes remaining space */
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
}

/* BUTTON */

@media (max-width: 1024px) {
    .brand .b-search select {
        flex: 0 0 140px;
        font-size: 13px;
    }

    .brand .b-search input {
        font-size: 13px;
    }

    .brand .b-search button {
        flex: 0 0 110px;
        font-size: 13px;
    }
}
@media (max-width: 1024px) {
    .brand .b-search select {
        flex: 0 0 140px;
        font-size: 13px;
    }

    .brand .b-search input {
        font-size: 13px;
    }

    .brand .b-search button {
        flex: 0 0 110px;
        font-size: 13px;
    }
}
@media (max-width: 767.98px) {
    .brand .b-search {
        border-radius: 30px;
    }

    .brand .b-search select {
        flex: 0 0 110px;
        font-size: 12px;
        padding: 10px 10px;
    }

    .brand .b-search input {
        font-size: 12px;
        padding: 10px 12px;
    }

    .brand .b-search button {
        flex: 0 0 90px;
        font-size: 12px;
        padding: 10px 12px;
    }
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    margin: 0 auto;
    background: #3a5fb0 !important;
}


.nav-bar .navbar {
    height: 100%;
    padding: 0;
}

.navbar-first {
    color: #ffffff !important;
    display: flex;
    align-items: center; 
    border-right: 2px solid #ffffff;
    height: 35px; 
}

.navbar-first:hover{
    border-bottom: 2px solid #ffffff;
    transition: none;
}

.navbar-first span {
    color: #ffffff !important;
}

/* .navbar-first .nav-link:hover {
    border-bottom: 8px solid #ffffff !important;
} */

.navbar-nav .nav-link {
    display: flex;
    align-items: center; 
    color: #ffffff !important;
    height: 35px; 
    margin: 0;
    padding: 0 25px 0 25px!important;
    border-right: 2px solid #ffffff;
}

.nav-link:hover{
    border-bottom: 2px solid #ffffff;
    transition: none;
}

.nav-bar a.nav-link {
    padding: 8px 15px;
    font-size: 15px;
    text-transform: uppercase;
}

.nav-bar .social a {
    padding: 8px 16px 8px 30px;
    background: #3a5fb0;
    color: #ffffff;
    min-width: 60px;
    font-size: 15px;          /* ⬅ increases text height */
    line-height: 1.3;
    text-decoration: none;
    border-right: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    border-radius: 20px 0 0px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.nav-bar .social a:hover {
    border-radius: 0px 0 20px 0;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
}

.hamburger-icon {
    stroke: #3a5fb0;
    stroke-width: 2;
    fill: none;
}

.user {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.user-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    border-radius: 6px;
    display: none;
    z-index: 1000;
}

.user-menu a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}

.user-menu a:hover {
    background: #f5f5f5;
}

.user-menu .logout {
    color: #dc3545;
}

/* Show hamburger only on mobile / tablet */
@media (max-width: 991px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        margin-right: 10px;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
}

/* ACTIVE STATE */
.mobile-menu.active {
    transform: translateX(0);
}

/* Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-header img {
    height: 45px;
    width: 200px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Content */
.mobile-menu-content {
    flex: 1;
    padding: 16px;
}

.mobile-menu-content a {
    display: block;
    padding: 12px 0;
    color: #1f2933;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Footer */
.mobile-menu-footer {
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #e5e5e5;
}

/* Hide menu on desktop */
@media (min-width: 992px) {
    .mobile-menu {
        display: none;
    }
}



@media (max-width: 1200px) {
    .nav-bar .social {
        display: none !important;
    }
    .hide-at-1200 {
        display: none !important;
    }
}
@media (max-width: 1100px) {
    .nav-bar {
        display: none !important;
    }
}

/************************************/
/******** HEADER ENDING ************/
/**********************************/

/**********************************/
/********** Footer CSS ************/
/**********************************/

    .b2b-country-section {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

        padding: 50px 0 50px 0;
        width: 100%;
    }

    .b2b-country-title {
        text-align: center;
        font-size: 22px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .b2b-title-underline {
        width: 80px;
        height: 3px;
        background: #3a5fb0;
        margin: 0 auto 30px auto;
        border-radius: 2px;
    }

    .b2b-slider-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .b2b-countries-wrapper {
        overflow: hidden;
        position: relative;
        flex: 1;
    }

    .b2b-countries-track {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .b2b-country-slide {
        display: flex;
        min-width: 100%;
        justify-content: center;
        gap: 40px;
        padding: 10px 0;
    }

    .b2b-country-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .b2b-country-item:hover {
        transform: translateY(-5px);
    }

    .b2b-country-flag {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(58, 95, 176, 0.2);
        border: 2px solid #f8f9fa;
        transition: all 0.3s ease;
    }

    .b2b-country-item:hover .b2b-country-flag {
        box-shadow: 0 6px 20px rgba(58, 95, 176, 0.35);
        border-color: #3a5fb0;
    }

    .b2b-country-name {
        font-size: 13px;
        font-weight: 600;
        color: #495057;
        text-align: center;
        transition: color 0.3s ease;
    }

    .b2b-country-item:hover .b2b-country-name {
        color: #3a5fb0;
    }

    .b2b-country-name.highlight {
        color: #3a5fb0;
    }

    .b2b-view-all-btn {
        display: block;
        margin: 30px auto 0;
        background: linear-gradient(135deg, #3a5fb0 0%, #2d4a8a 100%);
        color: white;
        border: none;
        padding: 12px 35px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(58, 95, 176, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .b2b-view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(58, 95, 176, 0.4);
    }

    .b2b-view-all-btn:active {
        transform: translateY(0);
    }

    .b2b-slider-btn {
        background: #3a5fb0;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 3px 10px rgba(58, 95, 176, 0.25);
        flex-shrink: 0;
    }

    .b2b-slider-btn:hover:not(:disabled) {
        background: #2d4a8a;
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(58, 95, 176, 0.35);
    }

    .b2b-slider-btn:disabled {
        background: #cbd5e0;
        cursor: not-allowed;
        opacity: 0.5;
        box-shadow: none;
    }

    .b2b-slider-btn svg {
        width: 20px;
        height: 20px;
        fill: white;
    }

    .b2b-slide-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .b2b-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .b2b-indicator.active {
        background: #3a5fb0;
        width: 24px;
        border-radius: 4px;
    }

    @media (max-width: 768px) {
        .b2b-country-section {
            padding: 25px 20px;
        }

        .b2b-country-title {
            font-size: 18px;
        }

        .b2b-country-slide {
            gap: 25px;
        }

        .b2b-country-flag {
            width: 50px;
            height: 50px;
        }

        .b2b-country-name {
            font-size: 12px;
        }

        .b2b-slider-btn {
            width: 35px;
            height: 35px;
        }
    }

    @media (max-width: 480px) {
        .b2b-slider-container {
            gap: 10px;
        }

        .b2b-country-slide {
            gap: 15px;
            flex-wrap: wrap;
        }

        .b2b-country-item {
            flex: 0 0 calc(50% - 15px);
        }

        .b2b-view-all-btn {
            padding: 10px 35px;
            font-size: 13px;
        }
    }

.top-categories-section {
        background: #3a5fb0 ;
        padding: 30px 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .top-categories-header {
        text-align: center;
        margin-bottom: 25px;
    }

    .top-categories-title {
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 8px 0;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .top-categories-underline {
        width: 150px;
        height: 3px;
        background: #ffffff;
        margin: 0 auto;
        border-radius: 2px;
    }

    .categories-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .categories-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .category-item {
        background-color: #fefefe;
        color: #000000;
        padding: 8px 16px;
        border-radius: 2px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(58, 95, 176, 0.1);
        white-space: nowrap;
        cursor: pointer;
        border: 1px solid transparent;
    }

    .category-item:hover {
        background: linear-gradient(135deg, #3a5fb0 0%, #2d4a8a 100%);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(58, 95, 176, 0.25);
        border-color: #3a5fb0;
    }

    @media (max-width: 1200px) {
        .top-categories-title {
            font-size: 20px;
        }

        .category-item {
            font-size: 12px;
            padding: 7px 14px;
        }
    }

    @media (max-width: 768px) {
        .top-categories-section {
            padding: 25px 15px;
        }

        .top-categories-title {
            font-size: 18px;
        }

        .categories-row {
            gap: 6px;
        }

        .category-item {
            font-size: 11px;
            padding: 6px 12px;
        }
    }

    @media (max-width: 480px) {
        .top-categories-section {
            padding: 20px 10px;
        }

        .top-categories-title {
            font-size: 16px;
        }

        .top-categories-underline {
            width: 60px;
            height: 2px;
        }

        .categories-row {
            gap: 5px;
        }

        .category-item {
            font-size: 10px;
            padding: 5px 10px;
        }
    }
/* Reviews */

        .review-section-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
            padding: 25px 40px;
            background-image: url('https://globaltradeplaza.com/_next/static/media/map.8c76834f.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
            overflow: hidden;
            gap: 30px;
        }

        .review-world-map {
            position: absolute;
            right: -100px;
            top: 50%;
            transform: translateY(-50%);
            width: 700px;
            height: auto;
            opacity: 0.15;
            z-index: 1;
        }

        .review-left-card {
            background: white;
            border: 2px solid #d0d0d0;
            border-radius: 15px;
            padding: 25px 40px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            z-index: 2;
            position: relative;
        }

        .review-main-title {
            font-size: 32px;
            font-weight: bold;
            margin: 0;
            line-height: 1.2;
        }


        .title-trade { color: #e63946; }

        .review-subtitle {
            color: #0052cc;
            font-size: 32px;
            font-weight: bold;
            margin: 5px 0 10px 0;
        }

        .review-rating-text {
            color: #999;
            font-size: 16px;
            margin: 10px 0;
            font-weight: 300;
        }

        .review-stars-large {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 10px;
        }

        .review-star-icon {
            font-size: 28px;
            color: #ffc107;
        }

        .review-star-icon.half {
            position: relative;
            color: #e0e0e0;
        }

        .review-star-icon.half::before {
            content: '★';
            position: absolute;
            left: 0;
            width: 50%;
            overflow: hidden;
            color: #ffc107;
        }

        .review-right-cards {
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 2;
        }

        .review-platform-card {
            background: white;
            border-radius: 12px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            min-width: 280px;
        }

        .review-platform-logo {
            height: 24px;
            width: auto;
        }

        .review-platform-logo.google {
            content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 272 92"><path fill="%234285F4" d="M115.75 47.18c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18C71.25 34.32 81.24 25 93.5 25s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44S80.99 39.2 80.99 47.18c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z"/><path fill="%23EA4335" d="M163.75 47.18c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.85 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44z"/><path fill="%23FBBC05" d="M209.75 26.34v39.82c0 16.38-9.66 23.07-21.08 23.07-10.75 0-17.22-7.19-19.66-13.07l8.48-3.53c1.51 3.61 5.21 7.87 11.17 7.87 7.31 0 11.84-4.51 11.84-13v-3.19h-.34c-2.18 2.69-6.38 5.04-11.68 5.04-11.09 0-21.25-9.66-21.25-22.09 0-12.52 10.16-22.26 21.25-22.26 5.29 0 9.49 2.35 11.68 4.96h.34v-3.61h9.25zm-8.56 20.92c0-7.81-5.21-13.52-11.84-13.52-6.72 0-12.35 5.71-12.35 13.52 0 7.73 5.63 13.36 12.35 13.36 6.63 0 11.84-5.63 11.84-13.36z"/><path fill="%234285F4" d="M225 3v65h-9.5V3h9.5z"/><path fill="%2334A853" d="M262.02 54.48l7.56 5.04c-2.44 3.61-8.32 9.83-18.48 9.83-12.6 0-22.01-9.74-22.01-22.18 0-13.19 9.49-22.18 20.92-22.18 11.51 0 17.14 9.16 18.98 14.11l1.01 2.52-29.65 12.28c2.27 4.45 5.8 6.72 10.75 6.72 4.96 0 8.4-2.44 10.92-6.14zm-23.27-7.98l19.82-8.23c-1.09-2.77-4.37-4.7-8.23-4.7-4.95 0-11.84 4.37-11.59 12.93z"/><path fill="%23EA4335" d="M35.29 41.41V32H67c.31 1.64.47 3.58.47 5.68 0 7.06-1.93 15.79-8.15 22.01-6.05 6.3-13.78 9.66-24.02 9.66C16.32 69.35.36 53.89.36 34.91.36 15.93 16.32.47 35.3.47c10.5 0 17.98 4.12 23.6 9.49l-6.64 6.64c-4.03-3.78-9.49-6.72-16.97-6.72-13.86 0-24.7 11.17-24.7 25.03 0 13.86 10.84 25.03 24.7 25.03 8.99 0 14.11-3.61 17.39-6.89 2.66-2.66 4.41-6.46 5.1-11.65l-22.49.01z"/></svg>');
        }

        .review-platform-logo.glassdoor {
            content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><text x="0" y="30" font-family="Arial" font-size="24" font-weight="bold" fill="%2300a264">GLASSDOOR</text></svg>');
        }

        .review-platform-logo.goodfirms {
            content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><text x="0" y="30" font-family="Arial" font-size="24" font-weight="bold" fill="%230073e6">GoodFirms</text></svg>');
        }

        .review-platform-logo.trustpilot {
            content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 40"><text x="0" y="30" font-family="Arial" font-size="24" font-weight="bold" fill="%2300b67a">★ Trustpilot</text></svg>');
        }

        .review-platform-rating {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-left: auto;
        }

        .review-platform-stars {
            display: flex;
            gap: 2px;
        }

        .review-platform-star {
            font-size: 16px;
            color: #ffc107;
        }

        .review-platform-star.half-star {
            position: relative;
            color: #e0e0e0;
        }

        .review-platform-star.half-star::before {
            content: '★';
            position: absolute;
            left: 0;
            width: 50%;
            overflow: hidden;
            color: #ffc107;
        }

        @media (max-width: 1200px) {
            .review-section-container {
                flex-direction: column;
                padding: 25px;
                gap: 20px;
            }

            .review-world-map {
                display: none;
            }

            .review-left-card {
                padding: 20px 30px;
            }

            .review-main-title, .review-subtitle {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .review-main-title, .review-subtitle {
                font-size: 24px;
            }

            .review-rating-text {
                font-size: 14px;
            }

            .review-star-icon {
                font-size: 24px;
            }

            .review-platform-card {
                min-width: 100%;
                padding: 8px 16px;
            }

            .review-platform-rating {
                font-size: 18px;
            }

            .review-platform-star {
                font-size: 14px;
            }
        }


/* END OF REVIEWS */


/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/


    .gtp-footer-main {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 40px 40px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }

    .gtp-footer-brand {
        flex: 0 0 25%;
        box-sizing: border-box;
        padding-right: 0px;
    }

    .gtp-footer-column {
        box-sizing: border-box;
        min-width: 0;
    }

    .gtp-footer-logo {
        width: 250px;
        margin-bottom: 20px;
    }

    .gtp-footer-description {
        font-size: 14px;
        line-height: 1.7;
        color: #d0d9e8;
        margin-bottom: 25px;
    }

    .gtp-footer-column h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
        white-space: nowrap;
    }

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

    .gtp-footer-links li {
        margin-bottom: 12px;
        white-space: nowrap;
    }

    .gtp-footer-links a {
        color: #d0d9e8;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .gtp-footer-links a:hover {
        color: #ffffff;
    }

    .gtp-footer-countries {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

    .gtp {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

    .gtp-country-links {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .gtp-country-links a {
        color: #d0d9e8;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

    .gtp-country-links a:hover {
        color: #ffffff;
    }

    .gtp-footer-categories {
        max-width: 1400px;
        margin: 0 auto;
        padding: 30px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gtp-category-links {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .gtp-category-links a {
        color: #d0d9e8;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
    }

    .gtp-category-links a:hover {
        color: #ffffff;
    }



    .gtp-footer-copyright {
        color: #ffffff;
        font-size: 15px;
        font-weight:500;
        margin: 0;
    }

    .gtp-footer-copyright a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
    }

    .gtp-social-icons {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }


    .gtp-social-icons {
        display: flex;
        gap: 12px;
        margin-top: 25px;
        justify-content: flex-end;
    }

    .gtp-social-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        cursor: pointer;
    }

    .gtp-social-icon:hover {
        transform: scale(1.1);
    }



    .gtp-newsletter-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gtp-newsletter-row .gtp-social-icons {
    margin-left: auto; /* pushes icons to right */
}

    .gtp-social-icon.facebook { background-color: #1877f2; }
    .gtp-social-icon.twitter { background-color: #000000; }
    .gtp-social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .gtp-social-icon.linkedin { background-color: #0077b5; }
    .gtp-social-icon.pinterest { background-color: #e60023; }
    .gtp-social-icon.youtube { background-color: #ff0000; }
    .gtp-social-icon.google { background-color: #4285f4; }
    .gtp-social-icon.whatsapp { background-color: #25d366; }

    .gtp-social-icon svg {
        width: 18px;
        height: 18px;
        fill: white;
    }

    .gtp-newsletter-title {
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .gtp-newsletter-form {
        display: flex;
        background-color: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        max-width: 350px;
    }

    .gtp-newsletter-input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        font-size: 14px;
        outline: none;
    }

    .gtp-newsletter-input::placeholder {
        color: #999;
    }

    .gtp-newsletter-btn {
        background: transparent;
        border: none;
        padding: 12px 20px;
        color: #1f3342;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
    }


    @media (max-width: 1200px) {
        .gtp-footer-main {
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .gtp-footer-brand {
            flex: 0 0 100%;
            padding-right: 0;
        }
        
        .gtp-footer-column {
            flex: 0 0 calc(25% - 30px);
        }
    }

    @media (max-width: 992px) {
        .gtp-footer-column {
            flex: 0 0 calc(50% - 30px);
        }
    }

    @media (max-width: 768px) {
        .gtp-footer {
            padding: 40px 0 0 0;
        }

        .gtp-newsletter-form {
            max-width: 100%;
        }

        .gtp-footer-main {
            padding: 0 15px 30px 15px;
            gap: 35px;
        }

        .gtp-footer-column {
            flex: 0 0 100%;
        }

        .gtp-footer-column h3 {
            white-space: normal;
        }

        .gtp-footer-links li {
            white-space: normal;
        }

        .gtp-country-links,
        .gtp-category-links {
            gap: 15px;
        }
        .gtp-social-icons {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {
        .gtp-footer-main {
            padding: 0 15px 30px 15px;
        }

        .gtp-footer-logo {
            width: 150px;
        }

        .gtp-footer-title {
            font-size: 20px;
        }

        .gtp-country-links,
        .gtp-category-links {
            gap: 12px;
        }

        .gtp-country-links a,
        .gtp-category-links a {
            font-size: 12px;
        }
    }




        /* CHAT BUTTON */
.chat-support-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #3a5fb0;
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.chat-support-btn:hover {
    transform: scale(1.1);
}

/* CHAT BOX */
.chat-support-box {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 340px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    z-index: 999999;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

/* HEADER */
.chat-header {
    background: #3a5fb0;
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
}

/* FORM */
.chat-form {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

.chat-form textarea {
    resize: none;
    height: 90px;
    overflow-y: auto;
}

.chat-form button {
    background: #3a5fb0;
    color: #ffffff;
    border: none;
    padding: 11px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.chat-form button:hover {
    background: #1f3342;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 480px) {
    .chat-support-box {
        width: 92%;
        right: 4%;
        bottom: 90px;
    }
}

/**********************************/
/******** END Footer Bottom CSS *******/
/**********************************/


