/* ==========================================================================
   RIHAM TRADER - Premium Custom CSS (Mockup Exact Match)
   ========================================================================== */

/* 1. Imports and Variables */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color System */
  --bg-primary-1: #030a13;
  --bg-primary-2: #051220;
  --bg-primary-3: #081a2b;
  --bg-terminal-card: rgba(6, 19, 34, 0.65);
  
  --color-cyan: #36f0d0;
  --color-cyan-bright: #55e8ff;
  --color-blue: #3b82f6;
  --color-green: #35e6a5;
  --color-purple: #9b7cff;
  --color-white: #f5f9ff;
  --color-muted: #6e8498;
  --color-text-desc: #a4b3c1;

  --border-glass: rgba(54, 240, 208, 0.15);
  --border-glass-hover: rgba(54, 240, 208, 0.35);
  --bg-glass: rgba(13, 38, 59, 0.35);
  --bg-glass-hover: rgba(16, 47, 73, 0.55);
  --glass-blur: blur(20px) saturate(180%);

  /* Typography */
  --font-bangla: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --font-english: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;

  /* Scrollbars */
  --scrollbar-thumb: var(--color-cyan);
  --scrollbar-track: var(--bg-primary-1);
}

/* 2. Global Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary-1);
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(8, 26, 43, 0.8) 0%, rgba(3, 10, 19, 1) 100%),
    radial-gradient(circle at 10% 80%, rgba(54, 240, 208, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.04) 0%, transparent 40%);
  color: var(--color-white);
  font-family: var(--font-english);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 10px;
  overflow-x: hidden;
  position: relative;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  cursor: pointer;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(54, 240, 208, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 240, 208, 0.01) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

@supports not (scrollbar-color: auto) {
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
  }
  ::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
  font-family: var(--font-bangla);
}

/* 3. High-Tech Terminal Chassis */
.terminal-frame {
  width: 100%;
  max-width: 500px; /* Constrains display to a centered UI frame matching mobile mockups exactly */
  background: var(--bg-terminal-card);
  border: 1px solid rgba(54, 240, 208, 0.15);
  border-radius: 28px;
  padding: 28px 20px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  z-index: 2;
  overflow: hidden;
}

/* Corner L-Brackets */
.terminal-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--color-cyan);
  border-left: 3px solid var(--color-cyan);
  border-top-left-radius: 28px;
  pointer-events: none;
}

.terminal-frame::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid var(--color-cyan);
  border-right: 3px solid var(--color-cyan);
  border-bottom-right-radius: 28px;
  pointer-events: none;
}

/* 4. Top Status Header */
.status-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

.premium-hub-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

/* Verified Pill Toggle Style */
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 19, 34, 0.6);
  border: 1px solid rgba(54, 240, 208, 0.15);
  border-radius: 20px;
  padding: 4px 6px 4px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-cyan);
}

.verified-badge-icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.verified-toggle {
  width: 26px;
  height: 16px;
  background: rgba(54, 240, 208, 0.2);
  border: 1px solid var(--color-cyan);
  border-radius: 10px;
  position: relative;
  display: inline-block;
}

.verified-toggle-dot {
  width: 10px;
  height: 10px;
  background: var(--color-cyan);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  right: 2px;
  box-shadow: 0 0 6px var(--color-cyan);
}

/* Centered Market Live Pill */
.market-live-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.market-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 19, 34, 0.45);
  border: 1px solid rgba(100, 220, 255, 0.08);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 11px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
}

.market-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-cyan);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.market-icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.market-divider, .ticker-divider {
  color: rgba(100, 220, 255, 0.15);
  font-weight: 300;
}

.market-tickers {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-weight: 600;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
}

.market-green {
  color: var(--color-green);
  font-weight: 700;
  margin-left: 4px;
}

/* Segmented Status Grid */
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(100, 220, 255, 0.08);
  border-bottom: 1px solid rgba(100, 220, 255, 0.08);
  padding: 14px 0;
  margin-bottom: 12px;
}

.status-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.status-col:not(:last-child) {
  border-right: 1px solid rgba(100, 220, 255, 0.08);
}

.status-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.status-val {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.font-digit {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.status-ready {
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ready-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-green);
  animation: pulse 1.5s infinite alternate;
}

/* 5. Hero Area */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 24px;
}

/* Logo Presentation */
.logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-circle {
  position: absolute;
  border: 1px dotted rgba(54, 240, 208, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-circle-1 {
  width: 150px;
  height: 150px;
  animation: rotateOrbit 24s linear infinite;
}

.orbit-circle-2 {
  width: 128px;
  height: 128px;
  animation: rotateOrbit 16s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-cyan);
}

.orbit-dot-1 {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot-2 {
  bottom: 10px;
  left: 20%;
}

.logo-glow-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 240, 208, 0.15) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 18px;
  border: 2px solid var(--color-cyan);
  box-shadow: 
    0 0 20px rgba(54, 240, 208, 0.2),
    inset 0 0 10px rgba(54, 240, 208, 0.1);
  background-color: var(--bg-primary-1);
  padding: 4px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-container:hover .logo-img {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(54, 240, 208, 0.35);
}

/* Brand Heading */
.brand-heading {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
  line-height: 1.1;
}

/* Glowing Divider */
.gradient-divider {
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-cyan) 30%, var(--color-cyan-bright) 50%, var(--color-blue) 70%, transparent);
  margin: 10px auto 20px auto;
  position: relative;
  box-shadow: 0 0 10px rgba(54, 240, 208, 0.3);
}

.gradient-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-cyan);
}

/* Description */
.hero-desc {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text-desc);
  margin-bottom: 24px;
  padding: 0 6px;
}

/* 6. Main CTA Button */
.cta-container {
  width: 100%;
  margin-bottom: 24px;
}

.vip-cta-btn {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(90deg, #36f0d0 0%, #55e8ff 100%);
  color: #030a13;
  border: none;
  border-radius: 16px;
  font-family: var(--font-bangla);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 25px rgba(54, 240, 208, 0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 10;
}

.vip-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.5s;
}

.vip-cta-btn:hover::before {
  left: 100%;
  transition: 0.6s ease;
}

.vip-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(54, 240, 208, 0.4);
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-telegram-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #030a13;
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vip-cta-btn:hover .cta-telegram-circle {
  transform: scale(1.05);
}

.telegram-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  stroke-width: 3;
  transition: transform 0.25s ease;
}

.vip-cta-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* 7. Smart Resource Card */
.smart-resource-card {
  width: 100%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.smart-resource-card:hover {
  border-color: var(--border-glass-hover);
  background: var(--bg-glass-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.sr-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sr-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(54, 240, 208, 0.06);
  border: 1px dashed rgba(54, 240, 208, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
}

.sr-chart-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.sr-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sr-tag-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--color-cyan);
}

.sr-title {
  font-family: var(--font-bangla);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.sr-subtitle {
  font-family: var(--font-bangla);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
}

/* Open Guide Action Pill */
.sr-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 19, 34, 0.55);
  border: 1px solid rgba(100, 220, 255, 0.12);
  border-radius: 30px;
  padding: 5px 5px 5px 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  transition: border-color 0.3s, color 0.3s;
}

.smart-resource-card:hover .sr-action-pill {
  border-color: rgba(54, 240, 208, 0.25);
  color: var(--color-white);
}

.sr-circle-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-cyan);
  color: #030a13;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.smart-resource-card:hover .sr-circle-arrow {
  transform: translateX(2px);
  background: var(--color-cyan-bright);
}

.sr-circle-arrow svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* 8. Feature Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  width: 100%;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: var(--glass-blur);
  border-radius: 18px;
  padding: 16px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  background: var(--bg-glass-hover);
}

.feature-card.f-cyan {
  --theme-color: var(--color-cyan);
}
.feature-card.f-blue {
  --theme-color: var(--color-blue);
}
.feature-card.f-purple {
  --theme-color: var(--color-purple);
}

.feature-card:hover {
  border-color: var(--theme-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.05);
}

.feature-icon-wrapper svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.feature-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
}

/* 9. Security & Access strip */
.security-strip {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.security-main-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bangla);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
}

.security-shield-icon {
  width: 14px;
  height: 14px;
  color: var(--color-cyan);
}

.benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
  flex-wrap: wrap;
}

.benefit-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.benefit-dot {
  font-size: 11px;
}

.market-connection-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-top: 4px;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 12px;
}

.waveform-bar {
  width: 2px;
  height: 100%;
  background-color: var(--color-cyan);
  border-radius: 1px;
  animation: soundwave 1.2s ease-in-out infinite alternate;
}

.waveform-bar:nth-child(2) { animation-delay: 0.15s; height: 60%; }
.waveform-bar:nth-child(3) { animation-delay: 0.3s; height: 80%; }
.waveform-bar:nth-child(4) { animation-delay: 0.45s; height: 40%; }
.waveform-bar:nth-child(5) { animation-delay: 0.6s; height: 70%; }

/* 10. Seamless Scrolling Marquee Strip */
.marquee-strip-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(100, 220, 255, 0.08);
  border-bottom: 1px solid rgba(100, 220, 255, 0.08);
  background: rgba(13, 38, 59, 0.2);
  padding: 12px 0;
  margin: 16px 0 24px 0;
}

.marquee-track {
  display: inline-block;
}

.marquee-content {
  display: inline-block;
  animation: marqueeAnimation 22s linear infinite;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}

.marquee-content span {
  margin: 0 8px;
}

.strip-diamond {
  color: var(--color-cyan);
  font-size: 7px;
  margin: 0 4px;
}

@keyframes marqueeAnimation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 11. Financial Disclaimer */
.disclaimer-card {
  background: rgba(3, 10, 19, 0.35);
  border: 1px dashed rgba(100, 220, 255, 0.06);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  width: 100%;
}

.disclaimer-text {
  font-family: var(--font-bangla);
  font-size: 11px;
  line-height: 1.7;
  color: var(--color-muted);
  font-weight: 500;
}

/* 12. Footer */
footer {
  border-top: 1px solid rgba(100, 220, 255, 0.05);
  padding: 24px 0 8px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.footer-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-muted);
}

.footer-lightning {
  color: #ffde43;
}

.footer-bottom {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

/* 13. Animations */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rotateOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes soundwave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1.3); }
}

/* 14. Responsive Layout Adjustments */
@media (max-width: 480px) {
  .terminal-frame {
    border-radius: 20px;
    padding: 20px 14px;
    margin: 10px auto;
  }
  
  .terminal-frame::before { border-top-left-radius: 20px; }
  .terminal-frame::after { border-bottom-right-radius: 20px; }

  .brand-heading {
    font-size: 32px;
  }
  
  .market-live-pill {
    padding: 6px 12px;
    font-size: 10px;
    gap: 8px;
  }

  .status-stat-val {
    font-size: 11px;
  }

  .status-lbl {
    font-size: 8px;
  }

  .vip-cta-btn {
    height: 58px;
    padding: 0 16px;
    font-size: 17px;
  }

  .cta-telegram-circle {
    width: 32px;
    height: 32px;
  }

  .telegram-icon {
    width: 16px;
    height: 16px;
  }

  .smart-resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
  }

  .sr-left {
    flex-direction: column;
    gap: 10px;
  }

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

  .sr-subtitle {
    font-size: 11px;
  }

  .features-grid {
    grid-template-columns: 1fr; /* Collapses features on narrow viewports for maximum readability */
  }

  .feature-card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 16px;
    gap: 16px;
    text-align: left;
  }

  .feature-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .feature-text {
    font-size: 11px;
  }

  .benefits-row {
    gap: 10px;
    font-size: 11px;
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  .orbit-circle-1,
  .orbit-circle-2,
  .ready-dot,
  .waveform-bar,
  .marquee-content,
  .vip-cta-btn::before {
    animation: none !important;
    transition: none !important;
  }
  
  .logo-img,
  .feature-card,
  .sr-circle-arrow,
  .vip-cta-btn {
    transition: none !important;
  }
  
  .vip-cta-btn:hover .arrow-icon {
    transform: none !important;
  }
}
