/***********************************/
/********** General CSS ***********/
/*********************************/
/*#3159d7*/

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ===== STICKY HEADER ===== */
/* ===== STICKY HEADER ===== */

#stickyHeader {
    position: absolute; /* Starts as normal flow */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    transition: transform 0.35s ease-in-out;
}

/* Becomes sticky only after scrolling past threshold */
#stickyHeader.sticky-active {
    position: fixed;
    top: 0;
}

/* Hide header when scrolling down (only works when sticky) */
#stickyHeader.sticky-active.hide-header {
    transform: translateY(-100%);
}

/* No body padding needed since header starts as absolute */

/**********************************/
/******** 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: 10px 0;
    background: #ffffff;
}

.b-logo {

    display: flex;
    align-items: center;
    gap: 8px;   /* spacing between SVG and logo */
}

.brand .b-logo {

    text-align: left;

}

.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: 30px;
    overflow: hidden;
    background: #fff;
    padding: 0;
}


.brand .b-search input {

    flex: 1;
    border: none !important;
    padding: 12px 15px;
    font-size: 15px !important;
    outline: none;
}

.brand .b-search button {

    background: #3a5fb0;
    color: #fff;
    padding: 12px 25px;
    border: none;
    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;
}

.btn-post {
  --border-color: linear-gradient(-45deg, #3a5fb0, #2f4e8f, #6f8fe8);
  --border-width: 2px;
  --curve-size: 0.7em;
  --bg: #3a5fb0;          /* Normal background */
  --bg-hover: #2f4e8f;    /* Darker hover background */
  --color: #ffffff;

  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;

  background: transparent;
  color: var(--color);
  padding: 13px 20px;
  margin-right: 10px;
  text-decoration: none;
  border: 0;

  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );

  transition: color 250ms;
}

.btn-post::before,
.btn-post::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Animated gradient border */
.btn-post::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-border 5s ease infinite;
  z-index: -2;
}

/* Inner background layer */
.btn-post::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: background 300ms ease;
}

/* Hover = darker fill */
.btn-post:hover::after {
  background: var(--bg-hover);
}

.btn-post:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Border animation keyframe */
@keyframes move-border {
  0% { background-position: 31% 0%; }
  50% { background-position: 70% 100%; }
  100% { background-position: 31% 0%; }
}


.btn1-post {
  --border-color: linear-gradient(-45deg, #3a5fb0, #2f4e8f, #6f8fe8);
  --border-width: 2px;
  --curve-size: 0.7em;   /* Increased clip size */
  --bg: #ffffff;
  --color: #3a5fb0;

  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;

  background: transparent;
  color: var(--color);
  padding: 13px 20px;
  margin-right: 10px;
  text-decoration: none;
  border: 0;

  clip-path: polygon(
    0% var(--curve-size),
    var(--curve-size) 0,
    100% 0,
    100% calc(100% - var(--curve-size)),
    calc(100% - var(--curve-size)) 100%,
    0 100%
  );

  transition: color 250ms;
}

.btn1-post::before,
.btn1-post::after {
  content: "";
  position: absolute;
  inset: 0;
}

.btn1-post::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-border 5s ease infinite;
  z-index: -2;
}

@keyframes move-border {
  0% { background-position: 31% 0%; }
  50% { background-position: 70% 100%; }
  100% { background-position: 31% 0%; }
}

.btn1-post::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    var(--border-width) calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 400ms;
}

.btn1-post:hover::after {
  clip-path: polygon(
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
}

.btn1-post:hover {
  color: #ffffff;
  text-decoration: none;
}





/* 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: 15px;
    outline: none;
    min-width: 0;
}

/* BUTTON */

@media (max-width: 1024px) {
    .brand .b-search select {
        flex: 0 1 120px;
        max-width: 100px;
        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: 15px;
    }
}
@media (max-width: 767.98px) {
    .brand .b-search {
        border-radius: 5px;
    }

    .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: 15px 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;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.support-link i {
    font-size: 16px;
}

.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 */
    text-decoration: none;
    border-left: 3px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}


.nav-bar .social a:hover {
    box-shadow: inset 0 -2px 0 #ffffff;
}
.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: 9999 !important;
}

.user-menu a {

    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}

.user-menu a:hover {

    background: #f5f5f5;
}

.user-menu .logout {
    overflow: hidden;
    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 {

    overflow: hidden;
    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 20px;
    width: 100%;
    box-sizing: border-box;
}

.b2b-country-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    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 {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.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: 20px;
    padding: 10px 5px;
    flex-shrink: 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;
    max-width: 100px;
    word-wrap: break-word;
}

.b2b-country-item:hover .b2b-country-name {
    color: #3a5fb0;
}

.b2b-country-name.highlight {
    color: #3a5fb0;
}

.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;
}

/* TABLET VIEW */
@media (max-width: 992px) {
    .b2b-country-section {
        padding: 40px 15px;
    }

    .b2b-country-title {
        font-size: 20px;
    }

    .b2b-slider-container {
        padding: 0 15px;
    }

    .b2b-country-slide {
        gap: 18px;
    }

    .b2b-country-flag {
        width: 55px;
        height: 55px;
    }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .b2b-country-section {
        padding: 35px 15px;
    }

    .b2b-country-title {
        font-size: 18px;
    }

    .b2b-slider-container {
        gap: 12px;
        padding: 0 10px;
    }

    .b2b-country-slide {
        gap: 15px;
    }

    .b2b-country-flag {
        width: 50px;
        height: 50px;
    }

    .b2b-country-name {
        font-size: 12px;
        max-width: 90px;
    }

    .b2b-slider-btn {
        width: 35px;
        height: 35px;
    }

    .b2b-slider-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* SMALL MOBILE VIEW */
@media (max-width: 480px) {
    .b2b-country-section {
        padding: 30px 10px;
    }

    .b2b-country-title {
        font-size: 16px;
    }

    .b2b-title-underline {
        width: 60px;
        height: 2px;
    }

    .b2b-slider-container {
        gap: 8px;
        padding: 0 5px;
    }

    .b2b-country-slide {
        gap: 5px;
        justify-content: space-evenly;
    }

    .b2b-country-flag {
        width: 45px;
        height: 45px;
    }

    .b2b-country-name {
        font-size: 11px;
        max-width: 80px;
    }

    .b2b-slider-btn {
        width: 32px;
        height: 32px;
    }

    .b2b-slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
    .b2b-country-section {
        padding: 25px 8px;
    }

    .b2b-country-slide {
        gap: 10px;
    }

    .b2b-country-flag {
        width: 40px;
        height: 40px;
    }

    .b2b-country-name {
        font-size: 10px;
        max-width: 70px;
    }

    .b2b-slider-btn {
        width: 28px;
        height: 28px;
    }
}



.sc8x2p-wrapper {
    overflow: hidden;
    background: #3a5fb0;
    padding: 30px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sc8x2p-header {
    overflow: hidden;
    text-align: center;
    margin-bottom: 25px;
}

.sc8x2p-heading {
    overflow: hidden;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sc8x2p-divider {
    overflow: hidden;
    width: 150px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto;
    border-radius: 2px;
}

.sc8x2p-content {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.sc8x2p-grid {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.sc8x2p-link {
    overflow: hidden;
    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;
}

.sc8x2p-link:hover {
    overflow: hidden;
    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) {
    .sc8x2p-heading {
        font-size: 20px;
    }

    .sc8x2p-link {
        font-size: 12px;
        padding: 7px 14px;
    }
}

@media (max-width: 768px) {
    .sc8x2p-wrapper {
        padding: 25px 15px;
    }

    .sc8x2p-heading {
        font-size: 18px;
    }

    .sc8x2p-grid {
        gap: 6px;
    }

    .sc8x2p-link {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .sc8x2p-wrapper {
        padding: 20px 10px;
    }

    .sc8x2p-heading {
        font-size: 16px;
    }

    .sc8x2p-divider {
        width: 60px;
        height: 2px;
    }

    .sc8x2p-grid {
        gap: 5px;
    }

    .sc8x2p-link {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/**********************************/
/******** Footer Bottom CSS *******/
/**********************************/


    .gtp-footer-main {
        overflow: hidden;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 0px 40px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 30px;
    }

    .gtp-footer-brand {
        overflow: hidden;
        flex: 0 0 25%;
        box-sizing: border-box;
        padding-right: 0px;
    }

    .gtp-footer-column {
        overflow: hidden;
        box-sizing: border-box;
        min-width: 0;
    }

    .gtp-footer-logo {
        overflow: hidden;
        width: 250px;
        margin-bottom: 20px;
    }

    .gtp-footer-description {
        overflow: hidden;
        font-size: 14px;
        line-height: 1.7;
        color: #d0d9e8;
        margin-bottom: 25px;
    }

    .gtp-footer-column h3 {
        overflow: hidden;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
        white-space: nowrap;
    }

    .gtp-footer-links {
        overflow: hidden;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .gtp-footer-links li {
        overflow: hidden;
        margin-bottom: 12px;
        white-space: nowrap;
    }

    .gtp-footer-links a {
        overflow: hidden;
        color: #d0d9e8;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .gtp-footer-links a:hover {
        overflow: hidden;
        color: #ffffff;
    }


    .gtp {
        
        overflow: hidden;
        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-footer-copyright {
        overflow: hidden;
        color: #ffffff;
        font-size: 15px;
        font-weight:500;
        margin: 0;
    }

    .gtp-footer-copyright a {
        overflow: hidden;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
    }

    .gtp-social-icons {
        overflow: hidden;
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }


    .gtp-social-icons {
        overflow: hidden;
        display: flex;
        gap: 12px;
        margin-top: 25px;
        justify-content: flex-end;
    }

    .gtp-social-icon {
        overflow: hidden;
        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 {
        overflow: hidden;
        transform: scale(1.1);
    }


.gtp-newsletter-row {
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gtp-newsletter-row .gtp-social-icons {
    overflow: hidden;
    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 {
        overflow: hidden;
        width: 18px;
        height: 18px;
        fill: white;
    }

    .gtp-newsletter-title {
        overflow: hidden;
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .gtp-newsletter-form {
        overflow: hidden;
        display: flex;
        background-color: #ffffff;
        border-radius: 4px;
        overflow: hidden;
        max-width: 350px;
    }

    .gtp-newsletter-input {
        overflow: hidden;
        flex: 1;
        padding: 12px 15px;
        border: none;
        font-size: 14px;
        outline: none;
    }

    .gtp-newsletter-input::placeholder {
        overflow: hidden;
        color: #999;
    }

    .gtp-newsletter-btn {
        overflow: hidden;
        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-newsletter-row {
            overflow: hidden;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        
    .gtp-newsletter-title {
align-items: center;
justify-content: center;
display: flex;
    }

        .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-social-icons {
            justify-content: center;
        }
    }

    @media (max-width: 480px) {

        .gtp-newsletter-row {
            overflow: hidden;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .gtp-footer-main {
            padding: 0 15px 30px 15px;
        }

        .gtp-footer-logo {
            width: 150px;
        }

        .gtp-footer-title {
            font-size: 20px;
        }

    }

.newsletter-message {
    overflow: hidden;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.newsletter-success {
    overflow: hidden;
    color: #ffffff;
}

.newsletter-error {
    overflow: hidden;
    color: #ff4d4d;
}

/* newsletter full width below columns */
.gtp-newsletter-section{
    width:100%;
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:40px;
    padding-top:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* keep icons right */
.gtp-newsletter-section .gtp-social-icons{
    margin-left:auto;
}

/* mobile */
@media (max-width:768px){
    .gtp-newsletter-section{
        flex-direction:column;
        justify-content:center;
        text-align:center;
    }

    .gtp-newsletter-section .gtp-social-icons{
        margin-left:0;
        justify-content:center;
    }
}

        /* CHAT BUTTON */
.chat-support-btn {
    overflow: hidden;
    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 {
    overflow: hidden;
    transform: scale(1.1);
}

/* CHAT BOX */
.chat-support-box {
    overflow: hidden;
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 480px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    z-index: 999999;
    display: none;
    overflow: hidden;
}



/* HEADER */
.chat-header {
    overflow: hidden;
    background: #3a5fb0;
    color: #ffffff;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    overflow: hidden;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
}


/* FORM */
.chat-form {
    overflow: hidden;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}


.chat-form input {
    overflow: hidden;
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
}

.chat-form textarea {
    overflow: hidden;
    grid-column: 1 / -1;
    height: 45px;
    resize: none;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 13px;
}


.chat-form textarea {
    overflow: hidden;
    resize: none;
    height: 50px;
    overflow-y: auto;
}

.chat-form button {
    overflow: hidden;
    grid-column: 1 / -1;
    background: #3a5fb0;
    color: #ffffff;
    border: none;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.chat-form button:hover {
    overflow: hidden;
    background: #1f3342;
}


/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .chat-support-box {
        width: 94%;
        right: 3%;
        bottom: 90px;
    }

    .chat-form {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .chat-support-box {
        width: 92%;
        right: 4%;
        bottom: 90px;
    }
}

/**********************************/
/******** END Footer Bottom CSS *******/
/**********************************/


.sticky,
.sc8x2p-wrapper,
.b2b-country-section,
.gtp-footer,
main,
header,
section,
footer {
  width: 100% !important;
  max-width: 100% !important;
}


.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
html, body {
  overflow-x: hidden;
}

html {
  scrollbar-gutter: auto;  /* or remove property entirely */
}

html, body {
  margin: 0;
  padding: 0;
}

/* Width */
::-webkit-scrollbar {
  width: 5px;          /* vertical scrollbar */
  height: 4px;         /* horizontal scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: transparent;   /* cleaner than gray */
}


/* Scroll thumb (moving part) */
::-webkit-scrollbar-thumb {
  background: #3a5fb0;
  border-radius: 10px;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: #2e4c8a;
}

