

/*BANNER 1 STARTING */
    /* ==============================
       RESET & BASE STYLES
    ============================== */
    .trade-platform * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        
    }

    .trade-platform {
        font-family: "Segoe UI", system-ui, sans-serif;
        color: #333;
        line-height: 1.5;
        margin-top: 170px;
    }

    /* ==============================
       MAIN LAYOUT - 20% | 60% | 20%
    ============================== */
    .layout-wrapper {
        width: 100%;
        margin: 5px auto 5px auto;
        display: grid;
        grid-template-columns: 20% 60% 20%;
        gap: 0;
        height: clamp(460px, 65vh, 580px);
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        position: relative;
        
    }

    /* ==============================
       LEFT PANEL - 20%
    ============================== */
    .left-panel {
        background: #ffffff;
        padding: 8px 6px;
        border-right: 1px solid #eee;
        display: flex;
    }

    .category-list {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .category-list li {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 8px;
        font-size: 12.5px;
        font-weight: 500;
        border-bottom: 1px solid #808080;
        cursor: pointer;
        transition: all 0.2s ease;
        position: relative;
    }

.category-list li::after {
    content: '';
    position: absolute;
    right: -20%;
    top: 0;
    width: 20%;
    height: 100%;
    background: transparent;
    pointer-events: auto;
}

    .category-list li span {
        font-size: 17px;
    }

    .category-list li i {
        margin-left: auto;
        color: #999;
        font-size: 13px;
    }

    .category-list li:hover {
        background: #f5f9ff;
        color: #3f60ac;
        transform: translateX(3px);
    }

    .category-item img{
        height: 25px;
        width:25px;
        margin-right: 10px;
        object-fit: contain;
    }

    /* ==============================
       MIDDLE CAROUSEL - 60%
    ============================== */
    .middle-panel {
        position: relative;
        overflow: hidden;
        background: #000;
    }

    .carousel-container {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: relative;
        display: block;
    }

    .carousel-slides {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.6s ease-in-out;
        flex-wrap: nowrap;
    }

    .carousel-slide {
      flex: 0 0 100%;
        max-width: 100%;
        height: 100%;
        position: relative;
    }


    .carousel-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /* Navigation Arrows - Updated */
    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 32px;
        color: rgba(255, 255, 255, 0.9);
        z-index: 10;
        transition: all 0.3s ease;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        padding: 10px;
    }

    .carousel-arrow:hover {
        color: #fff;
        transform: translateY(-50%) scale(1.15);
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    }

    .carousel-arrow.left {
        left: 20px;
    }

    .carousel-arrow.right {
        right: 20px;
    }

    /* Dots Indicator */
    .carousel-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .carousel-dot.active {
        background: #fff;
        transform: scale(1.2);
        border-color: #3f60ac;
    }

    .carousel-dot:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    .carousel-arrow {
    outline: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent; /* mobile */
}

.carousel-arrow:focus,
.carousel-arrow:active,
.carousel-arrow:focus-visible {
    outline: none;
    box-shadow: none;
    background: transparent;
}




/* Tablet */
@media (max-width: 1024px) {
    .middle-panel,
    .carousel-container,
    .carousel-slide {
        height: 500px;
    }

    .trade-platform {
        margin-top: 180px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .middle-panel,
    .carousel-container,
    .carousel-slide {
        height: 500px;
    }
  .trade-platform {
        margin-top: 140px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .middle-panel,
    .carousel-container,
    .carousel-slide 
    .carousel-slide img{
        height: 250px;
    }
      .trade-platform {
        margin-top: 210px;
    }
}
    /* ==============================
       RIGHT PANEL (FORM) - 20%
    ============================== */
    .right-panel {
        background: #ffffff;
        border-left: 1px solid #eee;
        display: flex;
        align-items: stretch;
    }

    .form-box {
        display: flex;
        flex-direction: column;
        padding: 6px;
        width: 100%;
        flex: 1;
    }

    .form-title {
        background: #3f60ac;
        color: #fff;
        font-size: 15px;
        padding: 7px 10px;
        margin: -6px -6px 10px -6px;
        position: relative;
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    }

    .form-box input,
    .form-box select {
        width: 100%;
        padding: 9px 11px;
        margin-bottom: 6px;
        border-radius: 4px;
        border: 1px solid #ddd;
        font-size: 14px;
        color: #444;
        background-color: #fff;
        transition: border-color 0.3s;
    }

    .form-box input:focus,
    .form-box select:focus {
        outline: none;
        border-color: #3f60ac;
        box-shadow: 0 0 0 2px rgba(63, 96, 172, 0.1);
    }

    /* Custom Select with Scroll */
    .form-box select {
        max-height: 200px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #3f60ac #f1f1f1;
    }

    .form-box select::-webkit-scrollbar {
        width: 8px;
    }

    .form-box select::-webkit-scrollbar-thumb {
        background: #3f60ac;
        border-radius: 4px;
    }

    .form-box select::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Phone Row with Flag */
    .phone-row {
        display: flex;
        gap: 5px;
        margin-bottom: 6px;
    }

    .phone-row .country-code {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 7px 9px;
        border-radius: 4px;
        border: 1px solid #ddd;
        background: #f5f5f5;
        font-size: 8px;
        white-space: nowrap;
    }

    .phone-row .country-code img {
        width: 20px;
        height: 14px;
        object-fit: cover;
        border-radius: 2px;
    }

    .phone-row select {
        width: auto;
        max-width: 90px;
        margin-bottom: 0;
    }

    .phone-row input {
        flex: 1;
        margin-bottom: 0;
    }

    .terms {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        font-size: 10.5px;
        margin: 6px 0 0 0;
        line-height: 1.3;
        width: 100%;
    }

    .terms input[type="checkbox"] {
        margin-top: 2px;
        width: auto;
        flex-shrink: 0;
        transform: scale(0.85);
    }

    .terms-text {
        flex: 1;
        word-break: break-word;
        hyphens: auto;
    }

    .terms a {
        color: #3f60ac;
        text-decoration: none;
        font-weight: 500;
    }

    .terms a:hover {
        text-decoration: underline;
    }


    .join-btn {
        margin-top: 6px;
        padding: 8px;
        background: #3f60ac;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .join-btn:hover {
        background: #334f96;
        transform: translateY(-2px);
    }

    .join-btn:active {
        transform: translateY(0);
    }

    .signin-text {
        text-align: center;
        font-size: 11px;
        margin-top: 10px;
        color: #666;
    }

    .signin-text a {
        color: #3f60ac;
        font-weight: 500;
        text-decoration: none;
    }

    .signin-text a:hover {
        text-decoration: underline;
    }

    /* ==============================
       MEGA MENU
    ============================== */
    .jw-cat-mega {
        position: absolute;
        left: 20%;
        top: 0;
        width: 60%;
        height: 100%;
        background: #ffffff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: 20px;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9999;
        border-radius: 0;
    }

    .jw-cat-mega.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .jw-cat-mega::-webkit-scrollbar {
        width: 8px;
    }

    .jw-cat-mega::-webkit-scrollbar-thumb {
        background: #3f60ac;
        border-radius: 6px;
    }

    .jw-cat-mega::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .jw-cat-mega {
        scrollbar-width: thin;
        scrollbar-color: #3f60ac #f1f1f1;
    }

    .jw-mega-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .jw-mega-item h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #3f60ac;
    }

    .jw-mega-item ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .jw-mega-item ul li {
        font-size: 14px;
        color: #555;
        padding: 4px 0;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .jw-mega-item ul li:hover {
        color: #3f60ac;
        transform: translateY(-2px);
    }

    /* ==============================
       RESPONSIVE DESIGN
    ============================== */
    @media (max-width: 900px) {
        .layout-wrapper {
            grid-template-columns: 1fr;
            height: auto;
            margin: 0;
            border-radius: 0;
        }
        
        .left-panel,
        .right-panel {
            display: none;
        }
        

        .carousel-arrow {
            font-size: 28px;
        }

        .carousel-arrow.left {
            left: 10px;
        }

        .carousel-arrow.right {
            right: 10px;
        }

        .jw-cat-mega {
            display: none;
        }
    }
/* BANNER 1 ENDS */


/* BANNER 2 STARTING*/

.services-container {
    margin: 100px 10px 10px 10px;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5em;
    color: #1f3342;
    margin-bottom: 15px;
    font-weight: bold;
}

.header-underline {
    width: 400px;
    height: 2px;
    background: linear-gradient(to right,#3a5fb0 0%, #3a5fb0 50%, #3a5fb0 50%, #3a5fb0 100%);
    margin: 0 auto 30px;
}

.description {
    color: #6c757d;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.service-card:last-child {
    border-right: none;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #3660ce;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.service-content h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
}

.service-content a {
    color: #3159d7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-content a:hover {
    color: #003a74;
    text-decoration: underline;
}

@media (max-width: 768px) {

    .header-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(to right,#3a5fb0 0%, #3a5fb0 50%, #1f3342 50%, #1f3342 100%);
    margin: 0 auto 30px;
    }

    .services-container {
        margin: 5px auto;
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 30px;
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .header h1 {
        font-size: 2em;
    }

    .description {
        font-size: 1em;
    }
}
/* BANNER 2 ENDS */

/* BANNER 2.1 Starting */
.b2b-banner {
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
    width: 100%;
    max-width: 1240px;
    margin: 60px auto;
    background: #3a5fb0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  }

  .b2b-banner *,
  .b2b-banner *::before,
  .b2b-banner *::after {
    box-sizing: border-box;
  }

  .b2b-banner img {
    max-width: 100%;
    height: auto;
  }

  .b2b-banner svg {
    display: block;
    flex-shrink: 0;
  }

  .b2b-banner-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 380px;
  }

  /* LEFT CONTENT */
  .b2b-left {
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .b2b-heading {
    margin-bottom: 4px;
  }

  .b2b-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
  }

  .b2b-heading p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
  }

  /* FEATURES */
  .b2b-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    max-height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .feature-icon img {
   width: 25px;      /* change size here */
   height: 25px;     /* keep same as width for perfect square */
   object-fit: contain;
   }

  .feature-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 3px 0;
  }

  .feature-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
  }

  /* CTA BUTTON */
  .b2b-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .b2b-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #3a5fb0;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .b2b-cta:hover {
    background: #3a5fb0;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    text-decoration: none;
  }

  .b2b-cta svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .b2b-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: border-color 0.2s ease;
  }

  .b2b-link:hover {
    border-bottom-color: #ffffff;
    color: #ffffff;
    text-decoration: none;
  }

  /* RIGHT IMAGE */
  .b2b-right {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
  }

  .b2b-right img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay gradient for image blend */
  .b2b-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3a5fb0 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
  }

  /* TRUST BADGE */
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
  }

  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
  }

  .trust-badge-item svg {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    max-width: 14px;
    max-height: 14px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
  }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .b2b-left {
      padding: 40px 40px;
    }

    .b2b-heading h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 968px) {
    .b2b-banner {
      margin: 40px auto;
    }

    .b2b-banner-inner {
      grid-template-columns: 1fr;
    }

    .b2b-left {
      padding: 40px 32px;
    }

    .b2b-right {
      min-height: 280px;
    }

    .b2b-right::before {
      background: linear-gradient(180deg, #3a5fb0 0%, transparent 40%);
    }
  }

  @media (max-width: 640px) {

    .b2b-banner {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
    margin: 40px auto;
    background: #3a5fb0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .b2b-banner {
      margin: 30px auto;
      border-radius: 12px;
    }

    .b2b-banner-inner {
      min-height: auto;
    }

    .b2b-left {
      padding: 32px 24px;
      gap: 20px;
    }

    .b2b-heading h2 {
      font-size: 26px;
    }

    .b2b-heading p {
      font-size: 15px;
    }

    .b2b-features {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .feature-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
    }

    .feature-content h3 {
      font-size: 15px;
    }

    .feature-content p {
      font-size: 13px;
    }

    .b2b-cta-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .b2b-cta {
      width: 100%;
      justify-content: center;
      padding: 12px 24px;
    }

    .b2b-right {
      min-height: 240px;
    }

    .trust-badge {
      flex-wrap: wrap;
    }
  }
/* BANNER 2.1 ENDS */

/* SEALED DEALS */
.btg-sd-wrapper-7a9f2 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(58, 95, 176, 0.75) 0%, rgba(45, 75, 140, 0.75) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&h=900&fit=crop') center/cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btg-sd-wrapper-7a9f2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.btg-sd-top-container-4k8m3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    gap: 30px;
    flex-wrap: wrap;
}

.btg-sd-header-block-2x7n4 {
    text-align: left;
    flex: 1;
    min-width: 280px;
}

.btg-sd-main-heading-9p5q6 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.btg-sd-sub-heading-1r8s7 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 10px 0;
}

.btg-sd-description-text-3t6u8 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 550px;
    margin: 0;
}

.btg-sd-counter-container-5v9w0 {
    text-align: right;
    flex-shrink: 0;
}

.btg-sd-counter-label-8x2y1 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.btg-sd-counter-display-6z4a2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
}

.btg-sd-slider-wrap-4b7c3 {
    overflow: hidden;
    position: relative;
    padding: 15px 0;
    margin-bottom: 25px;
    width: 100%;
}

.btg-sd-slider-track-9d1e5 {
    display: flex;
    gap: 20px;
    animation: btg-sd-scroll-anim-3f6g8 40s linear infinite;
    will-change: transform;
}

@keyframes btg-sd-scroll-anim-3f6g8 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-240px * 8 - 160px));
    }
}

.btg-sd-card-item-2h8i4 {
    flex: 0 0 240px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btg-sd-card-item-2h8i4:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btg-sd-card-image-7j9k6 {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.btg-sd-card-image-7j9k6::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.btg-sd-card-image-7j9k6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btg-sd-card-item-2h8i4:hover .btg-sd-card-image-7j9k6 img {
    transform: scale(1.08);
}

.btg-sd-card-content-1l3m7 {
    padding: 14px;
    background: #ffffff;
}

.btg-sd-card-title-5n8o9 {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.btg-sd-card-price-4p2q0 {
    font-size: 18px;
    font-weight: 700;
    color: #3a5fb0;
    font-family: 'Courier New', monospace;
    margin: 0;
}

.btg-sd-view-btn-8r5s1 {
    display: block;
    margin: 0 auto;
    background: #ffffff;
    color: #3a5fb0;
    border: 2px solid #ffffff;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.btg-sd-view-btn-8r5s1:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* TABLET VIEW */
@media (max-width: 992px) {
    .btg-sd-wrapper-7a9f2 {
        padding: 35px 25px;
        margin: 30px auto;
    }

    .btg-sd-top-container-4k8m3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btg-sd-counter-container-5v9w0 {
        text-align: left;
    }

    .btg-sd-main-heading-9p5q6 {
        font-size: 28px;
    }

    .btg-sd-counter-display-6z4a2 {
        font-size: 36px;
    }
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    .btg-sd-wrapper-7a9f2 {
        padding: 30px 20px;
        margin: 20px auto;
        border-radius: 15px;
    }

    .btg-sd-main-heading-9p5q6 {
        font-size: 24px;
    }

    .btg-sd-sub-heading-1r8s7 {
        font-size: 15px;
    }

    .btg-sd-description-text-3t6u8 {
        font-size: 13px;
    }

    .btg-sd-counter-display-6z4a2 {
        font-size: 32px;
    }

    .btg-sd-card-item-2h8i4 {
        flex: 0 0 200px;
    }

    @keyframes btg-sd-scroll-anim-3f6g8 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 8 - 160px));
        }
    }

    .btg-sd-view-btn-8r5s1 {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* SMALL MOBILE VIEW */
@media (max-width: 480px) {
    .btg-sd-wrapper-7a9f2 {
        padding: 25px 15px;
        margin: 15px auto;
    }

    .btg-sd-main-heading-9p5q6 {
        font-size: 20px;
    }

    .btg-sd-sub-heading-1r8s7 {
        font-size: 14px;
    }

    .btg-sd-description-text-3t6u8 {
        font-size: 12px;
        line-height: 1.5;
    }

    .btg-sd-counter-label-8x2y1 {
        font-size: 10px;
    }

    .btg-sd-counter-display-6z4a2 {
        font-size: 26px;
    }

    .btg-sd-card-item-2h8i4 {
        flex: 0 0 160px;
    }

    .btg-sd-card-image-7j9k6 {
        height: 100px;
    }

    .btg-sd-card-content-1l3m7 {
        padding: 10px;
    }

    .btg-sd-card-title-5n8o9 {
        font-size: 13px;
    }

    .btg-sd-card-price-4p2q0 {
        font-size: 15px;
    }

    @keyframes btg-sd-scroll-anim-3f6g8 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 8 - 160px));
        }
    }

    .btg-sd-view-btn-8r5s1 {
        padding: 10px 30px;
        font-size: 13px;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
    .btg-sd-wrapper-7a9f2 {
        padding: 20px 10px;
    }

    .btg-sd-main-heading-9p5q6 {
        font-size: 18px;
    }

    .btg-sd-counter-display-6z4a2 {
        font-size: 22px;
    }

    .btg-sd-card-item-2h8i4 {
        flex: 0 0 140px;
    }

    @keyframes btg-sd-scroll-anim-3f6g8 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 8 - 160px));
        }
    }
}
/* END OF SEALED DEALS */
/* BANNER 3 */
.mn2q9x {
    background:  rgb(233, 236, 239);
    border-radius: 5px;
}
.zx9k3m h1 {
  font-size: 18px;
  padding-left: 5px;
}

.zx9k3m h3 {
  font-size: 18px;
  padding-left: 5px;
}

.pq7r2n {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.wy8t5l {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.5s ease-in-out;
}

.wy8t5l li {
  min-width: 200px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.wy8t5l li a {
  text-decoration: none;
  color: #292626;
}

.wy8t5l img {
  width: 150px;
  border-radius: 12px;
  height: auto;
  padding: 10px;
}

.hj4n8p {
  display: flex;
  justify-content: center;
  margin: 15px;
}

.hj4n8p button {
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  background-color: #3a5fb0;
  color: #fff;
}

.hj4n8p button:hover {
  background-color: #2f4e8f;
  color: #fff;
}

.df6v1k {
  background: linear-gradient(90deg, #f9f9f9, #e9ecef);
  border-bottom: 4px solid #3a5fb0;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mn2q9x {
  border-radius: 5px;
}

.zx9k3m {
  margin-top: 1rem;
}

.lp3x7w {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* BANNER # Ends*/

/* Features Section */

.featured-categories-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.featured-categories-section {
    font-family: 'Arial', sans-serif;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}

.card-image-features {
    width: 100%;
    height: clamp(150px, 20vw, 200px);
    border-radius: clamp(8px, 1.5vw, 12px);
    overflow: hidden;
    margin-bottom: clamp(12px, 2vw, 18px);
}

.card-image-features img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.card-title {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Navigation Buttons */


.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}


/* Arrow Icons */
.arrow {
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.arrow-left {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.arrow-right {
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Responsive Design */

/* BANNER 3 ENDING */


/* BANNER 4 5 6 7 STARTING */

/* ==================================================
   APPAREL SECTION – FULLY RESPONSIVE (UNIQUE NAMES)
   ================================================== */

.btg-apparel-wrapper-v2 {
  max-width: clamp(1100px, 95vw, 1320px);
  margin: 50px auto 0 auto;
  font-family: "Segoe UI", sans-serif;
}

/* =====================
   HEADER
   ===================== */

.btg-category-header-v2 {
  border: 1px solid #3a5fb0;
  border-radius: 5px;
  padding: clamp(10px, 1.6vw, 14px) clamp(16px, 2.5vw, 22px);
}

.btg-header-title-row-v2 {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 8px);
}

.btg-header-title-row-v2 h2 {
  margin: 0;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  color: #3159d7;
}

.btg-title-divider-v2 {
  height: 2px;
  background: #3159d7;
  margin-top: clamp(6px, 1vw, 8px);
}

/* =====================
   MAIN LAYOUT (DESKTOP)
   ===================== */

.btg-main-content-layout-v2 {
  display: flex;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(14px, 2.5vw, 18px);
}

/* =====================
   LEFT IMAGE
   ===================== */

.btg-featured-visual-v2 {
  width: clamp(240px, 25%, 300px);
  position: relative;
  height: clamp(260px, 40vw, 420px);
  overflow: hidden;
  border-radius: clamp(5px, 0.8vw, 6px);
  flex-shrink: 0;
}

.btg-featured-visual-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.btg-featured-visual-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 51, 66, 0.28);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btg-visual-arrow-v2 {
  position: absolute;
  bottom: clamp(10px, 2vw, 14px);
  right: clamp(10px, 2vw, 14px);
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: bold;
  z-index: 2;
  transition: transform 0.4s ease;
}

.btg-featured-visual-v2:hover img {
  transform: scale(1.08);
}

.btg-featured-visual-v2:hover::after {
  opacity: 1;
}

.btg-featured-visual-v2:hover .btg-visual-arrow-v2 {
  transform: translateX(6px);
}

/* =====================
   RIGHT GRID (DESKTOP)
   ===================== */

.btg-products-grid-container-v2 {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 14px);
}

/* =====================
   PRODUCT CARD
   ===================== */

.btg-single-product-item-v2 {
  background: #fff;
  border: 1px solid #e2e8f4;
  border-radius: clamp(5px, 0.8vw, 6px);
  display: flex;
  padding: clamp(8px, 1.6vw, 10px);
  gap: clamp(8px, 1.6vw, 10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  align-items: flex-start;
}

.btg-single-product-item-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px #2f4e8f;
  border-color: #3a5fb0;
}

.btg-single-product-item-v2 img {
  width: clamp(52px, 6vw, 60px);
  height: clamp(70px, 8vw, 78px);
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #d0d6dc;
  flex-shrink: 0;
}

.btg-product-text-area-v2 {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.btg-product-text-area-v2 h3 {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 600;
  color: #1f3342;
}

.btg-product-text-area-v2 p {
  margin: clamp(3px, 0.6vw, 4px) 0 clamp(6px, 1vw, 7px);
  font-size: clamp(12px, 1.4vw, 12.5px);
  color: #555;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btg-product-text-area-v2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 0.8vw, 5px) clamp(10px, 1.8vw, 11px);
  min-height: clamp(26px, 3vw, 28px);
  border: 1px solid #3a5fb0;
  color: #3a5fb0;
  font-size: clamp(12px, 1.4vw, 12.5px);
  text-decoration: none;
  line-height: 1;
  border-radius: 4px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  white-space: nowrap;
}

.btg-single-product-item-v2:hover .btg-product-text-area-v2 a {
  background: #2f4e8f;
  border-color: #2f4e8f;
  color: #fff;
}

/* ==================================================
   TABLET VIEW (≤ 820px)
   ================================================== */

@media (max-width: 820px) {
  .btg-products-grid-container-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================================================
   PHONE VIEW (≤ 768px)
   ================================================== */

@media (max-width: 768px) {

  /* Stack sections */
  .btg-main-content-layout-v2 {
    flex-direction: column;
    gap: 16px;
  }

  /* Image full width */
  .btg-featured-visual-v2 {
    width: 100%;
    height: clamp(220px, 65vw, 300px);
  }

  /* Cards BELOW image, one by one */
  .btg-products-grid-container-v2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 12px;
  }

  .btg-single-product-item-v2 {
    width: 100%;
  }
}

.btg-header-icon-v2 img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  object-fit: contain;
}

/* BANNER 4 5 6 7 ENDS */


/* Middle Banner */
        .latest-buyers-products-wrapper * {
            margin-top: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .latest-buyers-products-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 20px;
        }

        .lbp-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .lbp-section {
            border-radius: 8px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .lbp-section:hover {
            transform: translateY(-2px);
        }

        .lbp-section-header {
            font-size: 20px;
            font-weight: 600;
            color: #000000;
            padding: 16px 20px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(31, 51, 66, 0.08);
            border: 1px solid rgba(58, 95, 176, 0.1);
            margin-bottom: 5px;
            position: relative;
            border-bottom: 3px solid #3a5fb0;
        }

        .lbp-section-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            border-radius: 2px;
        }

        .lbp-section-content {
            background: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(31, 51, 66, 0.08);
            border: 2px solid rgba(58, 95, 176, 0.1);
            border-bottom: #3a5fb0;
        }

        .lbp-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f2f5;
            transition: background-color 0.2s ease;
        }

        .lbp-item:hover {
            background-color: #f8f9fb;
            margin: 0 -8px;
            padding: 12px 8px;
            border-radius: 4px;
        }

        .lbp-item:last-child {
            border-bottom: none;
        }

        .lbp-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .lbp-item-image {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            object-fit: cover;
            flex-shrink: 0;
            border: 1px solid rgba(58, 95, 176, 0.15);
            transition: transform 0.2s ease;
        }

        .lbp-item:hover .lbp-item-image {
            transform: scale(1.05);
        }

        .lbp-item-name {
            font-size: 13px;
            color: #1f3342;
            font-weight: 500;
        }

        .lbp-item-date {
            font-size: 12px;
            color: #64748b;
            white-space: nowrap;
            margin-left: 10px;
            font-weight: 500;
        }

        /* animation states */

.slide-group { display: none; }
.slide-group.active {
    display: block;
    animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

        @media (max-width: 1024px) {
            .lbp-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .latest-buyers-products-wrapper {
                padding: 10px;
            }

            .lbp-section-header {
                font-size: 16px;
                padding: 12px 15px;
            }

            .lbp-section-content {
                padding: 15px;
            }

            .lbp-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .lbp-item-date {
                margin-left: 52px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .lbp-item-name {
                font-size: 12px;
            }

            .lbp-item-image {
                width: 35px;
                height: 35px;
            }

            .lbp-section-header {
                font-size: 16px;
            }
        }
/* Middle Banner Ends */


/* BANNER 8 9 Starting */

/* BANNER 8 9 Ending  */

/* BANNER 10 Starting  */

/* Just below the Navbar */
    .xf9k2m7p-wrapper {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1300px;
        padding: 60px 40px;
        margin: 0 auto;
    }

    .zn4h8qt1-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .lw6y3rd9-section {
        padding: clamp(40px, 4vw, 60px) clamp(35px, 3.5vw, 50px);
        color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        background: linear-gradient(135deg, rgba(21, 101, 192, 0.95) 0%, rgba(58, 95, 176, 0.95) 100%), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=800&q=80') center/cover;
        background-blend-mode: overlay;
    }

    .lw6y3rd9-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(58, 95, 176, 0.85);
        z-index: 1;
    }

    .lw6y3rd9-section > * {
        position: relative;
        z-index: 2;
    }

    .pm5t2kx8-title {
        font-size: clamp(28px, 3.5vw, 40px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: clamp(18px, 2vw, 24px);
        letter-spacing: 0.5px;
    }

    .bv7n4jq2-underline {
        width: clamp(180px, 36vw, 640px); 
        height: 4px;
        background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
        margin-bottom: clamp(20px, 2.5vw, 30px);
        border-radius: 2px;
    }

    .dh8k1wp6-description {
        font-size: clamp(14px, 1.8vw, 17px);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 300;
    }

    .qs3m9tr4-list {
        margin-top: clamp(25px, 3vw, 35px);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ft2n7yx5-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: clamp(13px, 1.6vw, 15px);
    }

    .gk9p4zh1-icon {
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .gk9p4zh1-icon::before {
        content: '✓';
        color: white;
        font-weight: bold;
    }

    .rj6w8nq3-section {
        background: white;
        padding: clamp(25px, 2.5vw, 30px) clamp(25px, 2.5vw, 35px);
    }

    .vh4m2pt7-header {
        margin-bottom: clamp(12px, 1.5vw, 15px);
    }

    .vh4m2pt7-header h3 {
        font-size: clamp(16px, 2vw, 20px);
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: clamp(6px, 0.8vw, 8px);
        position: relative;
        display: inline-block;
    }

    .vh4m2pt7-header h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 60%;
        height: 3px;
        background: linear-gradient(90deg, #3a5fb0, #5a7fc0);
        border-radius: 2px;
    }

    .xt8q5jk9-form {
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 1.2vw, 12px);
    }

    .nz7y1md4-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(10px, 1.2vw, 12px);
    }

    .pk3h6wt2-group {
        display: flex;
        flex-direction: column;
    }

    .pk3h6wt2-group.bm9r4fx8-width {
        grid-column: 1 / -1;
    }

    .qw5t8jp1-input,
    .ls2n7hv6-select,
    .dg4k9mx3-textarea {
        padding: clamp(8px, 1vw, 10px) clamp(10px, 1.2vw, 12px);
        border: 1.5px solid #e0e4e8;
        border-radius: 6px;
        font-size: clamp(13px, 1.4vw, 14px);
        color: #333;
        transition: all 0.3s ease;
        background: #fafbfc;
    }

    .qw5t8jp1-input:focus,
    .ls2n7hv6-select:focus,
    .dg4k9mx3-textarea:focus {
        outline: none;
        border-color: #3a5fb0;
        background: white;
        box-shadow: 0 0 0 3px rgba(58, 95, 176, 0.1);
    }

    .qw5t8jp1-input::placeholder,
    .dg4k9mx3-textarea::placeholder {
        color: #999;
    }

    .ls2n7hv6-select {
        cursor: pointer;
        color: #666;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233a5fb0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 35px;
    }

    .dg4k9mx3-textarea {
        min-height: clamp(60px, 8vw, 70px);
        resize: vertical;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .ym7t3pq5-section {
        margin-top: clamp(3px, 0.5vw, 5px);
    }

    .hz8k2nw4-label {
        font-size: clamp(13px, 1.4vw, 14px);
        color: #333;
        font-weight: 600;
        margin-bottom: clamp(8px, 0.8vw, 10px);
        display: block;
    }

    .fq6j9vt1-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: clamp(6px, 1vw, 10px);
    }

    .tw4n8kp7-checkbox {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px;
        border-radius: 6px;
        transition: background 0.2s ease;
    }

    .tw4n8kp7-checkbox:hover {
        background: #f8f9fa;
    }

    .tw4n8kp7-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #3a5fb0;
    }

    .tw4n8kp7-checkbox label {
        font-size: clamp(12px, 1.4vw, 13px);
        color: #555;
        cursor: pointer;
        user-select: none;
    }

    .xv5m2zq8-button {
        background: linear-gradient(135deg, #3a5fb0, #5a7fc0);
        color: white;
        border: none;
        padding: clamp(10px, 1.3vw, 12px) clamp(22px, 2.5vw, 30px);
        font-size: clamp(13px, 1.5vw, 15px);
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
        align-self: flex-end;
        margin-top: clamp(6px, 0.8vw, 8px);
        box-shadow: 0 4px 12px rgba(58, 95, 176, 0.25);
    }

    .xv5m2zq8-button:hover {
        background: linear-gradient(135deg, #2d4a8a, #4a6da0);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(58, 95, 176, 0.35);
    }

    .xv5m2zq8-button:active {
        transform: translateY(0);
    }


/* Spinner */
.loader {
  width: 18px;
  height: 18px;
  border: 3px solid #ddd;
  border-top: 3px solid #3a5fb0;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Disabled button */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

    /* Responsive Design */
    @media (max-width: 768px) {
        .xf9k2m7p-wrapper {
            margin: 50px auto;
            padding: 40px 20px;
        }
    }

    @media (max-width: 992px) {
        .zn4h8qt1-container {
            grid-template-columns: 1fr;
        }

        .lw6y3rd9-section {
            min-height: 300px;
        }
    }

    @media (max-width: 768px) {
        .nz7y1md4-row {
            grid-template-columns: 1fr;
        }

        .fq6j9vt1-options {
            grid-template-columns: 1fr;
        }
    }
/* BANNER 10 Ending  */

/* BANNER 11 Starting  */
.xf9k2m-wrapper {
  background: #f7f9fc;
  margin: 50px 0;
  padding: 40px 20px;
}

.xf9k2m-container {
  max-width: 1200px;
  margin: auto;
}

.xf9k2m-img-section {
  position: relative;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  overflow: hidden;
}

.xf9k2m-img-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
}

.xf9k2m-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xf9k2m-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 95, 176, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.xf9k2m-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 25px 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  text-align: center;
  max-width: 850px;
  width: 100%;
}

.xf9k2m-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2933;
  margin-bottom: 8px;
  line-height: 1.3;
}

.xf9k2m-title span { 
  color: #3a5fb0; 
}

.xf9k2m-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.xf9k2m-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
}

.xf9k2m-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.xf9k2m-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

/* THE ABSOLUTE FIX - RESET ALL POSITIONING */
.xf9k2m-icon {
  width: 85px !important;
  height: 85px !important;
  min-width: 85px;
  min-height: 85px;
  max-width: 85px;
  max-height: 85px;
  margin: 0 auto 15px !important;
  border-radius: 50%;
  background: #f1f5ff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  flex-shrink: 0;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
}

.xf9k2m-icon img {
  width: 45px !important;
  height: 45px !important;
  min-width: 45px;
  min-height: 45px;
  max-width: 45px;
  max-height: 45px;
  object-fit: contain !important;
  flex-shrink: 0;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.xf9k2m-card h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #111827;
  font-weight: 600;
}

.xf9k2m-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

/* TABLET VIEW */
@media (max-width: 900px) {
  .xf9k2m-wrapper {
    margin: 30px 0;
    padding: 30px 15px;
  }

  .xf9k2m-img-wrapper {
    height: auto;
    min-height: 650px;
  }

  .xf9k2m-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(58, 95, 176, 0.4) 0%, rgba(58, 95, 176, 0.3) 100%);
    padding: 40px 20px;
  }

  .xf9k2m-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .xf9k2m-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .xf9k2m-header {
    padding: 20px 30px;
    margin-bottom: 25px;
  }

  .xf9k2m-title { 
    font-size: 24px; 
  }

  .xf9k2m-subtitle { 
    font-size: 14px; 
  }
}

/* MOBILE VIEW */
@media (max-width: 600px) {
  .xf9k2m-wrapper {
    margin: 20px 0;
    padding: 20px 10px;
  }

  .xf9k2m-img-section {
    border-radius: 12px;
  }

  .xf9k2m-img-wrapper {
    min-height: 600px;
  }

  .xf9k2m-overlay {
    padding: 30px 15px;
  }

  .xf9k2m-header { 
    padding: 18px 20px;
    margin-bottom: 20px;
  }

  .xf9k2m-title {
    font-size: 20px;
  }

  .xf9k2m-subtitle {
    font-size: 13px;
  }

  .xf9k2m-card { 
    padding: 20px 16px;
  }

  /* MOBILE ICON FIX */
  .xf9k2m-icon {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .xf9k2m-icon img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    min-height: 38px;
    max-width: 38px;
    max-height: 38px;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .xf9k2m-card h3 {
    font-size: 17px;
  }

  .xf9k2m-card p {
    font-size: 13px;
  }

  .xf9k2m-grid {
    gap: 14px;
  }
}

/* VERY SMALL MOBILE */
@media (max-width: 400px) {
  .xf9k2m-wrapper {
    padding: 15px 8px;
  }

  .xf9k2m-img-wrapper {
    min-height: 550px;
  }

  .xf9k2m-header {
    padding: 15px;
  }

  .xf9k2m-title {
    font-size: 18px;
  }

  .xf9k2m-subtitle {
    font-size: 12px;
  }

  .xf9k2m-card {
    padding: 18px 14px;
  }

  /* VERY SMALL MOBILE ICON FIX */
  .xf9k2m-icon {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px;
    min-height: 65px;
    max-width: 65px;
    max-height: 65px;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .xf9k2m-icon img {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px;
    min-height: 35px;
    max-width: 35px;
    max-height: 35px;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
}
/* BANNER 11 Ending  */

/* BANNER 12 Starting  */

/* BANNER 12 Ending  */
.review-section-container {
  overflow-x: hidden;
}
    /* BANNER 13 Starting  */
.testimonial-wrapper {
  display: flex;
  width: 100%;
  margin: 60px 0 60px 0;
  min-height: 500px;
  font-family: "Segoe UI", sans-serif;
}

/* LEFT */
.testimonial-left {
  width: 40%;
  background: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(40px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.testimonial-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 51, 66, 0.95) 0%, rgba(58, 95, 176, 0.7) 100%);
  z-index: 1;
}

.title-content {
  position: relative;
  z-index: 2;
}

.title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.title-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 350px;
  margin-top: 20px;
}

/* RIGHT */
.testimonial-right {
  width: 60%;
  background: linear-gradient(
      rgba(58, 95, 176, 0.92),
      rgba(58, 95, 176, 0.92)
    ),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(40px, 5vw, 70px);
  position: relative;
  display: flex;
  align-items: center;
}

/* SLIDER */
.slider {
  max-width: 720px;
  position: relative;
  width: 100%;
}

/* DYNAMIC HEIGHT CONTAINER - THE FIX */
.slides {
  position: relative;
  min-height: 300px;
  height: auto;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  height: auto;
  min-height: 100%;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote {
  font-size: 100px;
  font-weight: 700;
  line-height: 0.5;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.3);
}

.review {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.8;
  margin-bottom: 35px;
  font-weight: 400;
}

.author {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.role {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 40px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
  .testimonial-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }

  .testimonial-right {
    min-height: 400px;
    height: auto;
    padding: clamp(40px, 6vw, 60px);
  }

  .title {
    font-size: clamp(32px, 6vw, 40px);
  }

  .slides {
    min-height: 280px;
    height: auto;
  }

  .quote {
    font-size: 80px;
  }

  .review {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 25px;
  }
}

@media (max-width: 640px) {
  .testimonial-left {
    min-height: 250px;
  }

  .testimonial-right {
    min-height: 350px;
    padding: 30px 20px;
  }

  .title-description {
    font-size: 14px;
  }

  .slides {
    min-height: 250px;
  }

  .quote {
    font-size: 70px;
    margin-bottom: 20px;
  }

  .review {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .author {
    font-size: 19px;
  }

  .role {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-right {
    min-height: 320px;
    padding: 25px 15px;
  }

  .slides {
    min-height: 220px;
  }

  .quote {
    font-size: 60px;
  }

  .review {
    font-size: 14px;
  }
}

/* BANNER 13 Ending  */


/* Subscribe to our newsletter */

  .bx7p3n-section {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;
    margin: 50px 0 50px 0;
  }

  .bx7p3n-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .bx7p3n-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .bx7p3n-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    z-index: 3;
  }

  .bx7p3n-container h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .bx7p3n-container p {
    color: #e8f0ff;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 25px 0;
    line-height: 1.5;
    font-family: 'Segoe UI', Arial, sans-serif;
    opacity: 0.95;
  }

  .bx7p3n-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 550px;
    margin: 0 auto;
  }

  .bx7p3n-form input {
    flex: 1;
    min-width: 280px;
    padding: 13px 18px;
    font-size: 15px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.2);
    outline: none;
    background: rgba(255,255,255,0.95);
    transition: border-color 0.3s ease;
  }

  .bx7p3n-form input:focus {
    border-color: rgba(255,255,255,0.8);
    background: #ffffff;
  }

  .bx7p3n-form button {
    background: #ffffff;
    color: #3a5fb0;
    border: none;
    padding: 13px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .bx7p3n-form button:hover {
    background: #2f4e8f;
    color:white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  @media (max-width: 600px) {
    .bx7p3n-section {
      padding: 40px 20px;
    }

    .bx7p3n-container h2 {
      font-size: 24px;
    }

    .bx7p3n-container p {
      font-size: 15px;
      margin-bottom: 20px;
    }

    .bx7p3n-form {
      flex-direction: column;
      align-items: stretch;
    }

    .bx7p3n-form input {
      min-width: 100%;
    }

    .bx7p3n-form button {
      width: 100%;
    }
  }

/* Endign of our newsletter */

    /* 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:  #3a5fb0; }

        .review-subtitle {
            color: #4b5563;
            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-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.clutch {
              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="%23ff3d2e">Clutch</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 */

.qz9x-mini-loader {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
  animation: qz9xSpin 0.6s linear infinite;
}

@keyframes qz9xSpin {
  to { transform: rotate(360deg); }
}



.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}