

/*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;
    }

    /* ==============================
       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 {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .carousel-slides {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.6s ease-in-out;
    }

    .carousel-slide {
        min-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: 320px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .middle-panel,
    .carousel-container,
    .carousel-slide {
        height: 240px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .middle-panel,
    .carousel-container,
    .carousel-slide {
        height: 200px;
    }
}
    /* ==============================
       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-weight: bold;
        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: 4px;
    background: linear-gradient(to right,#3a5fb0 0%, #3a5fb0 50%, #1f3342 50%, #1f3342 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: 1240px;
    margin: 80px auto;
    background: #3a5fb0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
  }

  .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: 55% 45%;
    min-height: 520px;
  }

  /* LEFT CONTENT */
  .b2b-left {
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .b2b-heading {
    margin-bottom: 8px;
  }

  .b2b-heading h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
  }

  .b2b-heading p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
  }

  /* FEATURES */
  .b2b-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    max-width: 48px;
    min-height: 48px;
    max-height: 48px;
    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 svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .feature-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
  }

  .feature-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
  }

  /* CTA BUTTON */
  .b2b-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .b2b-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #3a5fb0;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    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: #1f3342;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    text-decoration: none;
  }

  .b2b-cta svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    max-width: 18px;
    max-height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .b2b-link {
    color: #ffffff;
    font-size: 15px;
    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: 12px;
    padding-top: 8px;
  }

  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
  }

  .trust-badge-item svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
  }

  .trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
  }

  /* RESPONSIVE */
  @media (max-width: 1200px) {
    .b2b-left {
      padding: 60px 60px;
    }

    .b2b-heading h2 {
      font-size: 38px;
    }
  }

  @media (max-width: 968px) {
    .b2b-banner {
      margin: 60px auto;
    }

    .b2b-banner-inner {
      grid-template-columns: 1fr;
    }

    .b2b-left {
      padding: 50px 40px;
    }

    .b2b-right {
      min-height: 320px;
    }

    .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;
    max-width: 1250px;
    margin: 80px auto;
    background: #3a5fb0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 93%;
    }

    .b2b-banner {
      margin: 40px 16px;
      border-radius: 12px;
    }

    .b2b-banner-inner {
      min-height: auto;
    }

    .b2b-left {
      padding: 40px 28px;
      gap: 32px;
    }

    .b2b-heading h2 {
      font-size: 28px;
    }

    .b2b-heading p {
      font-size: 16px;
    }

    .b2b-features {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }

    .feature-content h3 {
      font-size: 16px;
    }

    .feature-content p {
      font-size: 13px;
    }

    .b2b-cta-wrapper {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .b2b-cta {
      width: 100%;
      justify-content: center;
      padding: 14px 28px;
    }

    .b2b-right {
      min-height: 280px;
    }

    .trust-badge {
      flex-wrap: wrap;
    }
  }

/* BANNER 2.1 ENDS */


/* BANNER 3 */

  .gtp-slider-container {
    width: 100%;
    margin: 50px 0;
    background: linear-gradient(to bottom right, #1f3342 0%, #1f3342 50%, #3a5fb0 50%, #3a5fb0 100%);
    overflow: hidden;
    overflow-x: hidden;
    padding: 60px 0 70px 0;
    position: relative;
    user-select: none;
    /* GPU acceleration */
    transform: translateZ(0);
    will-change: auto;
  }

  .gtp-slider-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    padding: 0 40px;
  }

  .gtp-slider-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
  }

  .gtp-slider-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .gtp-slide-track {
    display: flex;
    gap: 20px;
    padding: 0 60px;
    /* Optimize for transforms */
    transform: translate3d(0, 0, 0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .gtp-slide-track.dragging {
    cursor: grabbing;
    transition: none;
  }

  .gtp-slide-item {
    width: 280px;
    min-width: 280px;
    height: 240px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    /* GPU acceleration */
    transform: translateZ(0);
    backface-visibility: hidden;
    /* Remove pointer-events: none to enable hover */
    pointer-events: auto;
    /* Only animate transform and box-shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Optimize overlay - only show on hover */
  .gtp-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    /* GPU layer */
    will-change: opacity;
  }

  .gtp-slide-item:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  }

  .gtp-slide-item:hover::before {
    opacity: 1;
  }

  .gtp-slide-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    /* Prevent layout shift */
    background: #e0e0e0;
    /* Disable transform on image for better performance */
    transition: none;
  }

  .gtp-slide-content {
    padding: 20px;
    position: relative;
    z-index: 2;
  }

  .gtp-slide-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
  }

  /* NAV BUTTONS */
  .gtp-nav-btn {
    position: absolute;
    top: calc(50% + 35px);
    transform: translateY(-50%) translateZ(0);
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    z-index: 50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backface-visibility: hidden;
  }

  .gtp-nav-btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.08) translateZ(0);
  }

  .gtp-nav-btn:active {
    transform: translateY(-50%) scale(0.96) translateZ(0);
  }

  .gtp-nav-prev { left: 20px; }
  .gtp-nav-next { right: 20px; }

  .gtp-nav-btn svg {
    width: 26px;
    height: 26px;
    fill: #1e3c72;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .gtp-slider-container {
      padding: 40px 0 50px 0;
    }

    .gtp-slider-header {
      margin-bottom: 30px;
      padding: 0 20px;
    }

    .gtp-slider-title {
      font-size: 26px;
    }

    .gtp-slide-track {
      gap: 16px;
      padding: 0 20px;
    }

    .gtp-slide-item {
      width: 240px;
      min-width: 240px;
      height: 240px;
    }

    .gtp-slide-item img {
      height: 160px;
    }
    
    .gtp-nav-btn {
      width: 44px;
      height: 44px;
    }
  }

/* 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 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    background: #3159d7;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: clamp(16px, 2.5vw, 20px);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: #1565c0;
    transform: translateY(0);
}

.nav-btn:active {
    transform: translateY(0);
    outline: none;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.nav-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* 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 {
  background: #1f3342;
  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: #ffffff;
}

.btg-title-divider-v2 {
  height: 3px;
  background: #ffffff;
  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 #dfe5ec;
  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 rgba(31, 51, 66, 0.14);
  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 {
  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: #ffffff;
  font-size: clamp(12px, 1.4vw, 12.5px);
  text-decoration: none;
  line-height: 1;
  border-radius: 4px;
  box-sizing: border-box;
  background: #3a5fb0;
  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: #1f3342;
  border-color: #1f3342;
  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;
        }

        @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;
    }

    .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);
    }

    /* 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  */
        .x9k2m4p7 {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            position: relative;
            width: 100%;
            margin: 80px auto;
            padding: 0;
            overflow: hidden;

            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }



        .t7j4h9v2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(135deg, rgba(58, 95, 176, 0.75) 0%, rgba(45, 75, 140, 0.75) 100%);
            z-index: 2;
        }

        .b3n8m6k5 {
            position: relative;
            z-index: 3;
            padding: 70px 50px;
        }

        .y4l9p2d8 {
            text-align: center;
            margin-bottom: 60px;
            animation: a1s7g4f9 0.8s ease;
        }

        @keyframes a1s7g4f9 {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .y4l9p2d8 h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .y4l9p2d8 p {
            font-size: clamp(16px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .c8r5t3w9 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .f6h2j8n4 {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            animation: d9k3l7m2 0.8s ease backwards;
        }

        .f6h2j8n4:nth-child(1) { animation-delay: 0.1s; }
        .f6h2j8n4:nth-child(2) { animation-delay: 0.2s; }
        .f6h2j8n4:nth-child(3) { animation-delay: 0.3s; }

        @keyframes d9k3l7m2 {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .f6h2j8n4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #3a5fb0, #5d8fd8);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .f6h2j8n4:hover::before {
            transform: scaleX(1);
        }

        .f6h2j8n4:hover {
            transform: translateY(-12px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .p5v9x2z7 {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #3a5fb0, #5d8fd8);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            box-shadow: 0 10px 30px rgba(58, 95, 176, 0.3);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .f6h2j8n4:hover .p5v9x2z7 {
            transform: rotateY(360deg);
            box-shadow: 0 15px 40px rgba(58, 95, 176, 0.5);
        }

        .p5v9x2z7::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            z-index: -1;
        }

        .p5v9x2z7 img {
            width: 100px !important;
            height: 100px !important;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .g8m4r6t3 {
            font-size: clamp(18px, 2.5vw, 22px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .w2n7k5j9 {
            font-size: clamp(14px, 1.8vw, 16px);
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        @keyframes h3f8d2k6 {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .s4x9q7v2 {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
            pointer-events: none;
        }

        .l6p3m8r1 {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -200px;
            z-index: 2;
        }

        .z9h5n2t4 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -150px;
            z-index: 2;
        }

        @media (max-width: 992px) {
            .c8r5t3w9 {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .b3n8m6k5 {
                padding: 50px 30px;
            }
        }

        @media (max-width: 640px) {
            .c8r5t3w9 {
                grid-template-columns: 1fr;
            }

            .b3n8m6k5 {
                padding: 40px 20px;
            }
        }
/* BANNER 11 Ending  */

/* BANNER 12 Starting  */

    .btg-sd-wrapper-7a9f2 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 1200px;
        margin: 0 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: center;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        gap: 40px;
    }

    .btg-sd-header-block-2x7n4 {
        text-align: left;
        flex: 1;
    }

    .btg-sd-main-heading-9p5q6 {
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1px;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .btg-sd-sub-heading-1r8s7 {
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 10px;
    }

    .btg-sd-description-text-3t6u8 {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        max-width: 550px;
    }

    .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;
        padding: 15px 0;
        margin-bottom: 25px;
        overflow-x: hidden;
    }

    .btg-sd-slider-track-9d1e5 {
        display: flex;
        gap: 20px;
        animation: btg-sd-scroll-anim-3f6g8 30s linear infinite;
        width: fit-content;
    }

    .btg-sd-slider-track-9d1e5:hover {
        animation-play-state: paused;
    }

    @keyframes btg-sd-scroll-anim-3f6g8 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .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: all 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-bottom: 5px;
    }

    .btg-sd-card-price-4p2q0 {
        font-size: 18px;
        font-weight: 700;
        color: #3a5fb0;
        font-family: 'Courier New', monospace;
    }

    .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);
    }

    @media (max-width: 992px) {
        .btg-sd-top-container-4k8m3 {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .btg-sd-counter-container-5v9w0 {
            text-align: left;
        }
    }

    @media (max-width: 768px) {
        .btg-sd-wrapper-7a9f2 {
            padding: 30px 20px;
        }

        .btg-sd-main-heading-9p5q6 {
            font-size: 26px;
        }

        .btg-sd-counter-display-6z4a2 {
            font-size: 34px;
        }

        .btg-sd-card-item-2h8i4 {
            flex: 0 0 220px;
        }
    }

    @media (max-width: 480px) {
        .btg-sd-main-heading-9p5q6 {
            font-size: 22px;
        }

        .btg-sd-counter-display-6z4a2 {
            font-size: 28px;
        }

        .btg-sd-card-item-2h8i4 {
            flex: 0 0 180px;
        }
    }

/* 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: linear-gradient(
      rgba(31, 51, 66, 0.85),
      rgba(31, 51, 66, 0.85)
    ),
    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%;
}

/* FIXED HEIGHT CONTAINER */
.slides {
  position: relative;
  min-height: 300px;
}

/* SLIDES */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.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;
}

/* NAV BUTTONS */
.slider-nav {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  align-items: center;
}

.nav-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  backdrop-filter: blur(5px);
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
    box-shadow: none !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(0);
}

.nav-btn:hover {
  background: rgba(31, 51, 66, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}



/* Responsive */
@media (max-width: 968px) {
  .testimonial-wrapper {
    flex-direction: column;
    min-height: auto;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
    min-height: 300px;
  }

  .title {
    font-size: clamp(32px, 6vw, 40px);
  }

  .testimonial-right {
    padding: clamp(40px, 6vw, 60px);
  }

  .slides {
    min-height: 280px;
  }

  .quote {
    font-size: 80px;
  }

  .review {
    font-size: clamp(16px, 2vw, 18px);
  }
}

@media (max-width: 640px) {
  .testimonial-left {
    min-height: 250px;
  }

  .title-description {
    font-size: 14px;
  }

  .nav-btn {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* BANNER 13 Ending  */


/* Subscribe to our newsletter */
    .newsletter-section {
        margin: 80px auto;
        max-width: 1200px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .newsletter-wrapper {
        display: flex;
        align-items: stretch;
        position: relative;
    }

    .newsletter-wrapper::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ffffff;
        transform: translateX(-50%);
        z-index: 1;
    }

    .newsletter-content {
        flex: 1;
        background: #3a5fb0;
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        transition: transform 0.3s ease;
    }

    .newsletter-content:hover {
        transform: translateY(-5px);
    }

    .newsletter-title {
        color: #ffffff;
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 12px 0;
        letter-spacing: 0.5px;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .newsletter-subtitle {
        color: #e8f0ff;
        font-size: 16px;
        font-weight: 400;
        margin: 0;
        line-height: 1.5;
        font-family: 'Segoe UI', Arial, sans-serif;
        opacity: 0.95;
    }

    .newsletter-form-container {
        flex: 1;
        background: #1f3342;
        padding: 50px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .newsletter-form-container:hover {
        transform: translateY(-5px);
    }

    .newsletter-form {
        display: flex;
        background: #ffffff;
        border-radius: 50px;
        overflow: hidden;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 450px;
    }

    .newsletter-form:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    }

    .newsletter-input {
        flex: 1;
        padding: 16px 24px;
        border: none;
        font-size: 15px;
        color: #333;
        outline: none;
        font-family: 'Segoe UI', Arial, sans-serif;
        background: transparent;
    }

    .newsletter-input::placeholder {
        color: #aaa;
    }

    .newsletter-button {
        background: linear-gradient(135deg, #3a5fb0 0%, #2a4a8a 100%);
        border: none;
        padding: 16px 32px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        font-family: 'Segoe UI', Arial, sans-serif;
        border-radius: 50px;
        margin: 3px;
    }

    .newsletter-button:hover {
        background: linear-gradient(135deg, #2a4a8a 0%, #1f3342 100%);
        transform: scale(1.02);
    }

    .newsletter-button:active {
        transform: scale(0.98);
    }

    .newsletter-button svg {
        width: 18px;
        height: 18px;
        fill: #ffffff;
        transition: transform 0.3s ease;
    }

    .newsletter-button:hover svg {
        transform: translateX(3px);
    }

    @media (max-width: 992px) {
        .newsletter-section {
            margin: 60px 20px;
        }

        .newsletter-content,
        .newsletter-form-container {
            padding: 45px 35px;
        }

        .newsletter-title {
            font-size: 28px;
        }

        .newsletter-subtitle {
            font-size: 15px;
        }
    }

    @media (max-width: 768px) {
        .newsletter-section {
            margin: 50px 20px;
            border-radius: 12px;
        }

        .newsletter-wrapper {
            flex-direction: column;
        }

        .newsletter-wrapper::after {
            left: 0;
            right: 0;
            top: 50%;
            bottom: auto;
            width: auto;
            height: 2px;
            transform: translateY(-50%);
        }

        .newsletter-content {
            text-align: center;
            padding: 40px 30px;
        }

        .newsletter-form-container {
            padding: 40px 30px;
        }

        .newsletter-title {
            font-size: 26px;
        }

        .newsletter-subtitle {
            font-size: 14px;
        }
    }

    @media (max-width: 480px) {
        .newsletter-section {
            margin: 40px 15px;
        }

        .newsletter-content,
        .newsletter-form-container {
            padding: 35px 20px;
        }

        .newsletter-title {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .newsletter-subtitle {
            font-size: 13px;
        }

        .newsletter-input {
            padding: 14px 20px;
            font-size: 14px;
        }

        .newsletter-button {
            padding: 14px 26px;
            font-size: 14px;
        }

        .newsletter-button svg {
            width: 16px;
            height: 16px;
        }
    }/* Endign of our newsletter */


