@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Space+Grotesk:wght@300..700&display=swap');
*{
  font-family: "Lato", sans-serif;;
}
/* Hide scrollbar utility for clean mobile trays */
    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    .sheared-btn {
      clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    }
    .slide-content-item {
      transform: translateY(24px);
      opacity: 0;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
    }
    /* Lift text smoothly when its parent container active state triggers */
    .slide.active .slide-content-item {
      transform: translateY(0);
      opacity: 1;
    }
    .slide.active .delay-1 { transition-delay: 150ms; }
    .slide.active .delay-2 { transition-delay: 300ms; }
    .slide.active .delay-3 { transition-delay: 450ms; }
    .slider-track {
      display: flex;
      transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }


    .image-track {
      display: flex;
      transition: transform 0.75s cubic-bezier(0.2, 1, 0.2, 1);
      will-change: transform;
    }
    /* Cinematic fluid transition mechanics for text configurations */
    .text-content-wrapper {
      opacity: 0;
      transform: translateY(25px);
      transition: transform 0.7s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.6s ease;
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .text-content-wrapper.active {
      opacity: 1;
      transform: translateY(0);
      position: relative;
      pointer-events: auto;
    }
     .smooth-track {
      transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }
    .hero-card img {
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .hero-card:hover img {
      transform: scale(1.04);
    }
    
    /* Smooth arrow translation on hover */
    .arrow-icon {
      transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .hero-card:hover .arrow-icon {
      transform: translate(2px, -2px);
    }

    /* Cut corner decoration layout style */
    .cut-corner-btn {
      clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
    }
    
    .bento-card img {
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .bento-card:hover img {
      transform: scale(1.03);
    }
    .slider-track {
      display: flex;
      align-items: center;
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
    }

    /* Transition classes to achieve identical structural sizing transformations */
  .feature-card {
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                  box-shadow 0.6s ease, 
                  opacity 0.6s ease;
    }

    /* Honeycomb grid simulation for the active thumbnail overlay */
    .honeycomb-bg {
      background-image: radial-gradient(circle, rgba(0,0,0,0) 20%, #151515 20%, #151515 40%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%),
                        radial-gradient(circle, rgba(0,0,0,0) 20%, #151515 20%, #151515 40%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 100%);
      background-size: 12px 12px;
      background-position: 0 0, 6px 6px;
      background-color: #1a1a1a;
    }
    .no-scrollbar::-webkit-scrollbar {
      display: none; /* Safari and Chrome */
    }
    .no-scrollbar {
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }




    @media (min-width: 1024px) {
      .v2-angled-split-bg {
        /* background: linear-gradient(90deg, #0f4c81 0%, #0f4c81 35%, #ffffff 35.01%, #ffffff 100%); */
      }
    }

    /* Textured road line dash animation style helper */
    .v2-road-marking {
      background-image: linear-gradient(to right, #ffffff 60%, transparent 40%);
      background-size: 40px 100%;
    }



    /* product card  */
    .hero-style-upgrade-scope {
            max-width: 1300px;
            margin: 40px auto;
            padding: 0 20px;
            overflow-x: hidden;
        }

        .hero-style-upgrade-title {
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 25px;
            color: #000000;
        }

        /* Navigation Filter Categories */
        .hero-style-upgrade-tabs {
            display: flex;
            gap: 30px;
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 10px;
            margin-bottom: 35px;
            list-style: none;
        }

        .hero-style-upgrade-tab-item {
            font-size: 16px;
            font-weight: 500;
            color: #555555;
            cursor: pointer;
            position: relative;
            padding-bottom: 10px;
        }

        .hero-style-upgrade-tab-item.hero-style-active-tab {
            color: #000000;
            font-weight: 700;
        }

        .hero-style-upgrade-tab-item.hero-style-active-tab::after {
            content: '';
            position: absolute;
            bottom: -11px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #e31837;
        }

        /* Outer Viewing Window */
        .hero-style-upgrade-view-window {
            overflow: hidden;
            width: 100%;
            margin-bottom: 40px;
        }

        /* Sliding Track Container */
        .hero-style-upgrade-track {
            display: flex;
            gap: 20px;
            width: 100%;
        }

        /* Custom Clip Path Product Cards */
        .hero-style-upgrade-card {
            background-color: #e5e5e5;
            padding: 25px 20px 20px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            /* Exactly 4 cards displayable per screen row layout view */
            flex: 0 0 calc(25% - 15px); 
            position: relative;
            cursor: pointer;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
        }

        .hero-style-upgrade-img-frame {
            width: 100%;
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .hero-style-upgrade-img-frame img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .hero-style-upgrade-card-title {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.4;
            margin-bottom: 15px;
            min-height: 40px;
            color: #111111;
        }

        .hero-style-upgrade-card-base {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .hero-style-upgrade-card-price {
            font-size: 22px;
            font-weight: 600;
            color: #000000;
        }

        .hero-style-upgrade-card-arrow svg {
            width: 18px;
            height: 18px;
        }

        /* Action/Interface Base Footer Row */
        .hero-style-upgrade-footer {
            display: flex;
            gap: 20px;
            /* justify-content: space-between; */
            align-items: center;
        }

        .hero-style-upgrade-explore-action {
            border: 1px solid #FF2E17;;
            background: transparent;
            color: #FF2E17;;
            padding: 12px 35px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero-style-upgrade-explore-action:hover {
            background-color: #FF2E17;
            color: #ffffff;
        }

        .hero-style-upgrade-nav-cluster {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .hero-style-upgrade-nav-arrow-btn {
            cursor: pointer;
            background: none;
            border: none;
            display: flex;
            align-items: center;
        }

        .hero-style-upgrade-nav-arrow-btn svg {
            width: 18px;
            height: 24px;
            fill: #999999;
            transition: fill 0.3s;
        }

        .hero-style-upgrade-nav-arrow-btn:hover svg {
            fill: #e31837;
        }

        .hero-style-upgrade-pagination {
            display: flex;
            gap: 8px;
        }

        .hero-style-upgrade-indicator-dot {
            width: 25px;
            height: 4px;
            background-color: #cccccc;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .hero-style-upgrade-indicator-dot.hero-style-active-dot {
            background-color: #FF2E17;
        }

        /* Breakpoints Responsive Management */
        @media (max-width: 1024px) {
            .hero-style-upgrade-card {
                flex: 0 0 calc(50% - 10px); /* 2 items visible */
            }
        }

        @media (max-width: 600px) {
            .hero-style-upgrade-card {
                flex: 0 0 100%; /* 1 item visible */
            }
            .hero-style-upgrade-title {
                font-size: 32px;
            }
            .hero-style-upgrade-footer {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
        }
        @keyframes atherMarqueeLoop {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
  }
  .animate-ather-marquee {
    animation: atherMarqueeLoop 25s linear infinite;
  }
  .ather-banner-marquee-track:hover .animate-ather-marquee {
    animation-play-state: paused; /* Hover karne par marquee smooth ruk jayega */
  }
  /* Faqsection  */
  .ola-faq-root-container {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 12px;
    font-family: 'Inter', sans-serif;
    color: #000000;
  }

  .ola-faq-inner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Desktop Two-Column Layout Setup */
  @media (min-width: 992px) {
    .ola-faq-inner-wrapper {
      grid-template-columns: 4.5fr 7.5fr;
      gap: 80px;
    }
  }

  /* Left Column Styling */
  .ola-faq-heading-block {
    position: relative;
  }

  .ola-faq-main-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
  }

  @media (min-width: 768px) {
    .ola-faq-main-title {
      font-size: 52px;
    }
  }

  .ola-faq-sub-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    max-width: 400px;
  }

  /* Right Column Accordion List */
  .ola-faq-accordion-group {
    display: flex;
    flex-direction: column;
  }

  .ola-faq-item {
    border-bottom: 1px solid #eaeaea;
  }

  /* Interactive Button Header */
  .ola-faq-trigger-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: transparent;
    border: none;
    padding: 24px 0;
    cursor: pointer;
    outline: none;
    gap: 20px;
  }

  .ola-faq-question-text {
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    line-height: 1.4;
    transition: color 0.2s ease;
  }

  @media (min-width: 768px) {
    .ola-faq-question-text {
      font-size: 21px;
    }
  }

  .ola-faq-trigger-btn:hover .ola-faq-question-text {
    color: #000000;
  }

  .ola-faq-arrow-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #888888;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
  }

  .ola-faq-arrow-icon svg {
    width: 18px;
    height: 18px;
  }

  /* JavaScript Panel Animation State */
  .ola-faq-panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ola-faq-answer-inner {
    padding-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    max-width: 90%;
  }

  /* Active CSS Modifier Transitions via JS Toggle */
  .ola-faq-item.is-expanded .ola-faq-arrow-icon {
    transform: rotate(180deg);
    color: #000000;
  }
  /* footer  */
  .bms-footer-root {
    width: 100%;
    background-color: #171717;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
  }
  .bms-footer-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Main Container Split Grid Setup */
  .bms-footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  @media (min-width: 992px) {
    .bms-footer-container {
      grid-template-columns: 4fr 8fr; /* 1:2 Premium Split ratio look from image_627d20 */
    }
  }

  /* Left Panel Configuration (Darker Contrast) */
  .bms-footer-brand-pane {
    background-color: #1e1e1e;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
  }

  .bms-footer-logo-wrap {
    margin-bottom: 35px;
  }

  .bms-footer-logo-svg {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: block;
  }

  .bms-footer-contact-box {
    margin-bottom: 40px;
  }

  .bms-footer-toll-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a3a3a3;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .bms-footer-toll-link {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.2s ease;
  }

  .bms-footer-toll-link:hover {
    color: #38bdf8;
  }

  /* Right Panel Configuration (Sleek Clean Grid) */
  .bms-footer-links-pane {
    background-color: #171717;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .bms-footer-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  @media (min-width: 576px) {
    .bms-footer-grid-layout {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
  }

  .bms-footer-col-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
  }

  .bms-footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .bms-footer-nav-link {
    font-size: 15px;
    color: #a3a3a3;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
  }

  .bms-footer-nav-link:hover {
    color: #ffffff;
    transform: translateX(4px);
  }

  /* Meta Footer Row Alignments (Bottom Bars) */
  .bms-footer-left-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
  }

  .bms-footer-right-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .bms-footer-copyright-text {
    font-size: 12px;
    line-height: 1.6;
    color: #737373;
  }

  .bms-footer-highlight {
    color: #d4d4d4;
    font-weight: 500;
  }

  .bms-footer-policy-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }

  .bms-footer-policy-link {
    font-size: 13px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s;
  }

  .bms-footer-policy-link:hover {
    color: #ffffff;
  }

  /* WhatsApp Premium Floating Pulse Button */
  .bms-footer-whatsapp-anchor {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .bms-footer-whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  .bms-footer-whatsapp-anchor:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  }
  /* whatsapp buton  */
  .premium-wa-wrapper {
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 65px;
    height: 65px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  /* Main Button Base Styling */
  .premium-wa-anchor {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(18, 140, 126, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
  }

  .premium-wa-icon {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* Premium LED Beep Indicator (Glow Blinking Dot) */
  .premium-wa-led-beep {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background-color: #ff3b30; /* Premium Red Alert Dot (You can change to #ffffff if needed) */
    border: 2px solid #ffffff;
    border-radius: 50%;
    z-index: 4;
    box-shadow: 0 0 8px #ff3b30;
    animation: visualBeepGlow 1.5s infinite ease-in-out;
  }

  @keyframes visualBeepGlow {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
      box-shadow: 0 0 4px #ff3b30;
    }
    50% {
      transform: scale(1.15);
      opacity: 0.4;
      box-shadow: 0 0 12px #ff3b30;
    }
  }

  /* Advanced Radar Wave Pulse Ring (Continuous Expand Animation) */
  .premium-wa-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: 1;
    pointer-events: none;
    animation: premiumWaveRadar 2.5s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
  }

  @keyframes premiumWaveRadar {
    0% {
      transform: scale(0.95);
      opacity: 0.6;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  /* Premium Hover Interactions */
  .premium-wa-wrapper:hover .premium-wa-anchor {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 20px 35px rgba(18, 140, 126, 0.5), 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .premium-wa-wrapper:hover .premium-wa-icon {
    transform: rotate(8deg) scale(1.05);
  }

  /* Interactive Chat Notification Tooltip */
  .premium-wa-tooltip {
    position: absolute;
    right: 80px;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    opacity: 0;
    transform: translateX(15px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
  }

  .premium-wa-tooltip-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50%;
    display: inline-block;
  }

  /* Show Tooltip smoothly on Hover */
  .premium-wa-wrapper:hover .premium-wa-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

/* partner form  */
  .partner-form-sticky-sidebar {
    position: fixed;
    right: 0;
    top: 65%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 9999;
    writing-mode: vertical-rl;
  }

  .partner-form-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #2563eb; /* Premium Blue Color */
    color: #ffffff;
    border: none;
    padding:14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0 8px 8px 0; /* Rounded on the outer edge side */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .partner-form-sidebar-btn:hover {
    background-color: #1d4ed8;
    padding-left: 18px; /* Slight push animation forward on hover */
  }

  .partner-form-btn-icon {
    width: 16px;
    height: 16px;
    transform: rotate(90deg); /* Counter rotates icon to match vertical text direction layout */
  }

  /* 2. Modal Overlay Engine Setup */
  .partner-form-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.4s ease;
  }

  .partner-form-overlay.hidden {
    display: none !important;
  }

  /* 3. Main Modal Box Card (image_62da62.png Blueprint structure) */
  .partner-form-modal-container {
    width: 100%;
    max-width: 580px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    border: 1px solid #d1d5db;
  }

  /* Header Box Styling */
  .partner-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
  }

  .partner-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
  }

  .partner-form-close-x {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    line-height: 1;
  }

  .partner-form-close-x:hover {
    background-color: #ef4444;
    color: #ffffff;
    border-color: #ef4444;
  }

  /* Form Body & Grid Inputs Styles */
  .partner-form-body {
    padding: 24px 20px;
    max-height: 85vh;
    overflow-y: auto;
  }

  .partner-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  @media (min-width: 480px) {
    .partner-form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .partner-form-full-width {
    margin-bottom: 16px;
  }

  /* Text & Textarea Fields Structure */
  .partner-form-input,
  .partner-form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    color: #1e293b;
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }

  .partner-form-input:focus,
  .partner-form-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb;
  }

  .partner-form-textarea {
    resize: vertical;
    font-family: inherit;
  }

  /* Terms Checkbox Row Styling */
  .partner-form-checkbox-container {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
  }

  .partner-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
  }

  .partner-form-checkbox-input {
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    cursor: pointer;
  }

  .partner-form-checkbox-text {
    font-size: 14px;
    color: #4b5563;
  }

  .partner-form-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
  }

  .partner-form-link:hover {
    text-decoration: underline;
  }

  /* Action Buttons Setup from image_62da62.png */
  .partner-form-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f3f4f6;
    padding-top: 16px;
  }

  .partner-form-btn-close {
    background-color: #0f172a; /* Slate Dark Charcoal */
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .partner-form-btn-close:hover {
    background-color: #1e293b;
  }

  .partner-form-btn-submit {
    background-color: #2563eb; /* Solid Blue Accent */
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .partner-form-btn-submit:hover {
    background-color: #1d4ed8;
  }
  /* go to top button  */
  .bms-scroll-top-btn {
    position: fixed;
    bottom: 30px; /* इसे WhatsApp बटन के ठीक ऊपर सेट किया गया है ताकि ओवरलैप न हो */
    right: 32px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #171717;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.05);
    
    /* Smooth transition for fade-in effect */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .bms-scroll-top-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  /* Active Class Modifier managed by JavaScript Trigger */
  .bms-scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Premium Hover Animation Effects */
  .bms-scroll-top-btn:hover {
    background-color: #171717;
    color: #ffffff;
    border-color: #171717;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .bms-scroll-top-btn:hover .bms-scroll-top-icon {
    transform: translateY(-3px); /* Subtle upward micro-interaction */
  }
  
  /* social media link  */
  .bms-social-only-sidebar-left {
    position: fixed;
    right: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    width: 46px; /* Uniform width layout block */
    background-color: transparent;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px 0px 0px 8px; /* Smooth rounded corners on the outer right edge */
    overflow: hidden;
    box-sizing: border-box;
  }

  .bms-social-only-sidebar-left * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* Individual Link Core Item Style */
  .bms-so-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bms-so-svg {
    width: 20px;
    height: 20px;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  /* Official Brand Identity Color Codes mapping */
  .bms-so-fb { background-color: #1877F2; }
  .bms-so-insta { background-color: #FF2E17; }
  .bms-so-linkedin { background-color: #0077B5; }

  /* Premium Text Flyout Strip Mechanism (Reveals smoothly to the RIGHT) */
  .bms-so-text {
    position: absolute;
    left: 46px; /* Hidden perfectly flush behind the sidebar block */
    background-color: inherit; /* Natively syncs background color palette */
    color: #ffffff;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px); /* Slides forward from left towards right edge */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    z-index: 1;
  }

  /* Combined Interactions Trigger Effects */
  .bms-so-link:hover {
    width: 54px; /* Subtle responsive micro-pop on hover */
  }

  .bms-so-link:hover .bms-so-svg {
    transform: scale(1.18);
  }

  .bms-so-link:hover .bms-so-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  /* navbar  */
  
  /* contact page  */
    .bms-contact-wrapper {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .bms-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
  }

  @media (min-width: 992px) {
    .bms-contact-grid {
      grid-template-columns: 4fr 7fr;
      gap: 60px;
    }
  }

  /* Left Info Card Element Styles */
  .bms-contact-info-card {
    background-color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f2f5;
    padding: 40px 35px;
    border-radius: 8px;
  }

  .bms-info-title {
    font-size: 32px;
    color: #0c2340;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-tight: -0.5px;
  }

  .bms-info-description {
    font-size: 15px;
    color: #7a8b9e;
    line-height: 1.6;
    margin: 0 0 35px 0;
  }

  .bms-info-details-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .bms-item-label {
    font-size: 16px;
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 6px 0;
  }

  .bms-item-value {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
  }

  /* Right Side Input Form Element Styles */
  .bms-contact-form-container {
    padding-top: 15px;
  }

  .bms-form-title {
    font-size: 44px;
    color: #0c2340;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
  }

  .bms-form-subtitle {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    max-w: 680px;
    margin: 0 0 40px 0;
  }

  .bms-webform {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .bms-form-row-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  @media (min-width: 640px) {
    .bms-form-row-split {
      grid-template-columns: 1fr 1fr;
    }
  }

  .bms-form-input,
  .bms-form-textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    border-radius: 4px;
    font-size: 15px;
    color: #1e293b;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .bms-form-input::placeholder,
  .bms-form-textarea::placeholder {
    color: #94a3b8;
  }

  .bms-form-input:focus,
  .bms-form-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .bms-form-textarea {
    resize: vertical;
    min-height: 140px;
  }

  .bms-action-holder {
    margin-top: 10px;
  }

  .bms-submit-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .bms-submit-btn:hover {
    background-color: #1d4ed8;
  }
  /* product detail page  */
  /* Product Detail Page Specific Scopes */
.bms-pdp-main-scope {
    width: 100%;
    overflow-x: hidden;
}

/* Image Showcase Structure Box utilizing your custom card polygon clips */
.bms-pdp-img-card {
    position: relative;
    cursor: default;
    /* Keeps exactly the same geometric edge appearance as your category view cards */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 35px), calc(100% - 35px) 100%, 0 100%);
    border-radius: 4px;
    width: 100%;
}

.bms-pdp-img-frame {
    width: 100%;
    transition: transform 0.4s ease;
}

.bms-pdp-img-card:hover .bms-pdp-img-frame {
    transform: scale(1.03);
}

/* Structural alignments override helpers */
.bms-pdp-grid {
    align-items: center;
}

@media (min-width: 992px) {
    .bms-pdp-grid {
        align-items: start;
    }
}
/* popup  */
.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
    padding:20px;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-container{
    width:100%;
    max-width:520px;
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    transform:translateY(40px);
    transition:.4s;
    box-shadow:0 25px 80px rgba(0,0,0,.2);
}

.popup-overlay.active .popup-container{
    transform:translateY(0);
}

.popup-close{
    position:absolute;
    right:15px;
    top:15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    cursor:pointer;
    font-size:24px;
}

.popup-header h2{
    margin:0;
    font-size:32px;
    font-weight:700;
    color:#111827;
}

.popup-header p{
    margin-top:10px;
    color:#6b7280;
}

.form-group{
    margin-top:18px;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #d1d5db;
    border-radius:12px;
    padding:14px 16px;
    font-size:15px;
    outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#2563eb;
}

.file-upload{
    display:block;
    border:2px dashed #d1d5db;
    border-radius:12px;
    padding:18px;
    text-align:center;
    cursor:pointer;
}

.file-upload input{
    display:none;
}

.submit-btn{
    width:100%;
    margin-top:20px;
    border:none;
    background:#0f172a;
    color:white;
    padding:15px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#2563eb;
}