
/* =============================================
   CHATBOT ADVISOR DRAWER & WIDGET
   ============================================= */
.rs-chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #091225 0%, #1e1b4b 60%, #4338ca 100%);
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rs-chat-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.55);
}
.rs-chat-fab-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(79, 70, 229, 0.45);
  animation: rsChatPulse 2.4s ease-out infinite;
}
@keyframes rsChatPulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

.rs-chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.45);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rs-chat-backdrop-visible {
  opacity: 1;
  pointer-events: auto;
}

.rs-chat-action-card {
  margin-top: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rs-chat-action-card:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}
.rs-chat-action-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.rs-chat-action-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.rs-chat-action-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rs-chat-action-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e3a8a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-chat-action-sub {
  font-size: 0.68rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-chat-action-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.rs-chat-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 580px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--default-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}
.rs-chat-drawer-open {
  transform: translateX(0);
}

.rs-chat-header {
  background: #0b132b;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.rs-chat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rs-chat-logo-box {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 158, 11, 0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  color: #f59e0b;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.rs-chat-header-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rs-chat-brand-title {
  font-family: var(--heading-font, inherit);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.rs-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: #34d399;
  font-weight: 500;
  margin-top: 2px;
}
.rs-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.rs-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-chat-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 0.18s, color 0.18s;
}
.rs-chat-btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.rs-chat-banner {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.rs-chat-banner-text {
  color: #475569;
  font-weight: 500;
}
.rs-chat-banner-link {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rs-chat-banner-link:hover {
  text-decoration: underline;
  color: #2563eb;
}

.rs-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fbfcfe;
}

.rs-chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rs-chat-welcome-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rs-chat-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0b132b;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.rs-chat-bot-avatar.mini {
  width: 26px;
  height: 26px;
  font-size: 0.7rem;
}

.rs-chat-welcome-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.86rem;
  color: #1e293b;
  line-height: 1.55;
}

.rs-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.rs-chat-row.is-user {
  justify-content: flex-end;
}
.rs-chat-row.is-bot {
  justify-content: flex-start;
}

.rs-chat-bubble {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  word-break: break-word;
}
.bubble-user {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.bubble-bot {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rs-chat-para {
  margin: 0 0 8px;
}
.rs-chat-para:last-child {
  margin-bottom: 0;
}
.rs-chat-list {
  margin: 0 0 8px;
  padding-left: 18px;
}
.rs-chat-list:last-child {
  margin-bottom: 0;
}
.rs-chat-list li {
  margin-bottom: 4px;
}
.rs-chat-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

.bubble-bot.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}
.bubble-bot.typing span {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: rsTyping 1.2s infinite ease-in-out;
}
.bubble-bot.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.bubble-bot.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes rsTyping {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.15); }
}

.rs-chat-topics-section {
  margin-top: 4px;
}
.rs-chat-topics-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.rs-chat-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rs-chat-topic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.rs-chat-topic-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  background: #f8fafc;
}
.rs-chat-topic-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rs-chat-topic-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.rs-chat-topic-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.rs-chat-topic-sub {
  font-size: 0.71rem;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
}
.rs-chat-topic-arrow {
  color: #cbd5e1;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.rs-chat-topic-card:hover .rs-chat-topic-arrow {
  color: #3b82f6;
}

.rs-chat-quick-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.rs-chat-chips-label {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}
.rs-chat-chips-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rs-chat-chip-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: #334155;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.rs-chat-chip-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.rs-chat-footer {
  padding: 14px 18px 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.rs-chat-input-wrapper {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 4px 6px 4px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rs-chat-input-wrapper:focus-within {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.rs-chat-textarea {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.84rem;
  color: #0f172a;
  outline: none;
  resize: none;
  max-height: 80px;
  font-family: inherit;
  line-height: 1.4;
  padding: 6px 0;
}
.rs-chat-textarea::placeholder {
  color: #94a3b8;
}
.rs-chat-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3b82f6;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
}
.rs-chat-send-btn:hover:not(:disabled) {
  background: #2563eb;
  transform: scale(1.05);
}
.rs-chat-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.rs-chat-footer-branding {
  text-align: center;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 8px;
}
.rs-chat-footer-branding .highlight {
  color: #334155;
  font-weight: 600;
}

@media (max-width: 640px) {
  .rs-chat-drawer {
    width: 100vw;
  }
  .rs-chat-backdrop {
    display: block;
  }
  .rs-chat-topics-grid {
    grid-template-columns: 1fr;
  }
  .rs-chat-fab {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

/* =============================================
   PRELOADER
   ============================================= */

.rs-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), visibility 0.7s ease;
  overflow: hidden;
}
.rs-preloader--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.rs-preloader__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: plFadeUp 0.5s ease both;
}
.rs-preloader__logo {
  margin-bottom: 36px;
  animation: plPulse 1.8s ease-in-out infinite;
}
.rs-preloader__bar {
  width: 220px;
  height: 3px;
  background: rgba(82,27,137,0.12);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto 16px;
}
.rs-preloader__progress {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color), var(--accent-color));
  background-size: 200% 100%;
  animation: plBar 2s ease forwards, plShimmer 1.2s linear infinite;
}
.rs-preloader__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin: 0;
}
/* Decorative orbs inside preloader */
.rs-preloader__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.rs-preloader__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,27,137,0.14) 0%, transparent 70%);
  filter: blur(80px);
  top: -180px; right: -100px;
  animation: orbDrift 10s ease-in-out infinite;
}
.rs-preloader__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -140px; left: -80px;
  animation: orbDrift 14s ease-in-out infinite 3s;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.page-enter {
  animation: pageEnter 0.32s ease forwards;
}

@keyframes plFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes plPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.8; transform: scale(1.04); }
}
@keyframes plBar {
  0%   { width: 0%; }
  30%  { width: 50%; }
  70%  { width: 80%; }
  100% { width: 100%; }
}
@keyframes plShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* =============================================
   SCROLL REVEAL — blur unblur
   (applied by MotionWrapper variant="blur")
   ============================================= */
/* Framer Motion handles the actual animation;
   this ensures no flash of blurred content on SSR */
[data-motion-blur] { will-change: filter, opacity, transform; }

/* =============================================
   BUTTON — shimmer sweep on hover
   ============================================= */
.btn-default {
  overflow: hidden;
}
.btn-default::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
  z-index: 2;
}
.btn-default:hover::after {
  transform: translateX(120%);
}

/* =============================================
   CARDS — shimmer + deeper shadow on hover
   ============================================= */
/* Apply to any card that should shimmer */
.home-service-card,
.testimonial-item,
.accordion-item,
.home-client-card,
.service-item {
  position: relative;
  overflow: hidden;
}
.home-service-card::after,
.testimonial-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255,255,255,0.05) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}
.home-service-card:hover::after,
.testimonial-item:hover::after {
  transform: translateX(120%);
}

/* Service card icon bounce on hover */
.home-service-card:hover .home-service-icon i {
  animation: iconBounce 0.5s cubic-bezier(0.36,0.07,0.19,0.97);
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0) rotate(0deg); }
  30%     { transform: translateY(-8px) rotate(-6deg); }
  60%     { transform: translateY(-4px) rotate(4deg); }
}

/* Link underline draw (nav + footer links) */
.footer-links a,
.tabs-footer-links a {
  position: relative;
  display: inline-block;
}
.footer-links a::after,
.tabs-footer-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}
.footer-links a:hover::after,
.tabs-footer-links a:hover::after {
  width: 100%;
}

/* Float card accent border on hover (hero cards) */
.hero-float-card {
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.hero-float-card:hover {
  border-color: rgba(82,27,137,0.35);
  box-shadow: 0 24px 64px rgba(82,27,137,0.2), 0 4px 16px rgba(0,0,0,0.1);
}

/* =============================================
   AMBIENT BACKGROUND — sitewide, every page
   Fixed orbs that slowly drift in background.
   Pure CSS, pointer-events none, z-index 0.
   ============================================= */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ambient-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(82,27,137,0.055) 0%, transparent 65%);
  filter: blur(80px);
  top: -350px;
  right: -200px;
  animation: ambientDrift 32s ease-in-out infinite;
}
.ambient-orb-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.045) 0%, transparent 65%);
  filter: blur(80px);
  bottom: -250px;
  left: -200px;
  animation: ambientDrift 40s ease-in-out infinite -14s;
}
.ambient-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 65%);
  filter: blur(70px);
  top: 50%;
  left: 35%;
  animation: ambientDrift 24s ease-in-out infinite -8s;
}
@keyframes ambientDrift {
  0%,100% { transform: translate(0,   0)   scale(1);    }
  25%      { transform: translate(70px,-55px) scale(1.06); }
  50%      { transform: translate(-45px,40px) scale(0.94); }
  75%      { transform: translate(30px,-75px) scale(1.04); }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* =============================================
   DESIGN TOKENS — Light mode (default)
   ============================================= */
:root {
  --primary-color:          #111827;
  --secondary-color:        rgba(82, 27, 137, 0.05);
  --bg-color:               #FAFAF8;
  --bg-secondary:           #F5F7FA;
  --text-color:             #1F2937;
  --text-muted:             #6B7280;
  --accent-color:           #521B89;
  --accent-hover:           #3D1466;
  --accent-secondary-color: #F59E0B;
  --accent-yellow:          #F59E0B;
  --accent-yellow-light:    #FEF3C7;
  --accent-yellow-hover:    #D97706;
  --success-color:          #10B981;
  --white-color:            #FFFFFF;
  --divider-color:          #E5E7EB;
  --dark-divider-color:     #D1D5DB;
  --card-bg:                #FFFFFF;
  --card-border:            #E5E7EB;
  --shadow-sm:              0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:              0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg:              0 10px 40px rgba(0, 0, 0, 0.12);
  --header-bg:              rgba(250, 250, 248, 1);
  --error-color:            rgb(230, 87, 87);
  --default-font:           'Inter', sans-serif;
  --heading-font:           'Plus Jakarta Sans', sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

link {
	display: block !important;
}
body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	background-color: var(--bg-color);
	color: var(--text-color);
	transition: background-color 0.3s ease, color 0.3s ease;
}

html {
	transition: background-color 0.3s ease;
}

::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(110deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
}

::selection{
	color: var(--accent-color);
	background-color: var(--accent-secondary-color);
	filter: invert(1);
}

p{
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin: 0;
	font-family: var(--heading-font);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
}

a:focus-visible{
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
	border-radius: 2px;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: visible;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: #ffffff;
	border-radius: 8px;
	padding: 12px 24px;
	margin-right: 0;
	border: none;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	z-index: 1;
}

.btn-default:hover{
	background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-yellow) 100%);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(82, 27, 137, 0.25), 0 2px 12px rgba(245, 158, 11, 0.30);
}

.btn-default::before{
	display: none;
}

.readmore-btn{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 0;
	transition: all 0.25s ease;
}

.readmore-btn::after{
	content: '→';
	display: inline-block;
	transition: transform 0.25s ease;
}

.readmore-btn:hover{
	color: var(--accent-yellow-hover);
}

.readmore-btn:hover::after{
	transform: translateX(4px);
}

.readmore-btn::before{
	display: none;
}

.cb-cursor:before{
	background: var(--accent-color);
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--bg-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-secondary-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	width: 100%;
	max-width: 1700px;
	background-color: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 24px;
	margin: 0 auto;
	box-shadow: var(--shadow-sm);
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-row .section-title.section-title-center{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	margin-top: 30px;
	text-align: left;
}

.section-title-content p{
	margin-bottom: 20px;
}

.section-title-content p:last-child{
	margin-bottom: 0;	
}

.section-title{
	margin-bottom: 40px;
}

.section-title h3{
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--default-font);
	font-size: 13px;
    font-weight: 600;
	line-height: 1em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
    color: var(--accent-color);
	background: rgba(82, 27, 137, 0.08);
	border: 1px solid rgba(82, 27, 137, 0.18);
	padding: 6px 14px;
	border-radius: 100px;
    margin-bottom: 20px;
}

.section-title h3::before{
	content: '';
	display: inline-block;
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	flex-shrink: 0;
}


.section-title h1{
	font-size: 64px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: default;
}

.section-title h2{
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: default;
}

.section-title h1 span,
.section-title h2 span{
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p{
	margin-top: 20px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
    top: 0;
    width: 100%;
	border-bottom: 1px solid transparent;
    z-index: 100;
	transition: border-color 0.3s ease;
}




header.main-header .header-sticky{
	position: relative;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--header-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--divider-color);
	box-shadow: var(--shadow-sm);
	padding: 0 15px;
}

header.main-header .header-sticky.active.hide{
	transform: translateY(-100%);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

/* Navbar logo: force black in light mode only (footer logo stays as-is) */
.navbar-brand img:not(.site-logo) {
	filter: brightness(0);
	transition: filter 0.3s ease;
}



.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a{
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2em;
	padding: 14px 10px !important;
	color: var(--text-color);
	text-transform: capitalize;
	transition: all 0.25s ease;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 240px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: calc(100% + 4px);
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	box-shadow: var(--shadow-md);
	transition: all 0.2s ease;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
    padding: 6px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--text-color);
	padding: 8px 16px !important;
	font-size: 14px;
	border-radius: 6px;
	transition: all 0.2s ease;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--accent-color);
	background-color: var(--secondary-color);
	padding: 8px 16px !important;
}

/* ── Mega Menu (Modern 3-Column + Featured Card + Bottom Bar) ────────────────────────────── */
.has-mega {
  position: static !important;
}

.header-sticky .container,
.main-header .container {
  position: relative !important;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-6px);
  width: 1040px;
  max-width: 96vw;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e5e7eb);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 6px 24px rgba(0, 0, 0, 0.06);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              visibility 0.22s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
  padding: 0 !important;
  margin: 0;
}

/* Wide invisible hover bridge so mouse movement never breaks */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -20px;
  right: -20px;
  height: 30px;
  pointer-events: auto;
}

.has-mega:hover > .mega-menu,
.has-mega.is-hovered > .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.18s ease 0s, visibility 0.18s ease 0s, transform 0.18s ease 0s;
}

.mega-menu-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mega-menu-top {
  display: flex;
  gap: 16px;
  padding: 20px 20px 16px 20px;
}

.mega-services {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.15fr;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.mega-menu--tools {
  width: 1060px;
}
.mega-menu--tools .mega-menu-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.22fr 210px;
  gap: 0;
  padding: 22px 20px 18px 20px;
  align-items: stretch;
}
.mega-menu--tools .mega-services {
  display: contents;
}
.mega-menu--tools .mega-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 3px;
}
.mega-menu--tools .mega-col:first-child {
  padding: 0 14px 0 0;
  border-right: 1px solid var(--card-border, #e5e7eb);
}
.mega-menu--tools .mega-col:nth-child(2) {
  padding: 0 14px 0 14px;
  border-right: 1px solid var(--card-border, #e5e7eb);
}
.mega-menu--tools .mega-col:nth-child(3) {
  padding: 0 14px 0 14px;
  border-right: 1px solid var(--card-border, #e5e7eb);
}
.mega-menu--tools .mega-featured {
  width: auto;
  margin-left: 14px;
  min-height: auto;
  padding: 16px 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-menu--tools .mega-link {
  padding: 6px 8px !important;
}
.mega-menu--tools .mega-menu-bottom {
  padding: 12px 20px;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px 0 0;
  border-right: 1px solid var(--card-border, #e5e7eb);
}

.mega-col:last-child {
  border-right: none;
  padding-right: 0;
}

.mega-col-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #64748b);
  margin: 0 0 6px;
  padding: 0 6px;
}

.mega-col-label--sub {
  margin-top: 10px;
  padding-top: 6px;
  border-top: 1px dashed var(--card-border, #e2e8f0);
}

.mega-col-icon {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega-col-icon--blue { color: #3b82f6; }
.mega-col-icon--purple { color: #8b5cf6; }
.mega-col-icon--cyan { color: #06b6d4; }
.mega-col-icon--orange { color: #f97316; }

/* Individual service link rows */
.main-menu ul li.has-mega .mega-link,
.main-menu ul li.has-dropdown .mega-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 8px !important;
  border-radius: 10px;
  transition: all 0.18s ease !important;
  color: var(--text-color, #0f172a) !important;
  text-decoration: none;
  background: transparent;
}

.main-menu ul li.has-mega .mega-link:hover,
.main-menu ul li.has-mega .mega-link:focus,
.main-menu ul li.has-dropdown .mega-link:hover,
.main-menu ul li.has-dropdown .mega-link:focus {
  background: var(--bg-secondary, #f8fafc) !important;
  color: var(--text-color, #0f172a) !important;
  transform: translateX(3px);
  padding-left: 8px !important;
}

/* Icon box */
.mega-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.main-menu ul li.has-mega .mega-link:hover .mega-icon-box,
.main-menu ul li.has-dropdown .mega-link:hover .mega-icon-box {
  transform: scale(1.08);
}

.icon-box--blue { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.icon-box--purple { background: rgba(147, 51, 234, 0.1); color: #7e22ce; }
.icon-box--cyan { background: rgba(6, 182, 212, 0.1); color: #0891b2; }
.icon-box--sky { background: rgba(14, 165, 233, 0.1); color: #0284c7; }
.icon-box--indigo { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }
.icon-box--orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.icon-box--wp { background: rgba(0, 116, 154, 0.1); color: #00749a; }
.icon-box--emerald { background: rgba(16, 185, 129, 0.1); color: #059669; }
.icon-box--teal { background: rgba(20, 184, 166, 0.1); color: #0d9488; }
.icon-box--amber { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.icon-box--fuchsia { background: rgba(217, 70, 239, 0.1); color: #c026d3; }
.icon-box--fb { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.icon-box--rose { background: rgba(225, 29, 72, 0.1); color: #e11d48; }
.icon-box--red { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.icon-box--green { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.icon-box--google { background: rgba(234, 67, 53, 0.1); color: #ea4335; }
.icon-box--meta { background: rgba(0, 129, 251, 0.1); color: #0081fb; }

/* Link text & rows */
.mega-link-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mega-link-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.mega-link-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color, #1e293b);
  line-height: 1.25;
  display: block;
}

.mega-link-sub {
  font-size: 11px;
  color: var(--text-muted, #64748b);
  line-height: 1.25;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges */
.mega-badge {
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  padding: 2.5px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mega-badge--popular {
  background: #fff1e6;
  color: #ea580c;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.mega-badge--ai {
  background: #f3e8ff;
  color: #9333ea;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

/* Featured gradient card */
.mega-featured {
  width: 210px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(30, 27, 75, 0.25);
  color: #ffffff;
}

.mega-featured-tag {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3px 9px;
  color: #fff;
  width: fit-content;
  margin-bottom: 12px;
  display: inline-block;
}

.mega-featured-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 8px;
}

.mega-featured-body {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

.main-menu ul li.has-mega .mega-featured-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 8px 14px !important;
  border-radius: 10px;
  font-size: 12px !important;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease !important;
  backdrop-filter: blur(4px);
  width: 100%;
}

.main-menu ul li.has-mega .mega-featured-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-1px);
}

.main-menu ul li.has-mega .mega-featured-btn i {
  font-size: 11px;
  transition: transform 0.18s ease;
}

.main-menu ul li.has-mega .mega-featured-btn:hover i {
  transform: translateX(4px);
}

/* Bottom Bar */
.mega-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--bg-secondary, #f8fafc);
  border-top: 1px solid var(--card-border, #e5e7eb);
  gap: 16px;
}

.mega-bottom-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-bottom-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  margin-right: 4px;
}

.mega-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-muted, #64748b) !important;
  transition: all 0.2s ease !important;
  text-decoration: none;
  padding: 0 !important;
}

.mega-social-link:hover {
  background: var(--accent-color, #4338ca) !important;
  color: #ffffff !important;
  border-color: var(--accent-color, #4338ca);
  transform: translateY(-1px);
}

.mega-bottom-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 4px 8px !important;
  border-radius: 8px;
  transition: all 0.2s ease !important;
}

.mega-bottom-cta:hover {
  background: var(--card-bg, #ffffff);
}

.mega-bottom-cta-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.mega-bottom-cta-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
}

.mega-bottom-cta-text strong {
  color: var(--text-color, #0f172a);
  font-weight: 600;
}

.mega-bottom-cta-text span {
  color: var(--text-muted, #64748b);
}

.mega-bottom-cta-arrow {
  font-size: 11px;
  color: var(--accent-color, #4338ca);
  transition: transform 0.2s ease;
}

.mega-bottom-cta:hover .mega-bottom-cta-arrow {
  transform: translateX(4px);
}

/* ── Tools dropdown (same theme as mega menu) ───────── */
.nav-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-6px);
  width: 270px;
  padding: 8px;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e5e7eb);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.13), 0 4px 18px rgba(0,0,0,0.07);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s ease 0.28s, visibility 0.22s ease 0.28s, transform 0.22s ease 0.28s;
  z-index: 999;
  pointer-events: none;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: -15px;
  right: -15px;
  height: 28px;
  pointer-events: auto;
}

.has-dropdown:hover > .nav-dropdown,
.has-dropdown.is-hovered > .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.18s ease 0s, visibility 0.18s ease 0s, transform 0.18s ease 0s;
}

/* ─────────────────────────────────────────────────── */

.main-menu ul li.highlighted-menu{
    display: none;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--bg-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--bg-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--bg-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	padding: 0;
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--bg-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--bg-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

/* =============================================
   Header actions: theme toggle + mobile menu
   ============================================= */

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}



/* ==========================================================================
   03. REACT BITS STAGGERED MENU & MOBILE NAVIGATION REDESIGN
   ========================================================================== */

/* Toggle Button in Header */
.sm-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #111827;
	color: #ffffff;
	border: 1.5px solid rgba(82, 27, 137, 0.4);
	border-radius: 999px;
	padding: 8px 16px;
	cursor: pointer;
	font-family: var(--heading-font, 'Plus Jakarta Sans', sans-serif);
	font-weight: 700;
	font-size: 0.88rem;
	line-height: 1;
	overflow: visible;
	box-shadow: 0 4px 14px rgba(17, 24, 39, 0.18), 0 0 0 1px rgba(124, 58, 237, 0.15);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 25;
}

.sm-toggle:hover {
	background: #521B89;
	color: #ffffff;
	border-color: #7c3aed;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(82, 27, 137, 0.4);
}

.sm-toggle[aria-expanded="true"] {
	background: linear-gradient(135deg, #7c3aed 0%, #521B89 100%);
	border-color: #a78bfa;
	color: #ffffff;
	box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.sm-toggle:focus-visible {
	outline: 2px solid #7c3aed;
	outline-offset: 3px;
}

.sm-toggle-textWrap {
	position: relative;
	display: inline-block;
	height: 1.1em;
	overflow: hidden;
	white-space: nowrap;
	min-width: 40px;
	text-align: left;
}

.sm-toggle-textInner {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.sm-toggle-line {
	display: block;
	height: 1.1em;
	line-height: 1.1;
}

.sm-icon {
	position: relative;
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	will-change: transform;
}

.sm-icon-line {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transform: translate(-50%, -50%);
	will-change: transform;
}

/* Staggered Menu Fullscreen Wrapper */
.staggered-menu-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 99999;
	pointer-events: none;
}

.staggered-menu-wrapper.fixed-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	z-index: 99999;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
}

.staggered-menu-wrapper.is-visible {
	visibility: visible;
	pointer-events: auto;
}

body.sm-body-lock {
	overflow: hidden !important;
	touch-action: none;
}

/* Prelayers for Staggered Color Underlays */
.sm-prelayers {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: clamp(310px, 86vw, 460px);
	height: 100vh;
	height: 100dvh;
	pointer-events: none;
	z-index: 99997;
	opacity: 1;
}

.sm-prelayer {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
	will-change: transform;
}

/* Slide-out Drawer Panel */
.staggered-menu-panel {
	position: fixed;
	top: 0;
	right: 0;
	width: clamp(310px, 86vw, 460px);
	height: 100vh;
	height: 100dvh;
	background: linear-gradient(180deg, #0d0a1a 0%, #120d24 50%, #0a0715 100%);
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: -20px 0 60px rgba(0, 0, 0, 0.75);
	display: flex;
	flex-direction: column;
	z-index: 99998;
	pointer-events: auto;
	overflow: hidden;
	will-change: transform;
}

/* Panel Header Topbar */
.sm-panel-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	padding: 1rem 1.4rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(13, 10, 26, 0.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	z-index: 2;
}

.sm-panel-brand {
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-decoration: none;
	align-items: flex-start;
	transition: opacity 0.2s ease;
}

.sm-panel-brand:hover {
	opacity: 0.9;
}

.sm-panel-logo {
	display: block;
	height: 44px;
	width: auto;
	max-width: 165px;
	object-fit: contain;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.sm-panel-badge {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #a78bfa;
}

.sm-panel-close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sm-panel-close-btn:hover {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.4);
	color: #f87171;
	transform: rotate(90deg);
}

/* Scrollable Inner Content */
.sm-panel-inner {
	flex: 1;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding: 1.25rem 1.5rem 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.sm-panel-inner::-webkit-scrollbar {
	width: 4px;
}

.sm-panel-inner::-webkit-scrollbar-track {
	background: transparent;
}

.sm-panel-inner::-webkit-scrollbar-thumb {
	background: rgba(167, 139, 250, 0.25);
	border-radius: 4px;
}

/* Primary Staggered List */
.sm-panel-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.sm-panel-itemWrap {
	position: relative;
	overflow: hidden;
	line-height: 1.1;
}

.sm-panel-item,
.sm-panel-accordion-trigger {
	position: relative;
	color: #ffffff;
	font-family: var(--heading-font, 'Plus Jakarta Sans', sans-serif);
	font-weight: 800;
	font-size: clamp(1.6rem, 5.5vw, 2.15rem);
	cursor: pointer;
	line-height: 1.15;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	transition: color 0.25s ease, transform 0.25s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	padding: 6px 0;
	width: 100%;
	background: transparent;
	border: none;
	user-select: none;
}

.sm-panel-itemLabel {
	display: inline-block;
	will-change: transform;
	transform-origin: 50% 100%;
}

.sm-panel-item:hover,
.sm-panel-accordion-trigger:hover,
.sm-panel-accordion-trigger.active {
	color: var(--sm-accent, #a78bfa);
	transform: translateX(4px);
}

.sm-accordion-arrow {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.4);
	transition: transform 0.3s ease, color 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 2.2rem;
}

.sm-panel-accordion-trigger.active .sm-accordion-arrow {
	transform: rotate(180deg);
	color: var(--sm-accent, #a78bfa);
}

/* Numbering Counter */
.sm-panel-list[data-numbering] {
	counter-reset: smItem;
}

.sm-panel-list[data-numbering] .sm-panel-item::after,
.sm-panel-list[data-numbering] .sm-panel-accordion-trigger::after {
	counter-increment: smItem;
	content: counter(smItem, decimal-leading-zero);
	position: absolute;
	top: 0.35em;
	right: 0;
	font-size: 0.82rem;
	font-weight: 700;
	font-family: 'Inter', monospace, sans-serif;
	color: rgba(167, 139, 250, 0.7);
	letter-spacing: 1px;
	pointer-events: none;
	user-select: none;
	opacity: var(--sm-num-opacity, 0);
	transition: opacity 0.3s ease;
}

/* Submenu Accordion Drawer */
.sm-sub-drawer {
	display: none;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 1rem;
	margin-top: 0.5rem;
	margin-bottom: 0.75rem;
}

.sm-sub-group {
	margin-bottom: 1rem;
}

.sm-sub-group:last-of-type {
	margin-bottom: 0.5rem;
}

.sm-sub-group-title {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #c4b5fd;
	margin-bottom: 0.5rem;
	padding-left: 4px;
}

.sm-sub-grid {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sm-sub-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	background: transparent;
	text-decoration: none;
	transition: all 0.2s ease;
}

.sm-sub-link:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateX(3px);
}

.sm-sub-icon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	flex-shrink: 0;
	color: #ffffff;
}

.sm-icon--blue    { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.sm-icon--purple  { background: linear-gradient(135deg, #7c3aed, #9333ea); }
.sm-icon--cyan    { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.sm-icon--sky     { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.sm-icon--indigo  { background: linear-gradient(135deg, #4f46e5, #6366f1); }
.sm-icon--orange  { background: linear-gradient(135deg, #ea580c, #f97316); }
.sm-icon--emerald { background: linear-gradient(135deg, #059669, #10b981); }
.sm-icon--teal    { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.sm-icon--wp      { background: linear-gradient(135deg, #0073aa, #21759b); }
.sm-icon--fb      { background: linear-gradient(135deg, #1877f2, #3b5998); }
.sm-icon--google  { background: linear-gradient(135deg, #ea4335, #fbbc05); }
.sm-icon--meta    { background: linear-gradient(135deg, #0081fb, #0064e0); }
.sm-icon--amber   { background: linear-gradient(135deg, #d97706, #f59e0b); }
.sm-icon--green   { background: linear-gradient(135deg, #16a34a, #22c55e); }
.sm-icon--rose    { background: linear-gradient(135deg, #e11d48, #f43f5e); }

.sm-sub-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.sm-sub-name {
	font-size: 0.88rem;
	font-weight: 600;
	color: #f1f5f9;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.25;
}

.sm-sub-desc {
	font-size: 0.72rem;
	color: #94a3b8;
	line-height: 1.2;
}

.sm-badge {
	font-size: 0.62rem;
	font-weight: 700;
	padding: 1px 6px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.sm-badge--popular { background: rgba(59, 130, 246, 0.25); color: #93c5fd; border: 1px solid rgba(59, 130, 246, 0.4); }
.sm-badge--ai      { background: rgba(168, 85, 247, 0.25); color: #d8b4fe; border: 1px solid rgba(168, 85, 247, 0.4); }
.sm-badge--new     { background: rgba(16, 185, 129, 0.25); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.4); }
.sm-badge--roi     { background: rgba(6, 182, 212, 0.25);  color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.4); }

.sm-sub-footer-link {
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	margin-top: 6px;
	text-align: right;
}

.sm-sub-footer-link a {
	font-size: 0.78rem;
	font-weight: 600;
	color: #a78bfa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.sm-sub-footer-link a:hover {
	color: #c4b5fd;
	text-decoration: underline;
}

/* Featured Promo / CTA Card */
.sm-cta-card {
	background: linear-gradient(135deg, rgba(82, 27, 137, 0.3) 0%, rgba(26, 21, 53, 0.7) 100%);
	border: 1px solid rgba(167, 139, 250, 0.25);
	border-radius: 18px;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sm-cta-card-badge {
	align-self: flex-start;
	background: rgba(167, 139, 250, 0.2);
	color: #ddd6fe;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid rgba(167, 139, 250, 0.3);
}

.sm-cta-card-title {
	margin: 0;
	font-family: var(--heading-font, 'Plus Jakarta Sans', sans-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25;
}

.sm-cta-card-text {
	margin: 0;
	font-size: 0.8rem;
	color: #cbd5e1;
	line-height: 1.45;
}

.sm-cta-card-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 0.4rem;
}

.sm-btn-primary,
.sm-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	text-align: center;
}

.sm-btn-primary {
	background: linear-gradient(135deg, #7c3aed, #521B89);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.sm-btn-primary:hover {
	background: linear-gradient(135deg, #8b5cf6, #6022a1);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.sm-btn-secondary {
	background: rgba(255, 255, 255, 0.05);
	color: #e2e8f0;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.sm-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.25);
}

/* Socials Section */
.sm-socials {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.sm-socials-title {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #94a3b8;
}

.sm-socials-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}

.sm-socials-item {
	margin: 0;
}

.sm-socials-link {
	font-size: 0.82rem;
	font-weight: 600;
	color: #cbd5e1;
	text-decoration: none;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.25s ease;
}

.sm-socials-link:hover {
	color: #ffffff;
	background: rgba(124, 58, 237, 0.3);
	border-color: rgba(167, 139, 250, 0.5);
	transform: translateY(-1px);
}

.sm-socials-link:focus-visible {
	outline: 2px solid var(--sm-accent, #7c3aed);
	outline-offset: 3px;
}

/* Quick Contact Strip */
.sm-contact-strip {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sm-contact-link {
	font-size: 0.78rem;
	color: #94a3b8;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease;
}

.sm-contact-link:hover {
	color: #c4b5fd;
}

@media (max-width: 480px) {
	.staggered-menu-panel,
	.sm-prelayers {
		width: 100%;
	}

	.sm-panel-inner {
		padding: 1rem 1.25rem 2.5rem;
	}

	.sm-panel-item,
	.sm-panel-accordion-trigger {
		font-size: 1.55rem;
	}
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('/images/backgrounds/hero-section-bg.png') no-repeat top center;
	background-size: cover;
	padding: 210px 0 0;
}

.hero.hero-bg-image{
	position: relative;
	background: url('/images/backgrounds/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border: none;
	padding: 225px 0 115px;
	overflow: hidden;
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background: var(--bg-color);
	opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero.hero-bg-image .hero-content{
	margin: 0 auto;
}

.hero.hero-bg-image .hero-content .hero-info-list{
	border: none;
	max-width: 900px;
	margin: 0 auto 40px;
	padding: 0;
}

.hero.hero-bg-image .hero-content .hero-info-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 30px;
}

.hero.hero-bg-image .hero-content .hero-info-list ul li{
	margin: 0;
}

.hero-content{
	position: relative;
	text-align: center;
	max-width: 1190px;
	margin: 0 auto 100px;
	z-index: 1;
}

.hero-circle-info,
.hero-rating-info-box{
	height: calc(100% - 100px);
	margin: 50px 0;
	align-content: center;
}

.get-started-circle a{
	display: inline-block;
	border-radius: 50%;
}

.get-started-circle a img{
	width: 100%;
	max-width: 190px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}

.get-started-circle a:hover img{
	animation-play-state: paused;
}

.hero-info-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.hero-info-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.hero-info-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.hero-info-list ul li:last-child{
	margin-bottom: 0;
}

.hero-info-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.hero-image{
	position: relative;
	height: 100%;
	align-content: end;
}

.hero-image::before{
	content: '';
	position: absolute;
	top: -40%;
	left: 0;
	right: 0;
	background: url('/images/backgrounds/hero-image-bg.png') no-repeat top center;
	background-size: cover;
    width: 620px;
    height: 620px;
	z-index: 0;
}

.hero-image figure{
	position: relative;
	display: block;
	z-index: 1;
}

.hero-image img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.895;
	margin-bottom: -1px;
}

.hero-rating-item{
	text-align: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;	
}

.hero-rating-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.review-images{
	display: inline-flex;
	align-items: center;
}

.review-image{
	position: relative;
	display: inline-block;
	margin-left: -10px;
	z-index: 1;
}

.review-image:first-child{
	margin: 0;
}

.review-image figure{
	display: block;
	border: 1px solid var(--bg-color);
	border-radius: 50%;
}

.review-image img{
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
}

.review-image.add-more{
	width: 42px;
	height: 42px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border: 1px solid var(--bg-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.review-image.add-more:hover{
	background-position: right center;
}

.review-image.add-more i,
.review-image.add-more h3{
	font-size: 18px;
	color: var(--bg-color);
}

.review-content{
	margin-top: 20px;
}

.review-rating-star i{
	color: var(--accent-secondary-color);
	margin-right: 2px;
}

.review-rating-content p{
	margin: 10px 0 0;
}

.review-rating-content p span{
	font-weight: 600;
	color: var(--accent-secondary-color);
}

.hero-rating-item h2{
	font-size: 40px;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.hero-rating-item:hover h2{
	background-position: right center;
}

.hero-rating-item p{
	margin: 15px 0 0;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	position: relative;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	padding: 18px 0;
	z-index: 1;
}

.scrolling-ticker-box{
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 80s linear infinite;
}

.scrolling-content span{
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1em;
	text-transform: capitalize;
	color: #ffffff;
}

.scrolling-content span::before{
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 20px;
	flex-shrink: 0;
	background: url('/images/icons/icon-sparkle.svg') no-repeat center / contain;
}

.scrolling-content span img{
	width: 100%;
	max-width: 20px;
	margin-right: 20px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	padding: 160px 0 50px;
}

.about-title-box{
	max-width: 880px;
	text-align: center;
	margin: 0 auto;
}

.about-title-box .section-title h2 figure{
	display: inline-block;
    mask-size: auto;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
	width: 64px;
	height: 34px;
}

.about-title-box .section-title h2 .about-title-img-1 img{
	mask-image: url('/images/icons/about-title-img-mask-1.svg');
    background-image: url('/images/icons/about-title-img-mask-1.svg');
}

.about-title-box .section-title h2 .about-title-img-2 img{
	mask-image: url('/images/icons/about-title-img-mask-2.svg');
    background-image: url('/images/icons/about-title-img-mask-2.svg');
}

.about-us-btn{
	margin-top: 40px;
}

.about-us-item{
	background: var(--secondary-color) url('/images/backgrounds/about-item-bg.png') no-repeat;
	background-size: auto;
	background-position: top left;
	border-radius: 30px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-direction: column;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
	padding: 40px;
}

.about-box-1{
	background: var(--accent-secondary-color);
}

.about-item-content{
	position: relative;
	max-width: 220px;
	z-index: 1;
}

.about-item-content h3{
	font-size: 24px;
	color: var(--bg-color);
	line-height: 1.4em;
	letter-spacing: -0.02em;
}

.about-us-img-1{
	margin: -150px -70px -40px -10px;
}

.about-us-img-1 figure{
	display: block;
}

.about-us-img-1 img{
	width: 100%;
	object-fit: cover;
}

.about-counter-item{
	display: flex;
	align-items: center;
}

.about-counter-item .icon-box{
	margin-right: 15px;
}

.about-counter-item .icon-box img{
	width: 100%;
	max-width: 70px;
}

.about-counter-content{
	width: calc(100% - 85px);
	text-align: right;
}

.about-counter-content h2{
	font-size: 40px;
	display: inline-block;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.about-counter-content p{
	margin: 10px 0 0;
}

.about-counter-header{
	display: flex;
	align-items: center;
	justify-content: end;
	margin-bottom: 10px;
}

.about-counter-content .about-counter-header h2{
	font-size: 30px;
}

.about-counter-content .about-counter-header p{
	margin: 0 0 0 10px;
}

.about-counter-header i{
	color: var(--accent-secondary-color);
	margin-right: 2px;
}

.about-us-img-2{
	margin: 0 -20px;
}

.about-us-img-3{
	margin: 0 -45px -40px -30px;
}

/************************************/
/*** 	 07. Our Services css	  ***/
/************************************/

.our-services{
	padding: 80px 0;
}

.services-item-list-box{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--card-border);
	border-right: none;
	border-bottom: none;
	border-radius: 20px;
	overflow: hidden;
	background: var(--card-bg);
	box-shadow: var(--shadow-sm);
}

.service-item{
	position: relative;
	width: 33.33%;
	border-right: 1px solid var(--card-border);
	border-bottom: 1px solid var(--card-border);
	border-top: none;
    padding: 40px;
    overflow: hidden;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
	background: var(--secondary-color);
}

.service-item:nth-child(-3n + 3){
	border-radius: 0 28px 0 0;
}

.service-item:last-child{
	border-radius: 0 0 29px 0;
}

.service-title-box{
	position: relative;
	margin-bottom: 110px;
	z-index: 1;
}

.service-title-box h3{
	font-size: 20px;
}

.service-title-box h3 a{
	color: inherit;
}

.service-title-box p{
	margin: 5px 0 0;
}

.service-item-body{
	position: relative;
	transform: translateY(80px);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item.active .service-item-body,
.service-item:hover .service-item-body{
	transform: translateY(0);
}

.service-content p:last-child{
	margin: 0;
}

.service-btn{
	opacity: 0;
	visibility: hidden;
	margin-top: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-btn,
.service-item:hover .service-btn{
	visibility: visible;
	opacity: 1;
}

.service-image{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	mix-blend-mode: color-dodge;
	opacity: 80%;
	z-index: 0;
}

.service-image figure{
	display: block;
}

.service-image img{
	width: 100%;
	max-width: 220px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
    }
    to{
		transform: rotate(360deg);
    }
}

.service-list{
	max-width: 810px;
	margin: 60px auto 0;
}

.service-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-list ul li{
	position: relative;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 10px 16px 10px 36px;
}

.service-list ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    background: var(--accent-secondary-color);
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 80px 0;
}

.why-choose-item{
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	margin-bottom: 30px;
	padding: 30px;
}

.why-choose-item:last-child{
	margin-bottom: 0;
}

.why-choose-item h3{
	position: relative;
	font-size: 20px;
	padding-left: 30px;
}

.why-choose-item h3::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.why-choose-item p{
	margin: 15px 0 0;
}

.why-choose-img{
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 20px;
	overflow: hidden;
	padding: 0 0 40px 50px;
	margin-left: 15px;
	transition: all 0.4s ease-in-out;
}

.why-choose-img:hover{
	background-position: right center;
}

.why-choose-img figure{
	display: block;
}

.why-choose-img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.98;
}

/************************************/
/*** 	 09. Our Projects css	  ***/
/************************************/

.our-projects{
	padding: 80px 0;
}

.our-projects .container-fluid{
	max-width: 1870px;
}

.project-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-image{
	position: relative;
	margin-bottom: 20px;
}

.project-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-color);
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-image figure::before{
	opacity: 40%;
}

.project-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.815;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image figure img{
	filter: blur(1px);
	transform: scale(1.1);
}

.project-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn{
	transform: translate(-50%, -50%) scale(1);
}

.project-btn a{
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-btn a img{
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}

.project-btn a:hover img{
	transform: rotate(45deg);
}

.project-content{
	padding: 0 30px;
}

.project-content p{
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	margin-bottom: 10px;
}

.project-content h3{
	font-size: 20px;
}

.project-content h3 a{
	color: inherit;
}

.section-footer-text{
	text-align: center;
	margin-top: 30px;
}

.section-footer-text p span{
	font-size: 16px;
	font-weight: 500;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	color: var(--bg-color);
	line-height: 1.2em;
	padding: 3px 12px;
	border-radius: 99px;
	margin-right: 10px;
	transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span{
	background-position: right center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-secondary-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--white-color);
}

/************************************/
/*** 	 10. How It Work css	  ***/
/************************************/

.how-it-work{
	padding: 80px 0;
}

.work-image-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.work-image-1,
.work-image-2{
	width: calc(50% - 15px);
}

.work-image-1 .work-image,
.work-image-1 .work-image figure,
.work-image-1 .work-image img{
	height: 100%;
}

.work-image figure{
	display: block;
	border-radius: 30px;
}

.work-image img{
	width: 100%;
	aspect-ratio: 1 / 0.976;
	object-fit: cover;
	border-radius: 30px;
}

.work-counter-item{
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	border-radius: 30px;
	text-align: center;
	margin-top: 30px;
	padding: 30px;
}

.work-counter-item h2{
	font-size: 40px;
	display: inline-block;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
}

.work-counter-item:hover h2{
	background-position: right center;
}

.work-counter-item p{
	margin: 15px 0 0;
}

.work-step-list{
	margin-left: 15px;
}

.work-step-item{
	display: flex;
	margin-bottom: 80px;
}

.work-step-item:last-child{
	margin-bottom: 0;
}

.work-step-item .icon-box{
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.work-step-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .icon-box::before{
	transform: scale(1);
}

.work-step-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.work-step-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.work-step-item-content{
	width: calc(100% - 80px);
}

.work-step-item-content h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.work-step-item-content p{
	margin: 0;
}

/************************************/
/*** 	11. Ready To Talk css	  ***/
/************************************/

.ready-to-talk-section.bg-section{
	background: var(--secondary-color) url('/images/backgrounds/ready-to-talk-bg.png') no-repeat;
    background-position: center center;
    background-size: cover;
	padding: 130px 60px;
	margin: 80px auto;
}

.ready-to-talk-section .container-fluid{
	padding: 0;
}

.ready-to-talk-box{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.talk-author-images-1{
	width: calc(26% - 20px);
}

.talk-author-images-2{
	width: calc(24% - 20px);
}

.talk-author-images-1 figure,
.talk-author-images-2 figure{
	display: block;
}

.talk-author-images-1 img,
.talk-author-images-2 img{
	width: 100%;
}

.ready-to-talk-info{
	width: calc(50% - 20px);
	text-align: center;
}

.ready-to-talk-box .section-title h2{
	font-size: 100px;
	line-height: 1.1em;
}

.ready-to-talk-box .section-title p{
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.ready-to-talk-btn{
	margin-top: 60px;
}

/************************************/
/*** 	  12. Our Offers css	  ***/
/************************************/

.our-offers{
	padding: 80px 0;
}

.offer-body{
	display: flex;	
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.offer-body-item{
	width: calc(33.33% - 20px);
}

.offer-body-item .icon-box{
	margin-bottom: 20px;
}

.offer-body-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

/* ── Branded High-Contrast Offer Icon Boxes ── */
.offer-icon-box {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 20px;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.offer-icon-box--purple {
	background: rgba(124, 58, 237, 0.1);
	color: #7c3aed;
	border: 1px solid rgba(124, 58, 237, 0.2);
	box-shadow: 0 6px 18px rgba(124, 58, 237, 0.12);
}
.offer-icon-box--amber {
	background: rgba(245, 158, 11, 0.1);
	color: #f59e0b;
	border: 1px solid rgba(245, 158, 11, 0.2);
	box-shadow: 0 6px 18px rgba(245, 158, 11, 0.12);
}
.offer-icon-box--emerald {
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
	border: 1px solid rgba(16, 185, 129, 0.2);
	box-shadow: 0 6px 18px rgba(16, 185, 129, 0.12);
}
.offer-body-item:hover .offer-icon-box {
	transform: translateY(-4px) scale(1.05);
}

.offer-body-item-content h3{
	font-size: 20px;
}

.offer-btn{
	margin-top: 60px;
}

.offer-image-box{
	position: relative;
	margin-left: 40px;
	padding: 0 20px 20px 0;
}

.offer-image-box::before,
.offer-image-box::after{
	content: '';
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 90%;
	height: 80%;
	border-radius: 30px;
}

.offer-image-box::before{
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.offer-image-box:hover::before{
	background-position: right center;
}

.offer-image-box::after{
	background: var(--dark-divider-color);
	transform: rotate(5.12deg);
	z-index: 0;
}

.offer-image-box figure{
	position: relative;
	display: block;
	z-index: 1;
}

.offer-image-box img{
	width: 100%;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
}

/************************************/
/*** 	 13. Our Benefits css	  ***/
/************************************/

.our-benefits{
	padding: 80px 0;
}

.benefit-item-list{
	background: var(--secondary-color) url('/images/backgrounds/benefit-box-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    display: flex;
	flex-wrap: wrap;
    gap: 40px 30px;
	padding: 80px;
}

.benefit-item{
	width: calc(25% - 22.5px);
}

.benefit-item .icon-box{
	margin-bottom: 40px;
}

.benefit-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.benefit-item-content h3{
	font-size: 20px;
}

.benefit-item-content p{
	margin: 30px 0 0;
}

.benefit-item-btn{
	margin-top: 30px;
}

.benefit-item-btn a{
	position: relative;
	background: var(--secondary-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.benefit-item-btn a::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.benefit-item-btn a:hover::before{
	transform: scale(1);
}

.benefit-item-btn a img{
	position: relative;
	width: 100%;
	max-width: 26px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.benefit-item-btn a:hover img{
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.our-benefit-box .section-footer-text{
	margin-top: 50px;
}

/************************************/
/*** 	   14. Our Facts css	  ***/
/************************************/

.our-facts{
	padding: 80px 0;
}

.fact-box-1{
	background: var(--secondary-color) url('/images/backgrounds/benefit-box-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
	border: 1px solid var(--divider-color);
    border-radius: 30px;
    display: flex;
	flex-wrap: wrap;
    gap: 30px;
	padding: 60px;
	margin-bottom: 30px;
	overflow: hidden;
}

.fact-content,
.fact-image-box{
	width: calc(50% - 15px);
}

.fact-content{
	align-content: center;
}

.fact-btn{
	margin-top: 60px;
}

.fact-image-box{
	position: relative;
	padding: 0 60px 0 80px;
	align-content: end;
}

.fact-image{
	position: relative;
}

.fact-image::before{
	content: '';
	position: absolute;
	top: -120px;
	left: 50px;
	background: url('/images/backgrounds/fact-image-bg.png') no-repeat top center;
	background-size: cover;
	width: 400px;
	height: 400px;
	z-index: 0;
}

.fact-image figure{
	position: relative;
	display: block;
	z-index: 1;
}

.fact-image figure img{
	width: 100%;
	aspect-ratio: 1 / 0.999;
	object-fit: cover;
	margin-bottom: -60px;
}

.fact-image-box .get-started-circle{
	position: absolute;
	top: 10px;
	left: 100px;
	z-index: 1;
}

.fact-image-box .get-started-circle a img{
	max-width: 100px;
}

.fact-box-2 figure{
	display: block;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
}

.fact-box-2 img{
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
}

.fact-item-list{
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	gap: 30px;
}

.fact-item{
	width: calc(50% - 15px);
	display: flex;
	gap: 30px;
	flex-direction: column;
	justify-content: space-between;
	background: var(--accent-color);
	border-radius: 30px;
	padding: 30px;
}

.fact-item.fact-dark-box{
	background: var(--accent-secondary-color);
}

.fact-item-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.fact-item-header .icon-box{
	width: 50px;
	height: 50px;
	background: var(--bg-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.fact-item:hover .fact-item-header .icon-box{
	background: var(--white-color);
}

.fact-item-header .icon-box img{
	width: 100%;
	max-width: 25px;
	transition: all 0.4s ease-in-out;
}

.fact-item:hover .fact-item-header .icon-box img{
	filter: brightness(0) invert(0);
}

.fact-item-header .review-image figure{
	border-color: var(--accent-secondary-color);
}

.fact-item-content h2{
	font-size: 48px;
}

.fact-item.fact-dark-box .fact-item-content h2,
.fact-item.fact-dark-box .fact-item-content p{
	color: var(--bg-color);
}

.fact-item-content p{
	margin: 10px 0 0;
}

.fact-item-tags ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fact-item-tags ul li{
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid var(--dark-divider-color);
	background: var(--secondary-color);
	border-radius: 100px;
	letter-spacing: 0.2em;
	padding: 7px 18px;
}

/************************************/
/*** 	 15. Our Pricing css	  ***/
/************************************/

.our-pricing{
    padding: 80px 0;
}

.our-pricing-swich{
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
	padding: 0;
}

.our-pricing-swich .form-check-label{
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.our-pricing-swich.form-switch .form-check-input{
	width: 75px;
    height: 40px;
    --bs-form-check-bg: var(--accent-color);
	--bs-form-switch-bg: url('/images/icons/pricing-swich-circle.svg');
	background-size: 28px auto;
	background-position: left 5px center;
	border-radius: 100px;
	border: none;
	outline: none;
	box-shadow: none;
	cursor: pointer;
    margin: 0;
	transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked{
	background-color: var(--accent-secondary-color);
	background-position: right 5px center;
}

.pricing-item{
	position: relative;
    border: 1px solid var(--divider-color);
    background: var(--secondary-color) url('/images/backgrounds/pricing-item-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
    border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.pricing-body,
.pricing-price,
.pricing-header{
	margin-bottom: 40px;
}

.pricing-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pricing-header .icon-box{
	margin-right: 30px;
}

.pricing-header .icon-box img{
	max-width: 40px;
}

.pricing-title{
	width: calc(100% - 70px);
}

.pricing-title h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

.pricing-price{
	padding: 20px;
	background-color: var(--bg-color);
	border-radius: 30px;
}

.pricing-price h2{
	font-size: 46px;
	font-weight: 600;
}

.pricing-price sub{
	font-size: 16px;
	font-weight: 400;
	bottom: 0;
}

.pricing-body h3{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 25px;
}

.pricing-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li{
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-body ul li::before{
	content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.pricing-benefit-list{
	margin-top: 30px;
}

.pricing-benefit-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li{
	color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img{
	max-width: 20px;
	margin-right: 15px;
}

.pricing-btn .btn-default{
	width: 100%;
	text-align: center;
	padding: 15px 20px;
	margin: 0;
}

.pricing-btn .btn-default::before{
	display: none;
}

.pricing-item.highlighted-box .pricing-price{
	background: linear-gradient(100deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	transition: all 0.4s ease-in-out;
}

.pricing-item.highlighted-box:hover .pricing-price{
	background-position: right center;
}

.pricing-item.highlighted-box .pricing-price h2{
	color: var(--bg-color);
}

/************************************/
/*** 	   16. Our FAQs css 	  ***/
/************************************/

.our-faqs{
	padding: 80px 0;
}

.faq-image{
	position: relative;
	margin-right: 20px;
}

.faq-img figure{
	display: block;
	border-radius: 30px;
}

.faq-img img{
	width: 100%;
	aspect-ratio: 1 / 1.034;
	object-fit: cover;
	border-radius: 30px;
}

.faq-cta-box{
	position: absolute;
	bottom: 40px;
	left: 30px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	background-color: var(--divider-color);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-radius: 30px;
	z-index: 1;
}

.faq-cta-box .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.faq-cta-box:hover .icon-box{
	background-position: right center;
}

.faq-cta-box .icon-box img{
	width: 100%;
	max-width: 26px;
}

.faq-cta-content{
	width: calc(100% - 70px);
}

.faq-cta-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.faq-cta-content p{
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.faq-cta-content p:hover{
	color: var(--accent-secondary-color);
}

.faq-cta-content p a{
	color: inherit;
}

.faq-accordion .accordion-item{
	position: relative;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 30px;
    padding: 0;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 18px;
	font-weight: 500;
	line-height: normal;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    color: var(--bg-color);
	padding: 19px 55px 19px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: transparent;
	color: var(--text-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 20px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 400;
    line-height: normal;
	width: 30px;
	height: 30px;
    color: var(--primary-color);
	background-color: var(--bg-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\2b';
	color: var(--white-color);
	background-color: var(--divider-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p{
    color: var(--bg-color);
	margin: 0;
}

/************************************/
/***   17. Our Testimonials css	  ***/
/************************************/

.our-testimonials{
	padding: 80px 0;
}

.testimonials-content-box{
	background: var(--secondary-color) url('/images/backgrounds/benefit-box-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 60px;
}

.testimonial-btn{
	margin-top: 60px;
}

.page-cta-box{
	background: var(--accent-secondary-color);
	border-radius: 30px;
	padding: 30px;
}

.page-cta-box.testimonial-cta-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-cta-header{
	display: flex;
	align-items: center;
	gap: 15px;
}

.page-cta-header .review-image figure{
	border-color: var(--accent-secondary-color);
}

.page-cta-header .review-rating-content{
	width: 55%;
}

.page-cta-header .review-rating-content p,
.page-cta-header .review-rating-content p span{
	color: var(--bg-color);
	margin: 0;
}

.page-cta-counters{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.page-cta-counter-item{
	position: relative;
	width: calc(50% - 15px);
}

.page-cta-counter-item h2{
	font-size: 40px;
	color: var(--bg-color);
}

.page-cta-counter-item p{
	color: var(--bg-color);
	margin: 10px 0 0;
}

.page-cta-btn{
	margin-top: 40px;
}

.page-cta-btn a{
	font-size: 20px;
	font-weight: 700;
	color: var(--accent-color);
	background: var(--bg-color);
	border-radius: 100px;
	padding: 12px 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.page-cta-btn a:hover{
	background: var(--accent-color);
	color: var(--bg-color);
}

.page-cta-btn a:hover img{
	filter: brightness(0) invert(1);
}

.page-cta-btn a img{
	width: 100%;
	max-width: 24px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
	background: var(--secondary-color) url('/images/backgrounds/testimonial-item-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
	padding: 40px;
}

.testimonials-rating{
	margin-bottom: 40px;
}

.testimonials-rating i{
	color: var(--accent-secondary-color);
	margin-right: 2px;
}

.testimonial-content p{
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}

.testimonial-author{
	display: flex;
	align-items: center;
	margin-top: 100px;
}

.author-content{
	width: calc(100% - 62px);
	margin-right: 20px;
}

.author-content h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.author-content p{
	text-transform: capitalize;
	margin: 10px 0 0;
}

.testimonial-quate img{
	width: 100%;
	max-width: 42px;
}

.testimonial-slider .testimonial-pagination{
    position: relative;
    margin-top: 60px;
    text-align: center;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet{
	position: relative;
    height: 10px;
    width: 10px;
    background: var(--divider-color);
	opacity: 1;
    margin: 0 8px;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active{
	background: var(--accent-secondary-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--accent-secondary-color);
	height: 24px;
	width: 24px;
}

/************************************/
/*** 	   18. Our Blog css 	  ***/
/************************************/

.our-blog{
	padding: 80px 0 50px;
}

.post-item{
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-featured-image a{
    cursor: none;	
    display: block;
    overflow: hidden;
}

.post-featured-image figure{
	display: block;
}

.post-featured-image img{
	width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
    padding: 30px;
}

.post-item-content{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.post-item-content h2{
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a{
    color: inherit;
}

.post-item-footer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 10px;
}

.post-meta ul{
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.post-meta ul li{
    text-transform: capitalize;
    line-height: normal;
}

.post-meta ul li i{
    color: var(--accent-secondary-color);
    font-size: 18px;
    margin-right: 5px;
}

/************************************/
/*** 		19. CTA Box css		  ***/
/************************************/

.cta-box{
	padding: 80px 0 160px;
}

.cta-section{
	background: var(--secondary-color) url('/images/backgrounds/cta-box-bg.png') no-repeat;
    background-size: cover;
    background-position: center center;
    border: 1px solid var(--divider-color);
    border-radius: 30px;
	padding: 120px 0;
}

.cta-box-content{
	position: relative;
	max-width: 690px;
	text-align: center;
	margin: 0 auto;
}

.cta-box-content .section-title h2 figure{
	display: inline-block;
    mask-size: auto;
    mask-position: center center;
    mask-repeat: no-repeat;
	border-radius: 30px;
	width: 64px;
	height: 34px;
}

.cta-box-content .section-title h2 .cta-title-img-1 img{
	mask-image: url('/images/icons/about-title-img-mask-1.svg');
    background-image: url('/images/icons/about-title-img-mask-1.svg');
}

.cta-box-content .section-title h2 .cta-title-img-2 img{
	mask-image: url('/images/icons/about-title-img-mask-2.svg');
    background-image: url('/images/icons/about-title-img-mask-2.svg');
}

.cta-box-form{
	max-width: 560px;
	margin: 0 auto;
}

.cta-box-form .form-group{
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-right: none;
	border-radius: 100px;
	overflow: hidden;
}

.cta-box-form .form-group .form-control{
	width: 75%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4em;
	color: var(--white-color);
	background: transparent;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.cta-box-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.cta-box-form .form-group .btn-default{
	width: 25%;
	padding: 15px;
	margin: 0;
}

.cta-box-form .form-group .btn-default:before{
	display: none;
}

.cta-box-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 40px;
}

.cta-box-body .review-rating-content p{
	margin: 0;
}

/************************************/
/*** 		20. Footer css  	  ***/
/************************************/

.main-footer{
	background: #0f0f0f;
	color: #b0b3ba;
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 60px 0 0;
}

.footer-header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.footer-logo img{
	width: 100%;
	max-width: 174px;
}

.footer-contact-details{
	width: calc(100% - 194px);
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 30px;
}

.footer-contact-item{
	display: flex;
	max-width: 310px;
	align-items: center;
	border-right: 1px solid var(--dark-divider-color);
	padding-right: 30px;
}

.footer-contact-item:last-child{
	padding: 0;
	border: none;
}

.footer-contact-item .icon-box{
	margin-right: 20px;
}

.footer-contact-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.footer-contact-item-content{
	width: calc(100% - 60px);
}

.footer-contact-item-content p{
	margin-bottom: 5px;
}

.footer-contact-item-content p:last-child{
	margin: 0;
}

.footer-contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover{
	color: var(--accent-secondary-color);
}

.footer-newsletter-box h3,
.footer-links h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
	color: #ffffff;
}

.footer-newsletter-form .form-group{
	display: flex;
	background: #1a1a26;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control{
	width: 65%;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	color: var(--white-color);
	background: transparent;
	border-radius: 0;
	border: none;
	outline: none;
	box-shadow: none;
	padding: 15px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder{
	color: #5a5d6e;
}

.footer-newsletter-form .form-group .btn-default{
	width: 35%;
    padding: 14px 20px;
	margin: 0;
}

.footer-newsletter-form .form-group .btn-default::before{
	display: none;
}

.footer-newsletter-box p{
	margin: 30px 0 0;
	color: #7a7d8a;
}

/* ============================================================
   BEAUTIFIED FOOTER SOCIAL BAR (Footer Only)
   ============================================================ */
.footer-social-strip {
  margin-top: 28px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.footer-social-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-social-wrapper:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 15px rgba(124, 58, 237, 0.15);
}

.footer-social-title {
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #f1f5f9 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  line-height: 1 !important;
  white-space: nowrap;
}

.footer-social-title::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 8px #a855f7;
}

.footer-social-icons {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.footer-social-icons li {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.footer-social-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #cbd5e1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  position: relative !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.footer-social-btn svg {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
  fill: currentColor !important;
  transition: transform 0.25s ease !important;
  margin: auto !important;
  position: relative;
}

.footer-social-btn:hover svg {
  transform: scale(1.15);
}

/* Specific Brand Color Transitions & Glows */
.footer-social-btn.footer-social-fb:hover {
  background: #1877f2 !important;
  border-color: #1877f2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.65), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.footer-social-btn.footer-social-yt:hover {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.65), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.footer-social-btn.footer-social-li:hover {
  background: #0a66c2 !important;
  border-color: #0a66c2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(10, 102, 194, 0.65), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.footer-social-btn.footer-social-pin:hover {
  background: #e60023 !important;
  border-color: #e60023 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(230, 0, 35, 0.65), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.footer-social-btn.footer-social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(214, 36, 159, 0.65), 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-3px) scale(1.06) !important;
}

.footer-links-box{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 6.25vw;
}

.footer-links{
	max-width: 33.33%;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: #b0b3ba;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover{
	color: var(--accent-secondary-color);
}

/* =============================
   Footer tab buttons
   ============================= */

.footer-tab-btn {
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #7a7d8a;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.footer-tab-btn:hover {
	color: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

.footer-tab-btn.active {
	color: var(--accent-color);
	background: rgba(82, 27, 137, 0.08);
	border-color: var(--accent-color);
}

.tab-content-box {
	padding-top: 28px;
}

/* tabs css */

.tabs-footer-links ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.tabs-footer-links ul li{
  text-transform: capitalize;
  line-height: 1.5em;
  margin-bottom: 15px;
  font-size: 18px;
}

.tabs-footer-links ul li:last-child{
  margin-bottom: 0;
}

.tabs-footer-links ul li a{
  color: #b0b3ba;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.tabs-footer-links ul li a:hover{
  color: var(--accent-secondary-color);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px){
  .service-tabs{
    gap: 8px;
  }

  .service-tabs .btn{
    font-size: 13px;
    padding: 8px 12px;
  }

  .tabs-footer-links ul li{
    margin-bottom: 10px;
  }
}

.footer-services-section{
	background: #13131d;
	padding: 40px 0 50px;
	border-top: 1px solid rgba(255,255,255,0.08);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-copyright{
	background: #07070e;
	border-top: none;
	text-align: center;
	padding: 20px 0;
	margin-top: 0;
}

.footer-copyright-text p{
	margin: 0;
	color: #5a5d6e;
}

/* =====================================================
   HOME PAGE — Custom sections
   ===================================================== */

/* --- Hero 3D --- */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--divider-color);
}

/* Animated background orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(82,27,137,0.2) 0%, transparent 70%);
  filter: blur(90px);
  top: -200px; right: -120px;
  animation: orbDrift 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(245,158,11,0.16) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -160px; left: -120px;
  animation: orbDrift 18s ease-in-out infinite 4s;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  filter: blur(60px);
  top: 35%; left: 42%;
  animation: orbDrift 11s ease-in-out infinite 7s;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(28px,-36px) scale(1.08); }
  66%      { transform: translate(-18px,22px) scale(0.94); }
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(82,27,137,0.08);
  border: 1px solid rgba(82,27,137,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.home-hero-heading {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.home-hero-heading span {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 36px;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--default-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 12px 22px;
  transition: all 0.25s ease;
}

.btn-outline-hero:hover {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  background: rgba(245, 158, 11, 0.06);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.18);
}

.btn-outline-hero i {
  transition: transform 0.25s ease;
}

.btn-outline-hero:hover i {
  transform: translateX(4px);
}

.home-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--divider-color);
}

/* Hero right — 3D scene */
.home-hero-graphic {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  transition: transform 0.08s ease-out;
  will-change: transform;
  cursor: default;
}

/* Radial glow behind the illustration */
.hero-img-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,27,137,0.38) 0%, rgba(245,158,11,0.18) 50%, transparent 80%);
  filter: blur(55px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.75; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.12); }
}

/* Full image — no crop */
.hero-img-stage {
  position: relative;
  z-index: 2;
}
.hero-img-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  box-shadow:
    0 50px 120px rgba(82,27,137,0.28),
    0 12px 40px rgba(0,0,0,0.12),
    0 0 0 1px rgba(82,27,137,0.08);
}

/* Floating metric cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 13px 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14), 0 4px 16px rgba(82,27,137,0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
  white-space: nowrap;
}
.hero-float-card i {
  font-size: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}
.hero-float-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.hero-float-card span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.hero-card-1 {
  top: 18px; left: -36px;
  animation: heroFloat 4.2s ease-in-out infinite;
}
.hero-card-2 {
  bottom: 48px; right: -36px;
  animation: heroFloat 4.2s ease-in-out infinite 1.6s;
}
.hero-card-3 {
  bottom: 160px; left: -36px;
  animation: heroFloat 4.2s ease-in-out infinite 0.9s;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-13px); }
}

/* ── Hero dot-grid overlay ─────────────────────────────── */
.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(82,27,137,0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
  animation: dotGridDrift 40s linear infinite;
  opacity: 0.55;
}
@keyframes dotGridDrift {
  from { background-position: 0 0; }
  to   { background-position: 38px 38px; }
}

/* ── Animated gradient text on hero heading span ─────── */
.home-hero-heading span {
  background: linear-gradient(90deg,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 35%,
    #8b5cf6 60%,
    var(--accent-color) 100%);
  background-size: 250% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextFlow 5s linear infinite;
}
@keyframes heroTextFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

/* ── Rotating ring around hero image ─────────────────── */
.hero-img-ring {
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  border: 1.5px solid transparent;
  background-clip: padding-box;
  animation: ringRotate 10s linear infinite;
  box-shadow:
    0 0 0 1.5px rgba(82,27,137,0.0),
    inset 0 0 0 1.5px rgba(245,158,11,0.0);
}
/* Conic gradient spinner effect */
.hero-img-ring::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 29px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(82,27,137,0.5) 20%,
    rgba(245,158,11,0.5) 50%,
    rgba(139,92,246,0.3) 70%,
    transparent 100%
  );
  mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1.5px;
  animation: ringRotate 10s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Float card icon background ──────────────────────── */
.hero-float-icon-bg {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-color), rgba(82,27,137,0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-icon-bg i {
  font-size: 16px;
  color: #fff !important;
}
.hero-float-icon-cyan {
  background: linear-gradient(135deg, var(--accent-secondary-color), rgba(245,158,11,0.65));
}

/* Float card 4 — top right */
.hero-card-4 {
  top: 22px; right: -32px;
  animation: heroFloat 4.2s ease-in-out infinite 2.4s;
}

/* Entrance stagger on page load */
.hero-card-1 { animation-delay: 0s; }
.hero-card-2 { animation-delay: 1.6s; }
.hero-card-3 { animation-delay: 0.9s; }
.hero-card-4 { animation-delay: 2.4s; }

/* --- Stats strip --- */
.home-stats {
  padding: 64px 0;
  background: var(--bg-color);
  border-bottom: 1px solid var(--divider-color);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  overflow: hidden;
}

.home-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  background: var(--card-bg);
  text-align: center;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Services grid --- */
.home-services {
  padding: 70px 0;
  background: var(--bg-secondary);
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(82,27,137,0.12);
  transform: translateY(-4px);
}

.home-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(82,27,137,0.08);
  border: 1px solid rgba(82,27,137,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s ease;
}

.home-service-card:hover .home-service-icon {
  background: var(--accent-color);
}

.home-service-icon i {
  font-size: 20px;
  color: var(--accent-color);
  transition: color 0.25s ease;
}

.home-service-card:hover .home-service-icon i {
  color: #ffffff;
}

.home-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.home-service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  transition: gap 0.2s ease;
}

.home-service-card:hover .home-service-link {
  gap: 10px;
}

/* --- Why Choose Us --- */
.home-why {
  padding: 70px 0;
  background: var(--bg-color);
}

.home-why-cta {
  margin-top: 32px;
}

.home-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-why-item:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.home-why-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(82,27,137,0.08);
  border: 1px solid rgba(82,27,137,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-why-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.home-why-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.home-why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* --- CTA Banner --- */
.home-cta {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--divider-color);
}

.home-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
  border-radius: 24px;
  padding: 56px 60px;
  flex-wrap: wrap;
}

.home-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.home-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.home-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.home-cta-box .btn-default {
  background: #ffffff;
  color: var(--accent-color);
  border: none;
}

.home-cta-box .btn-default:hover {
  background: rgba(255,255,255,0.95);
  color: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.22);
}

.home-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.2s ease;
}

.home-cta-phone:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* Responsive home page */
@media (max-width: 991px) {
  .home-hero { min-height: auto; padding: 160px 0 80px; }
  .home-hero-heading { font-size: 42px; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
  .home-cta-box { padding: 40px 32px; flex-direction: column; text-align: center; }
  .home-cta-actions { justify-content: center; }
}

@media (max-width: 575px) {
  .home-hero-heading { font-size: 32px; }
  .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-services-grid { grid-template-columns: 1fr; }
  .home-cta-box { padding: 32px 24px; }
  .home-cta-content h2 { font-size: 24px; }
}

/* ============================================
   CONTACT PAGE V2
   ============================================ */

/* Outer section */
.contact-v2 {
  padding: 80px 0 0;
}

/* ── Left dark panel ── */
.contact-panel {
  position: relative;
  height: 100%;
  min-height: 560px;
  background: linear-gradient(145deg, #0f0a2e 0%, #1a1050 50%, #0d1a3a 100%);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
}

/* Decorative orbs inside left panel */
.contact-panel__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-panel__orb--1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(82,27,137,0.35) 0%, transparent 70%);
  filter: blur(60px);
  top: -80px; right: -60px;
  animation: orbDrift 12s ease-in-out infinite;
}
.contact-panel__orb--2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(245,158,11,0.25) 0%, transparent 70%);
  filter: blur(50px);
  bottom: -60px; left: -40px;
  animation: orbDrift 16s ease-in-out infinite 4s;
}

.contact-panel__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-panel__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-secondary-color);
  margin-bottom: 16px;
}

.contact-panel__heading {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-panel__heading span {
  background: linear-gradient(135deg, #818cf8, var(--accent-secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-panel__sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

/* Info items */
.contact-panel__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-panel__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-panel__info-item:hover {
  transform: translateX(4px);
}

.contact-panel__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-secondary-color);
  font-size: 16px;
  transition: background 0.2s ease;
}

.contact-panel__info-item:hover .contact-panel__info-icon {
  background: rgba(82,27,137,0.25);
}

.contact-panel__info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}

.contact-panel__info-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

/* Social icons */
.contact-panel__social {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.contact-panel__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-panel__social a:hover {
  background: rgba(82,27,137,0.35);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ── Right form card ── */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: none;
  border-radius: 0 24px 24px 0;
  padding: 56px 48px;
  height: 100%;
}

.contact-form-card__header {
  margin-bottom: 32px;
}

.contact-form-card__header h3 {
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.contact-form-card__header p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Floating label inputs */
.cf-field {
  position: relative;
}

.cf-input {
  width: 100%;
  padding: 26px 16px 8px;
  font-size: 15px;
  line-height: 1.4;
  font-family: var(--default-font);
  color: var(--text-color);
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

.cf-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(82,27,137,0.1);
  background: var(--card-bg);
}

.cf-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.18s ease;
}

/* Float up when focused or has value */
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
  top: 7px;
  transform: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-color);
}

/* Textarea variant */
.cf-textarea {
  padding-top: 28px;
  resize: vertical;
  min-height: 110px;
}

.cf-textarea ~ .cf-label {
  top: 20px;
  transform: none;
}

.cf-textarea:focus ~ .cf-label,
.cf-textarea:not(:placeholder-shown) ~ .cf-label {
  top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-color);
}

/* Service chips */
.cf-service-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--default-font);
  color: var(--text-muted);
  background: var(--bg-secondary);
  border: 1.5px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cf-chip i {
  font-size: 12px;
}

.cf-chip:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(82,27,137,0.06);
}

.cf-chip--active {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(82,27,137,0.1);
  font-weight: 600;
}

/* Alert */
.cf-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

.cf-alert--error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #dc2626;
}

/* Submit button */
.cf-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.cf-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.cf-disclaimer i {
  font-size: 11px;
  color: var(--accent-color);
}

/* Success state */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  gap: 16px;
  padding: 40px 0;
}

.contact-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 2px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #10b981;
  animation: successPop 0.5s cubic-bezier(0.22,1,0.36,1);
}

@keyframes successPop {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

.contact-success h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.contact-success p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 340px;
  margin: 0;
  line-height: 1.7;
}

/* ── Interactive Office Map & Highlight Spotlight ─────────────────────── */
.contact-map-section {
  padding: 80px 0 100px;
  position: relative;
  background: var(--bg-surface, #ffffff);
}

.contact-map-header {
  max-width: 760px;
  margin: 0 auto 36px;
}

.rs-map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.28);
  color: #7c3aed;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.rs-pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: rsPulseGreen 2s infinite;
}

@keyframes rsPulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.contact-map-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a !important;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rs-title-gradient {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.contact-map-subtitle {
  font-size: 15.5px;
  color: #475569 !important;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.rs-map-spotlight-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}

.rs-map-spotlight-container:hover {
  border-color: rgba(168, 85, 247, 0.7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 45px rgba(139, 92, 246, 0.25);
}

.rs-map-spotlight-container iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: none;
}

/* Floating Office Spotlight Card */
.rs-office-spotlight-card {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  z-index: 10;
  max-width: 370px;
  width: calc(100% - 48px);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 18px;
  padding: 22px;
  color: #f8fafc;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.rs-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rs-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c084fc;
  background: rgba(139, 92, 246, 0.18);
  padding: 3px 9px;
  border-radius: 6px;
}

.rs-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.rs-green-indicator {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: rsPulseGreen 1.8s infinite;
}

.rs-office-name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.rs-office-full-address {
  font-size: 13px;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0 0 14px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.rs-office-full-address i {
  color: #a855f7;
  margin-top: 3px;
  flex-shrink: 0;
}

.rs-office-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.rs-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
}

.rs-meta-item i {
  color: #7c3aed;
  width: 14px;
}

.rs-office-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rs-btn-directions {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
  transition: all 0.2s ease;
}

.rs-btn-directions:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #7e22ce 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.5);
}

.rs-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.14);
  color: #25d366 !important;
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.rs-btn-wa:hover {
  background: #25d366;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.rs-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border-radius: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.rs-btn-call:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Pulsing Radar Pin Overlay on the Map */
.rs-office-beacon-marker {
  position: absolute;
  top: 48%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rsBeaconFloat 3.5s ease-in-out infinite;
}

.rs-beacon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  margin-left: -27px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.55);
  animation: rsRadarPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

.rs-beacon-pin {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  border: 3px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.6), 0 0 0 3px rgba(124, 58, 237, 0.3);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}

.rs-beacon-pin i {
  transform: rotate(45deg);
}

.rs-beacon-tooltip {
  margin-top: 8px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 10px;
  padding: 6px 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.rs-beacon-tag {
  display: block;
  font-size: 9.5px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rs-beacon-tooltip strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
}

.rs-beacon-tooltip small {
  display: block;
  font-size: 11px;
  color: #94a3b8;
}

@keyframes rsRadarPulse {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@keyframes rsBeaconFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

/* Home Map Wrap Enhancement */
.rs-home-map-wrap {
  position: relative;
  border: 2px solid rgba(139, 92, 246, 0.35) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  border-radius: 18px !important;
  overflow: hidden;
}

.rs-home-map-overlay-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: #cbd5e1;
}

.rs-home-map-dir-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #7c3aed;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.15s ease;
}

.rs-home-map-dir-btn:hover {
  background: #6d28d9;
}

@media (max-width: 991px) {
  .rs-office-spotlight-card {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  .rs-map-spotlight-container {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 16px;
  }
  .rs-map-spotlight-container iframe {
    height: 320px;
    border-radius: 14px;
  }
  .rs-office-beacon-marker {
    display: none;
  }
  .contact-map-title {
    font-size: 24px;
  }
  .contact-map-subtitle {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .contact-panel {
    border-radius: 20px 20px 0 0;
    min-height: auto;
    padding: 40px 32px;
  }
  .contact-form-card {
    border-left: 1px solid var(--card-border);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 40px 32px;
  }
}

@media (max-width: 575px) {
  .contact-panel,
  .contact-form-card {
    padding: 32px 24px;
  }
  .contact-panel__heading { font-size: 24px; }
  .cf-chips { gap: 6px; }
  .cf-chip  { font-size: 12px; padding: 7px 12px; }
}

/************************************/
/*** 	21. About Us Page css	  ***/
/************************************/

.page-header{
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(82, 27, 137, 0.06) 60%, rgba(245, 158, 11, 0.05) 100%);
    border-bottom: 1px solid var(--divider-color);
	padding: 200px 0 90px;
    overflow: hidden;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 2;
}

.page-header-box h1{
	display: inline-block;
	font-size: 56px;
	color: var(--primary-color);
	cursor: default;
    margin-bottom: 10px;
}

.page-header-box h1 span{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span{
	background-position: right center;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--text-color);
	font-size: 16px;
	line-height: normal;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
	color: var(--text-color);
	content: '' !important;
}

.our-approach{
	padding: 80px 0;
}

.approach-image{
	position: relative;
	margin-right: 15px;
}

.approach-img figure{
	display: block;
	border-radius: 30px;
}

.approach-img figure:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(180deg, transparent 72.54%, rgba(18, 26, 31, 0.80) 100%);
	border-radius: 30px;
}

.approach-img img{
	width: 100%;
	aspect-ratio: 1 / 1.17;
	object-fit: cover;
	border-radius: 30px;
}

.approach-img-list{
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

.approach-img-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.approach-img-list ul li{
	position: relative;
	line-height: 1.5em;
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 7px 15px 7px 35px;
	transition: all 0.4s ease-in-out;
}

.approach-img-list ul li::before{
	content: '';
	position: absolute;
	left: 15px;
	top: 14px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	width: 10px;
	height: 10px;
	transition: all 0.4s ease-in-out;
}

.approach-img-list ul li:hover{
	color: var(--bg-color);
	background-color: var(--white-color);
}

.approach-img-list ul li:hover:before{
	background: var(--bg-color);
}

.mission-vision-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.mission-vision-item{
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color) url('/images/backgrounds/mission-vision-item-bg.png') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.mission-vision-item:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before{
	height: 100%;
	border-radius: 0;
}

.mission-vision-content{
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.mission-vision-content h3{
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.mission-vision-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .mission-vision-content h3,
.mission-vision-item:hover .mission-vision-content p{
	color: var(--bg-color);
}

.mission-vision-item:hover .readmore-btn{
	color: var(--bg-color);
}

.digital-advantage{
	padding: 80px 0;
}

.digital-advantage-item{
	background: var(--secondary-color) url('/images/backgrounds/digital-advantage-item-bg.png') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px 30px 0;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.digital-advantage-item:hover{
	transform: translateY(-3px);
}

.digital-advantage-item .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.digital-advantage-item:hover .icon-box{
	background-position: right center;
}

.digital-advantage-item .icon-box img{
	width: 100%;
	max-width: 40px;
}

.digital-advantage-content{
	margin-bottom: 40px;
}

.digital-advantage-content h3{
	font-size: 20px;
	margin-bottom: 30px;
}

.digital-advantage-content p{
	margin: 0;
}

.digital-advantage-img img{
	width: 100%;
	aspect-ratio: 1 / 0.87;
    object-fit: cover;
	border-radius: 30px 30px 0 0;
}

.our-team{
	padding: 80px 0 50px;
}

.team-item{
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image{
	background: var(--secondary-color) url('/images/backgrounds/team-item-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	text-align: center;
	padding: 30px 30px 0;
	margin-bottom: 20px;
}

.team-image a{
    display: block;
    cursor: none;
}

.team-image figure{
    display: block;
}

.team-image img{
    width: 100%;
	max-width: 210px;
	aspect-ratio: 1 / 1.45;
    object-fit: cover;
}

.team-content{
	margin-bottom: 15px;
}

.team-content h3{
    font-size: 20px;
    line-height: 1.4em;
}

.team-content h3 a{
    color: inherit;
}

.team-social-icon ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-icon ul li{
	display: inline-block;
	margin-right: 12px;
}

.team-social-icon ul li:last-child{
	margin-right: 0;
}

.team-social-icon ul li a{
	width: 36px;
	height: 36px;
	border: 1px solid var(--accent-secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background-color: var(--accent-secondary-color);
}

.team-social-icon ul li a i{
	color: var(--accent-secondary-color);
	font-size: 18px;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover i{
	color: var(--bg-color);
}

.our-promise{
	padding: 80px 0;
}

.promise-image{
	position: relative;
	margin-right: 30px;
	padding-right: 80px;
}

.promise-img figure{
	display: block;
	border-radius: 30px;
}

.promise-img img{
	width: 100%;
	aspect-ratio: 1 / 1.28;
	object-fit: cover;
	border-radius: 30px;
}

.promise-cta-box{
	position: absolute;
	right: 0;
	bottom: 40px;
	max-width: 380px;
	background-color: var(--white-color);
	padding: 40px;
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}

.promise-cta-box:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
}

.promise-cta-box:hover:before{
	height: 100%;
	border-radius: 0;
}

.promise-cta-content{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.promise-cta-content h3{
	color: var(--bg-color);
	font-size: 20px;
	margin-bottom: 10px;
}

.promise-cta-content p{
	color: var(--bg-color);
	margin: 0;
}

.promise-cta-box .hero-review-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	z-index: 1;
}

.promise-cta-box .hero-review-box .review-content{
	margin-top: 0;
}

.promise-cta-box .review-content .review-rating-star i{
	transition: all 0.3s ease-in-out;
}

.promise-cta-box .hero-review-box .review-rating-content p{
	color: var(--bg-color);
	transition: all 0.3s ease-in-out;
}

.promise-cta-box:hover .review-rating-content p span,
.promise-cta-box:hover .review-content .review-rating-star i{
	color: var(--bg-color);
}

.promise-body{
	margin-bottom: 40px;
}

.promise-body-list{
	margin-bottom: 40px;
}

.promise-body-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.promise-body-list ul li{
	width: calc(50% - 15px);
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
}

.promise-body-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.promise-counter-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.promise-counter-item{
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--secondary-color) url('/images/backgrounds/promise-counter-item-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 40px 20px;
	text-align: center;
	overflow: hidden;
}

.promise-counter-item:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(270deg, var(--accent-secondary-color) 0%, var(--accent-color) 100%);
	transition: all 0.4s ease-in-out;
}

.promise-counter-item:hover:before{
	height: 100%;
}

.promise-counter-item h2,
.promise-counter-item p{
	position: relative;
	z-index: 1;
}

.promise-counter-item h2{
	font-size: 46px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.promise-counter-item p{
	color: var(--text-color);
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.promise-counter-item:hover p,
.promise-counter-item:hover h2{
	color: var(--bg-color);
}

.our-belief{
	padding: 80px 0;
}

.our-belief-content{
	margin-right: 15px;
}

.our-belief-body{
	margin-bottom: 60px;
}

.our-belief-body ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-belief-body ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 20px;
}

.our-belief-body ul li:last-child{
	margin-bottom: 0;
}

.our-belief-body ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.our-belief-image{
	position: relative;
	text-align: center;
	padding: 0 80px 45px 80px;
}

.our-belief-img img{
	width: 100%;
	aspect-ratio: 1 / 1.31;
    object-fit: cover;
}

.belief-fund-box{
	position: absolute;
	top: 180px;
	left: 0;
	display: flex;
	align-items: center;
	background-color: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 15px 20px;
	animation: fundmoveobject 3s infinite linear alternate;
}

@keyframes fundmoveobject{
	50%{
		left: 40px;
	}
}

.belief-fund-box .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.belief-fund-box:hover .icon-box{
	background-position: right center;
}

.belief-fund-box .icon-box img{
	width: 100%;
	max-width: 18px;
}

.belief-fund-content{
	width: calc(100% - 44px);
}

.belief-fund-content p{
	line-height: normal;
	margin-bottom: 5px;
}

.belief-fund-content h3{
	font-size: 20px;
	font-weight: 700;
}

.belief-graph-image{
	position: absolute;
	right: 0;
	bottom: 0;
	animation: graphmoveobject 3s infinite linear alternate;
}

@keyframes graphmoveobject{
	50%{
		right: 40px;
	}
}

.belief-graph-image img{
	width: 100%;
	max-width: 240px;
	border-radius: 30px;
}

/************************************/
/* =============================================
   TOOLS PAGES — Overview + Individual Tools
   ============================================= */

/* ── Tools Hero Section ────────────────────── */
.tools-hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: var(--bg-secondary);
  overflow: hidden;
  border-bottom: 1px solid var(--divider-color);
}
.tools-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(82,27,137,0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
  pointer-events: none;
}
.tools-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: rgba(82,27,137,0.08);
  border: 1px solid rgba(82,27,137,0.22);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tools-hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 18px;
}
.tools-hero-heading span {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color), #8b5cf6, var(--accent-color));
  background-size: 250% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroTextFlow 5s linear infinite;
}
.tools-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── Terminal mockup ────────────────────────── */
.tools-terminal {
  background: #0d0d1a;
  border: 1px solid rgba(82,27,137,0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.35),
    0 0 0 1px rgba(82,27,137,0.12),
    inset 0 1px 0 rgba(255,255,255,0.06);
  font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
}
.tools-terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.tbar-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tbar-red    { background: #FF5F57; }
.tbar-yellow { background: #FFBD2E; }
.tbar-green  { background: #28C840; }
.tbar-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  font-family: var(--default-font);
}
.tools-terminal__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.tline {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(200,210,240,0.85);
  margin: 0;
}
.tline--dim { color: rgba(255,255,255,0.3); }
.tprompt  { color: #8B5CF6; margin-right: 8px; }
.tcmd     { color: #60A5FA; }
.targ     { color: #34D399; }
.tok      { color: #10B981; margin-right: 8px; font-weight: 700; }
.twarn    { color: #F59E0B; margin-right: 8px; font-weight: 700; }
.terr     { color: #EF4444; margin-right: 8px; font-weight: 700; }
.tscore   { color: #60A5FA; font-weight: 700; }
.tgood    { color: #10B981; font-weight: 700; margin-left: 8px; }
.tline--blink {
  color: rgba(82,27,137,0.8);
  animation: termBlink 1s step-end infinite;
}
@keyframes termBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ── Tools stats strip ──────────────────────── */
.tools-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 16px;
  overflow: hidden;
}
.tools-stat {
  background: var(--card-bg);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tools-stat i {
  font-size: 1.1rem;
  color: var(--accent-color);
}
.tools-stat strong {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}
.tools-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Tools card grid ────────────────────────── */
.tools-grid-section {
  padding: 80px 0;
}
.tools-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--tool-accent, var(--accent-color));
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px var(--tool-accent, var(--accent-color)), 0 0 30px color-mix(in srgb, var(--tool-accent, var(--accent-color)) 18%, transparent);
}
/* Top accent line */
.tool-card__line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tool-accent, var(--accent-color)), transparent);
  border-radius: 18px 18px 0 0;
}
/* Header row */
.tool-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.tool-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--tool-accent, var(--accent-color)) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--tool-accent, var(--accent-color)) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.tool-card:hover .tool-card__icon-wrap {
  background: color-mix(in srgb, var(--tool-accent, var(--accent-color)) 20%, transparent);
}
.tool-card__icon-wrap i {
  font-size: 1.25rem;
  color: var(--tool-accent, var(--accent-color));
}
.tool-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(82,27,137,0.1);
  color: var(--accent-color);
  border: 1px solid rgba(82,27,137,0.2);
}
.tool-card__live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #10B981;
}
.tool-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.75); }
}
.tool-card__name {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.tool-card__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}
.tool-card__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.tool-chip {
  padding: 3px 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tool-card:hover .tool-chip {
  border-color: color-mix(in srgb, var(--tool-accent, var(--accent-color)) 30%, transparent);
  color: var(--tool-accent, var(--accent-color));
}
.tool-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tool-accent, var(--accent-color));
  transition: gap 0.2s ease;
}
.tool-card:hover .tool-card__cta {
  gap: 12px;
}
.tool-card__cta i {
  font-size: 12px;
}
/* Hover glow overlay */
.tool-card__glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--tool-accent, var(--accent-color)) 8%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.tool-card:hover .tool-card__glow {
  opacity: 1;
}

/* ── Tools CTA section ──────────────────────── */
.tools-cta-section {
  padding: 0 0 96px;
}
.tools-cta-box {
  position: relative;
  padding: 64px 56px;
  background: linear-gradient(135deg, rgba(82,27,137,0.07) 0%, rgba(245,158,11,0.07) 100%);
  border: 1px solid rgba(82,27,137,0.18);
  border-radius: 22px;
  text-align: center;
  overflow: hidden;
}
.tools-cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.tools-cta-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,27,137,0.14) 0%, transparent 70%);
  filter: blur(60px);
  top: -150px; right: -80px;
  animation: orbDrift 18s ease-in-out infinite;
}
.tools-cta-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  filter: blur(60px);
  bottom: -100px; left: -60px;
  animation: orbDrift 22s ease-in-out infinite 6s;
}
.tools-cta-heading {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.25;
}
.tools-cta-heading span {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tools-cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ── Individual tool page ───────────────────── */
.tool-page-heading {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary-color);
  margin-bottom: 14px;
  line-height: 1.2;
}
.tool-page-heading span {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tool-page-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Tools Hero Band ── */
.tools-hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 40%);
  overflow: hidden;
}
.tools-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tools-hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 18px;
}
.tools-hero-heading span {
  background: linear-gradient(135deg, #7c3aed, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tools-hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 520px;
  margin-bottom: 28px;
}

/* ── Terminal Mockup ── */
.tools-terminal {
  background: #0d0d1a;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18), 0 0 30px rgba(124, 58, 237, 0.1);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
}
.tools-terminal__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tbar-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.tbar-red    { background: #ff5f57; }
.tbar-yellow { background: #febc2e; }
.tbar-green  { background: #28c840; }
.tbar-title {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
}
.tools-terminal__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tline {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.9);
  margin: 0;
}
.tline--dim { color: rgba(255, 255, 255, 0.3); }
.tprompt  { color: #a78bfa; margin-right: 8px; }
.tcmd     { color: #38bdf8; }
.targ     { color: #34d399; }
.tok      { color: #10b981; margin-right: 8px; font-weight: 700; }
.twarn    { color: #f59e0b; margin-right: 8px; font-weight: 700; }
.terr     { color: #ef4444; margin-right: 8px; font-weight: 700; }
.tscore   { color: #38bdf8; font-weight: 700; }
.tgood    { color: #10b981; font-weight: 700; margin-left: 8px; }
.tline--blink {
  color: #7c3aed;
  animation: termBlink 1s step-end infinite;
}

/* ── Tools Stats Grid (Luxury Floating Cards) ── */
.tools-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.tools-stat-card {
  background: #ffffff;
  border: 1.5px solid #ece8f8;
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.tools-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tools-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.12);
}
.tools-stat-card:hover::before {
  opacity: 1;
}
.tools-stat-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.tools-stat-number {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}
.tools-stat-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.tools-stat-sub {
  font-size: 0.76rem;
  font-weight: 500;
  color: #64748b;
}

/* ── Tools Bottom CTA (Luxury Dark SaaS Banner) ── */
.tools-cta-luxury-card {
  position: relative;
  background: linear-gradient(135deg, #120429 0%, #1e0b36 50%, #0d021c 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 30px;
  padding: 64px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25), 0 0 40px rgba(124, 58, 237, 0.15);
}
.tools-cta-luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.tools-cta-luxury-heading {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 850;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.tools-cta-luxury-heading span {
  background: linear-gradient(135deg, #c4b5fd, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tools-cta-luxury-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 34px;
}
.tools-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}
.tools-cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tools-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
}

@media (max-width: 991px) {
  .tools-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-cta-luxury-card {
    padding: 48px 24px;
  }
}
@media (max-width: 540px) {
  .tools-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Bot Matrix Card in Robots Tester ── */
.rs-bot-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.rs-bot-card:hover {
  transform: translateY(-3px);
  border-color: #7c3aed;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.08);
}
.rs-bot-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rs-bot-info strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 750;
}
.rs-bot-info span {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  font-family: monospace;
}

/* ── Tool scanner input ─────────────────────── */
.tool-scanner-section {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}
.tool-scanner-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(82,27,137,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}
.tool-input-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* Glowing halo behind the input card */
.tool-input-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(82,27,137,0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.tool-input-box {
  position: relative;
  z-index: 1;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(82,27,137,0.08), 0 1px 4px rgba(0,0,0,0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tool-input-box:focus-within {
  border-color: rgba(82,27,137,0.45);
  box-shadow: 0 4px 24px rgba(82,27,137,0.1), 0 0 0 4px rgba(82,27,137,0.07);
}
.tool-input-box--scanning {
  border-color: rgba(245,158,11,0.55);
  box-shadow: 0 4px 24px rgba(245,158,11,0.1), 0 0 0 4px rgba(245,158,11,0.06);
}

.tool-input-body {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 22px;
  gap: 0;
}

/* Globe icon prefix */
.tool-input-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(82,27,137,0.08);
  border: 1px solid rgba(82,27,137,0.15);
  flex-shrink: 0;
  margin-right: 14px;
}
.tool-input-prefix i {
  font-size: 14px;
  color: var(--accent-color);
}

.tool-input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-color);
  font-size: 1.05rem;
  font-family: var(--default-font);
  padding: 16px 0;
  min-width: 0;
  letter-spacing: 0.01em;
}
.tool-input-field::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.tool-input-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  margin: 6px;
  background: linear-gradient(135deg, #521B89, #7C3AED);
  color: #fff;
  border: none;
  border-radius: 13px;
  font: 600 0.95rem var(--default-font);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(82,27,137,0.35);
}
.tool-input-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #6d28d9, #521B89);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(82,27,137,0.45);
}
.tool-input-btn:active:not(:disabled) {
  transform: translateY(0);
}
.tool-input-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Hint text below input */
.tool-input-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.tool-input-hint i {
  font-size: 11px;
  color: var(--accent-color);
  opacity: 0.5;
}
/* Scanning line animation */
.tool-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
  bottom: 0;
  animation: scanLine 1.8s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { transform: translateY(0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-56px); opacity: 0; }
}
.tool-error-bar {
  margin-top: 14px;
  padding: 12px 18px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px;
  color: #EF4444;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Results section ────────────────────────── */
.tool-results-section {
  padding: 0 0 80px;
}
.audit-overview-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
/* SVG score ring */
.audit-score-ring {
  position: relative;
  width: 136px;
  height: 136px;
  flex-shrink: 0;
}
.score-ring-track {
  fill: none;
  stroke: var(--card-border);
  stroke-width: 8;
}
.score-ring-fill {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.audit-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.audit-score-num {
  font-family: var(--heading-font);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
}
.audit-score-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.audit-score-sub {
  font-size: 10px;
  color: var(--text-muted);
}
.audit-overview-meta {
  flex: 1;
  min-width: 200px;
}
.audit-overview-url {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
  word-break: break-all;
  margin-bottom: 12px;
}
.audit-overview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.audit-stat-chip {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.audit-overview-counts {
  display: flex;
  gap: 28px;
}
.audit-count-item {
  text-align: center;
}
.audit-count-num {
  display: block;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.audit-count-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Check cards grid */
.audit-checks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
}
.audit-check-card {
  padding: 20px 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.audit-check-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.audit-check-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.audit-check-label {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-color);
  flex: 1;
}
.audit-check-status {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.audit-check-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 6px 36px;
  word-break: break-word;
  line-height: 1.5;
}
.audit-check-tip {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0 36px;
  font-style: italic;
  line-height: 1.45;
  opacity: 0.8;
}
.tool-after-cta {
  position: relative;
  margin-top: 48px;
  padding: 44px 40px;
  background: linear-gradient(135deg, rgba(82,27,137,0.06), rgba(245,158,11,0.06));
  border: 1px solid rgba(82,27,137,0.15);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
}
.tool-after-cta h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.tool-after-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

/* ── What we check ──────────────────────────── */
.tool-what-section {
  padding: 0 0 96px;
}
.tool-what-heading {
  text-align: center;
  font-family: var(--heading-font);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
}
.tool-what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.tool-what-card {
  padding: 22px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.tool-what-card:hover {
  transform: translateY(-4px);
  border-color: rgba(82,27,137,0.35);
}
.tool-what-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(82,27,137,0.12), rgba(245,158,11,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-what-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}
.tool-what-card span {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--text-color);
}

/* ── Tools Card Grid (Exact 1-1 Port) ── */
.tools-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tool-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #ece8f8;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.04);
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: var(--tool-accent, #7c3aed);
  box-shadow: 0 16px 36px -6px rgba(124, 58, 237, 0.12);
  text-decoration: none;
}

.tool-card__line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tool-accent, #7c3aed);
  opacity: 0.9;
}

.tool-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.tool-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--tool-accent, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tool-card[style*="#521B89"] .tool-card__icon-wrap { background: rgba(82, 27, 137, 0.1); color: #521B89; }
.tool-card[style*="#10B981"] .tool-card__icon-wrap { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.tool-card[style*="#F59E0B"] .tool-card__icon-wrap { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.tool-card[style*="#8B5CF6"] .tool-card__icon-wrap { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.tool-card[style*="#EC4899"] .tool-card__icon-wrap { background: rgba(236, 72, 153, 0.1); color: #EC4899; }

.tool-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.tool-card__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
}

.tool-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.tool-card__name {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
}

.tool-card__desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 22px;
  flex-grow: 1;
}

.tool-card__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.tool-chip {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.tool-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--tool-accent, #7c3aed);
  margin-top: auto;
  transition: gap 0.2s ease;
}

.tool-card:hover .tool-card__cta {
  gap: 12px;
}

@media (max-width: 991px) {
  .tools-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  .tools-stats-strip { grid-template-columns: repeat(2, 1fr); }
  .tools-cta-box { padding: 40px 24px; }
  .audit-overview-card { flex-direction: column; align-items: flex-start; gap: 24px; padding: 24px; }
  .tool-input-body { flex-wrap: wrap; padding: 8px 8px 8px 16px; gap: 8px; }
  .tool-input-field { padding: 12px 0; }
  .tool-input-btn { width: calc(100% - 16px); margin: 0 8px 8px; justify-content: center; padding: 14px 20px; border-radius: 11px; }
  .tool-input-prefix { display: none; }
}

/*** 	 22. Services Page css	  ***/
/************************************/

/* ── Services page overhaul (Luxury SaaS Card Design) ── */
.services-featured-section {
  padding: 90px 0 70px;
}

.services-feature-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1.5px solid #f1f0f5;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  box-shadow: 0 6px 20px -4px rgba(15, 23, 42, 0.04);
}

.services-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -8px rgba(234, 88, 12, 0.12), 0 4px 16px rgba(124, 58, 237, 0.06);
  border-color: rgba(245, 158, 11, 0.45);
}

.services-feature-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  width: 100%;
}

.services-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-feature-card:hover .services-feature-img img {
  transform: scale(1.06);
}

.services-feature-icon {
  position: absolute;
  bottom: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 45%, #7c3aed 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  transition: transform 0.25s ease;
  z-index: 2;
}

.services-feature-card:hover .services-feature-icon {
  transform: scale(1.1) rotate(4deg);
}

.services-feature-icon i {
  color: #ffffff;
  font-size: 17px;
}

.services-feature-body {
  padding: 26px 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-feature-body h3 {
  font-size: 1.18rem;
  font-weight: 750;
  margin-bottom: 10px;
  color: #0f172a;
  letter-spacing: -0.015em;
  font-family: var(--heading-font, inherit);
  transition: color 0.2s ease;
}

.services-feature-card:hover .services-feature-body h3 {
  color: #c2410c;
}

.services-feature-body p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.services-feature-link {
  font-size: 0.9rem;
  font-weight: 750;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 45%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s ease;
}

.services-feature-card:hover .services-feature-link {
  gap: 10px;
}

/* ── Services directory ──────────────────────────────────── */
.services-directory-section {
  padding: 60px 0 80px;
  background: var(--bg-secondary);
}
.services-dir-group {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
}
.services-dir-category {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.services-dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-dir-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.services-dir-list li a:hover {
  color: var(--accent-color);
  gap: 12px;
}
.services-dir-list li a i {
  font-size: 10px;
  color: var(--accent-secondary-color);
  flex-shrink: 0;
}

.page-services{
	padding: 160px 0 50px;
}

.page-services .services-item-list-box{
	border: none;
}

.page-services .service-item{
	width: 100%;
	background: var(--secondary-color) url('/images/backgrounds/service-item-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.our-testimonials.service-our-testimonials{
	padding: 80px 0 160px;
}

/************************************/
/*** 	23. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 160px 0 10px 0 !important;
}

.page-single-sidebar{
    position: sticky;
    top: 100px;
    margin-right: 15px;
}

.page-category-list{
    background: var(--card-bg, #ffffff);
    border: 1px solid var(--card-border, #e2e8f0);
    border-radius: 18px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.page-category-list h3{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: var(--bg-secondary, #f8fafc);
    border-bottom: 1px solid var(--card-border, #e2e8f0);
    color: var(--text-color, #0f172a);
    padding: 18px 22px;
    margin: 0;
}

.page-category-list ul{
    list-style: none;
    margin: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.page-category-list ul li{
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1.4;
}

.page-category-list ul li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-color, #334155);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-category-list ul li a::before{
    content: none !important;
    display: none !important;
}

.page-category-list ul li a::after{
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--text-muted, #94a3b8);
    transition: all 0.2s ease;
}

.page-category-list ul li a:hover{
    background: var(--bg-secondary, #f1f5f9);
    color: var(--accent-color, #7c3aed);
    transform: translateX(4px);
    padding-left: 16px;
}

.page-category-list ul li a:hover::after{
    color: var(--accent-color, #7c3aed);
    transform: translateX(3px);
}

.page-category-list ul li a.active{
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(67, 56, 202, 0.08) 100%);
    color: var(--accent-color, #7c3aed);
    font-weight: 700;
    border-left: 3px solid var(--accent-color, #7c3aed);
}

.page-category-list ul li a.active::after{
    color: var(--accent-color, #7c3aed);
}

.page-cta-box.sidebar-cta-box{
    background: linear-gradient(135deg, #7c3aed 0%, #521b89 50%, #4338ca 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(124, 58, 237, 0.22);
    color: #ffffff;
}

@media (max-width: 768px) {
    .page-project-single .rs-stat-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

.page-cta-box.sidebar-cta-box .page-cta-counter-item h2,
.page-cta-box.sidebar-cta-box .page-cta-counter-item p,
.page-cta-box.sidebar-cta-box .review-rating-content p,
.page-cta-box.sidebar-cta-box .review-rating-content span{
    color: #ffffff !important;
}

.page-cta-box.sidebar-cta-box .page-cta-btn a{
    background: #ffffff;
    color: #7c3aed !important;
    font-weight: 700;
}

.page-single-image{
    margin-bottom: 36px;
}

.page-single-image figure{
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07);
}

.page-single-image img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.page-single-image.img-natural img,
.page-single-image.img-natural .reveal img {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
    width: 100%;
}

.service-entry{
    margin-bottom: 60px;
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

/* ── Beautified Section Boxes (Dynamic Per-Service Color System) ── */
:root,
.page-service-single {
    --srv-primary: #7c3aed;
    --srv-secondary: #a855f7;
    --srv-gradient: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
    --srv-light: rgba(124, 58, 237, 0.10);
    --srv-border: rgba(168, 85, 247, 0.35);
    --srv-glow: rgba(124, 58, 237, 0.22);
}

.rs-beautified-box {
    background: #ffffff;
    border: 1.5px solid #ece8f8;
    border-radius: 24px;
    padding: 42px 38px;
    margin-bottom: 42px;
    box-shadow: 0 10px 30px -5px var(--srv-light), 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rs-beautified-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--srv-gradient);
    opacity: 0.95;
}

.rs-beautified-box:hover {
    box-shadow: 0 16px 40px -8px var(--srv-glow), 0 4px 14px rgba(0, 0, 0, 0.04);
    border-color: var(--srv-border);
}

.rs-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--srv-light);
    color: var(--srv-primary);
    margin-bottom: 18px;
    border: 1.5px solid var(--srv-border);
    box-shadow: 0 2px 10px var(--srv-light);
}

.rs-section-badge i {
    font-size: 0.85rem;
    color: var(--srv-primary);
}

.rs-beautified-heading {
    font-family: var(--heading-font, inherit);
    font-size: 2.25rem;
    font-weight: 850;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
}

.rs-beautified-heading span {
    background: var(--srv-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.rs-beautified-subtext {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 1.75rem;
}

/* ── Strategy Checklist (Dynamic Brand Pill Badges & Card Glow) ── */
.service-entry ul.rs-strategy-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 28px 0 0 0;
}

.service-entry ul.rs-strategy-checklist li {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcff 50%, #f8f5ff 100%);
    border: 1.5px solid #ece8f8;
    border-radius: 16px;
    line-height: 1.55;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.service-entry ul.rs-strategy-checklist li::before {
    content: none !important;
    display: none !important;
}

.service-entry ul.rs-strategy-checklist li:hover {
    background: #ffffff;
    border-color: var(--srv-border);
    box-shadow: 0 14px 32px -4px var(--srv-glow), 0 4px 12px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

.rs-strategy-check-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--srv-gradient);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 4px 14px var(--srv-glow);
    transition: transform 0.25s ease;
}

.service-entry ul.rs-strategy-checklist li:hover .rs-strategy-check-icon {
    transform: scale(1.12);
}

.rs-strategy-check-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.55;
    flex: 1;
}

.rs-strategy-check-text strong {
    color: #0f172a;
    font-weight: 750;
    letter-spacing: -0.01em;
}

/* ── Coverage Grid & Feature Cards ── */
.rs-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.rs-coverage-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdfcff 50%, #f8f5ff 100%);
    border: 1.5px solid #ece8f8;
    border-radius: 18px;
    padding: 24px 22px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.rs-coverage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -6px var(--srv-glow), 0 4px 14px rgba(0, 0, 0, 0.04);
    border-color: var(--srv-border);
    background: #ffffff;
}

.rs-coverage-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.rs-coverage-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--srv-light);
    color: var(--srv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px var(--srv-light);
    transition: transform 0.25s ease;
}

.rs-coverage-card:hover .rs-coverage-icon {
    transform: scale(1.08) rotate(3deg);
}

.rs-coverage-title {
    font-size: 1.08rem;
    font-weight: 750;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.rs-coverage-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── 3-Column Feature Grid (Our Values & About Features) ── */
.rs-feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.rs-feature-card-3 {
    background: #ffffff;
    border: 1.5px solid #ece8f8;
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.rs-feature-card-3:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 18px 36px -6px rgba(124, 58, 237, 0.14), 0 4px 14px rgba(79, 70, 229, 0.06);
}

.rs-feature-icon-3 {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(124, 58, 237, 0.14) 100%);
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.rs-feature-card-3:hover .rs-feature-icon-3 {
    transform: scale(1.1) rotate(4deg);
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

@media (max-width: 991px) {
    .rs-feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .rs-feature-grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ── Stat Highlight Card ── */
.rs-stat-highlight-card {
    background: var(--srv-light);
    border: 1.5px solid var(--srv-border);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
    box-shadow: 0 4px 18px var(--srv-light);
    transition: all 0.28s ease;
}

.rs-stat-highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--srv-glow);
    border-color: var(--srv-primary);
}

.rs-stat-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--srv-gradient);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--srv-glow);
}

.rs-stat-meta {
    flex: 1;
}

.rs-stat-number {
    font-family: var(--heading-font, inherit);
    font-size: 2.2rem;
    font-weight: 850;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.rs-stat-number span {
    background: var(--srv-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 850;
}

.rs-stat-label {
    color: #475569;
    font-size: 0.92rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* ── Process Roadmap Grid ── */
.rs-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 26px;
}

.rs-process-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcff 50%, #f8f5ff 100%);
    border: 1.5px solid #ece8f8;
    border-radius: 18px;
    padding: 26px 24px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.rs-process-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -6px var(--srv-glow), 0 4px 16px rgba(0, 0, 0, 0.04);
    border-color: var(--srv-border);
}

.rs-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rs-process-step-pill {
    font-size: 0.75rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--srv-gradient);
    color: #ffffff;
    box-shadow: 0 3px 12px var(--srv-glow);
}

.rs-process-num-ghost {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--heading-font, inherit);
    line-height: 1;
    background: var(--srv-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.95;
    letter-spacing: -0.03em;
    transition: all 0.3s ease;
}

.rs-process-card:hover .rs-process-num-ghost {
    transform: scale(1.1);
    opacity: 1;
}

.rs-process-title {
    font-size: 1.12rem;
    font-weight: 750;
    color: #0f172a;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.rs-process-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── FAQ Modern Details/Summary (Dynamic Per-Service Color Style) ── */
.rs-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.rs-faq-item-modern {
    border: 1.5px solid #ece8f8;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcff 60%, #f8f5ff 100%);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px var(--srv-light);
}

.rs-faq-item-modern:hover {
    transform: translateY(-2px);
    border-color: var(--srv-border);
    box-shadow: 0 12px 28px -4px var(--srv-glow);
}

.rs-faq-item-modern[open] {
    background: #ffffff;
    border-color: var(--srv-border);
    box-shadow: 0 16px 36px -6px var(--srv-glow);
}

.rs-faq-summary-modern {
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.08rem;
    font-weight: 750;
    color: #0f172a;
    letter-spacing: -0.015em;
    transition: all 0.2s ease;
}

.rs-faq-summary-modern::-webkit-details-marker {
    display: none;
}

.rs-faq-left-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.rs-faq-num-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--srv-gradient);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 850;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--srv-glow);
    transition: transform 0.25s ease;
}

.rs-faq-item-modern:hover .rs-faq-num-badge {
    transform: scale(1.08);
}

.rs-faq-chevron-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--srv-light);
    color: var(--srv-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.rs-faq-item-modern:hover .rs-faq-chevron-icon {
    background: var(--srv-light);
    color: var(--srv-primary);
}

.rs-faq-item-modern[open] .rs-faq-chevron-icon {
    transform: rotate(180deg);
    background: var(--srv-gradient);
    color: #ffffff;
    box-shadow: 0 3px 10px var(--srv-glow);
}

.rs-faq-body-modern {
    padding: 20px 24px 24px 74px;
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.8;
    border-top: 1px solid rgba(226, 232, 240, 0.7);
    background: linear-gradient(180deg, rgba(250, 245, 255, 0.4) 0%, rgba(255, 255, 255, 0.8) 100%);
}

@media (max-width: 768px) {
    .service-entry ul.rs-strategy-checklist,
    .rs-coverage-grid,
    .rs-process-grid {
        grid-template-columns: 1fr;
    }
    
    .rs-beautified-box {
        padding: 26px 20px;
    }
    
    .rs-beautified-heading {
        font-size: 1.75rem;
    }

    .rs-faq-summary-modern {
        padding: 18px 16px;
        font-size: 0.98rem;
    }

    .rs-faq-body-modern {
        padding: 16px 16px 20px 16px;
    }
}

.service-strategy-image{
	margin-top: 40px;
}

.service-strategy-image figure{
	display: block;
	border-radius: 30px;
}

.service-strategy-image img{
	width: 100%;
	aspect-ratio: 1 / 0.351;
	object-fit: cover;
	border-radius: 30px;
}

.service-growth-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.growth-counter-box{
	width: calc(37% - 40px);
	background: var(--secondary-color) url('/images/backgrounds/growth-counter-box-bg.png') no-repeat;
	background-position: top left;
	background-size: auto;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	margin-right: 40px;
	padding: 30px;
}

.growth-counter-box .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.growth-counter-box .icon-box img{
	width: 100%;
	max-width: 30px;
}

.growth-counter-content h3{
	font-size: 40px;
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
	margin-bottom: 15px;
}

.growth-counter-box:hover .icon-box,
.growth-counter-box:hover .growth-counter-content h3{
	background-position: right center;
}

.service-growth-item-list{
	width: 63%;
	border-left: 1px solid var(--divider-color);
	padding-left: 40px;
}

.service-growth-item{
	margin-bottom: 30px;
}

.service-growth-item:last-child{
	margin-bottom: 0;
}

.service-growth-item h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.service-impact-images{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-impact-img{
	width: calc(50% - 15px);
}

.service-impact-img figure{
	display: block;
	border-radius: 30px;
}

.service-impact-img img{
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	 24. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 160px 0;
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--dark-divider-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover{
    background: var(--accent-secondary-color);
    color: var(--bg-color);
}

/************************************/
/*** 	 25. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 160px 0;
}

.post-single-meta{
	margin-top: 5px;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 30px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 30px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.post-entry span,
.post-entry div,
.post-entry td,
.post-entry li span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 600;
	line-height: 1.2em;
	margin: 0 0 0.44em;
}

.post-entry h1{
	font-size: 2.2rem;
}

.post-entry h2{
	font-size: 1.75rem;
	margin-top: 2rem;
}

.post-entry h3{
	font-size: 1.4rem;
	margin-top: 1.75rem;
}

.post-entry h4{
	font-size: 1.2rem;
	margin-top: 1.5rem;
}

.post-entry h5{
	font-size: 1.1rem;
}

.post-entry h6{
	font-size: 1rem;
}

.post-entry p{
	font-size: 1.1rem;
	line-height: 1.9;
	margin-bottom: 24px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 18px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('/images/icons/icon-blockquote.svg'), var(--secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
    padding: 30px 30px 30px 90px;
    margin: 30px 0;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 20px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
	border-radius: 100px;
    color: var(--primary-color);
    color: var(--bg-color);
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background-position: right center;
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    color: var(--bg-color);
	border-radius: 100px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-position: right center;
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	26. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 160px 0 130px;
}

/************************************/
/*** 	27. Project Single css	  ***/
/************************************/

.page-project-single{
	padding: 160px 0;
}

.project-category-list ul li{
	display: flex;
	gap: 20px;
}

.project-category-list ul li span{
	font-weight: 600;
}

.project-entry{
    margin-bottom: 60px;
}

.project-entry p{
    margin-bottom: 20px;
}

.project-entry p:last-child{
    margin-bottom: 0;
}

.project-entry h2{
    font-size: 46px;
	font-weight: 600;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.project-entry h2:last-child{
	margin-bottom: 0;
}

.project-entry h2 span{
	background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
	background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
	transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span{
	background-position: right center;
}

.project-entry ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-entry ul{
	list-style: none;
	padding: 0;
	margin: 40px 0 0 0;
}

.project-entry ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.project-highlight-box,
.project-result-box,
.project-marketing-box{
	margin-top: 60px;
}

.project-highlight-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 40px;
}

.project-highlight-item-list,
.project-highlight-image{
	width: calc(50% - 15px);
}

.project-highlight-item{
	display: flex;
	margin-bottom: 40px;
}

.project-highlight-item:last-child{
	margin-bottom: 0;
}

.project-highlight-item .icon-box{
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--secondary-color);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.project-highlight-item .icon-box::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.project-highlight-item:hover .icon-box::before{
	transform: scale(1);
}

.project-highlight-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-highlight-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.project-highlight-item-content{
	width: calc(100% - 80px);
}

.project-highlight-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.project-highlight-image figure{
	display: block;
	border-radius: 30px;
}

.project-highlight-image img{
	width: 100%;
	aspect-ratio: 1 / 0.965;
	object-fit: cover;
	border-radius: 30px;
}

.project-result-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-result-item{
	width: calc(50% - 15px);
	border-radius: 30px;
	background-color: var(--secondary-color);
	background-image: url('/images/backgrounds/project-result-item-bg.png');
	background-repeat: no-repeat;
	border: 1px solid var(--divider-color);
	background-position: center center;
	background-size: cover;
	padding: 30px;
}

.project-result-item:nth-child(4n - 3),
.project-result-item:nth-child(4n){
	background-color: var(--accent-secondary-color);
	background-image: none;
	border: none;
}

.project-result-item h3{
	font-size: 20px;
	margin-bottom: 15px;
}

.project-result-item:nth-child(4n - 3) h3,
.project-result-item:nth-child(4n) h3,
.project-result-item:nth-child(4n - 3) p,
.project-result-item:nth-child(4n) p,
.project-result-item:nth-child(4n - 3) ul li,
.project-result-item:nth-child(4n) ul li{
	color: var(--bg-color);
}

.project-result-item:nth-child(4n - 3) ul li::before,
.project-result-item:nth-child(4n) ul li::before{
	-webkit-text-fill-color: var(--bg-color);
}

.project-entry-image-video{
	position: relative;
	margin-top: 40px;
}

.project-entry-image-video figure{
	display: block;
	border-radius: 30px;
}

.project-entry-image-video figure img{
	width: 100%;
	aspect-ratio: 1 / 0.351;
	object-fit: cover;
	border-radius: 30px;
}

.project-entry-image-video figure:before{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--bg-color);
	opacity: 40%;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	position: relative;
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover{
	background-position: right center;
}

.video-play-button a:before,
.video-play-button a:after{
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 18px;
	color: var(--bg-color);
}

.marketing-counters-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.marketing-counter-item{
	width: calc(33.33% - 20px);
	display: flex;
	align-items: baseline;
}

.marketing-counter-item .icon-box{
	margin-right: 20px;
}

.marketing-counter-item .icon-box img{
	width: 100%;
	max-width: 50px;
}

.marketing-counter-item-content{
	width: calc(100% - 70px);
}

.project-entry .marketing-counter-item-content h2{
	line-height: 1em;
	margin-bottom: 5px;
}

.project-entry .marketing-counter-item-content h2 span{
	-webkit-text-fill-color: var(--primary-color);
}

/************************************/
/*** 	  28. Team Page css 	  ***/
/************************************/

.page-team{
	padding: 160px 0 130px;
}

/************************************/
/*** 	  29. Team Single css	  ***/
/************************************/

.page-team-single{
	padding: 160px 0;
}

.team-single-image{
	background: var(--secondary-color) url('/images/backgrounds/team-single-image-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
    text-align: center;
    padding: 30px 30px 0;
	margin-bottom: 60px;
}

.team-single-image figure{
    display: block;
}

.team-single-image img{
    width: 100%;
	max-width: 320px;
    aspect-ratio: 1 / 1.5;
    object-fit: cover;
}

.team-member-about,
.member-professional-info,
.team-skills-box{
	margin-bottom: 60px;
}

.team-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.team-contact-item{
	width: calc(50% - 15px);
	background: var(--secondary-color) url('/images/backgrounds/team-contact-item-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.team-contact-item .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box{
	background-position: right center;
}

.team-contact-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.team-contact-content{
	width: calc(100% - 80px);
}

.team-contact-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-contact-content p{
	margin: 0;
}

.member-social-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 20px;
}

.member-social-list h3{
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
	margin-right: 0;
}

.member-social-list ul li a{
	color: var(--primary-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
    background-color: var(--white-color);
	color: var(--bg-color);
}

.member-social-list ul li a i{
    color: inherit;
    font-size: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.member-professional-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-professional-list ul li{
	position: relative;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 15px;
}

.member-professional-list ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 6 Free';
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    top: 0;
    left: 0;
}

.team-skills-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-skills-list .skills-progress-bar{
	width: calc(50% - 15px);
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--dark-divider-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
	border-radius: 100px;
}

.contact-us-form.team-contact-form{
	width: 100%;
	border-radius: 30px;
}



.optin_select_box  option{
    background: var(--dark-divider-color) !important;
}

/************************************/
/*** 	 30. Pricing Page css	  ***/
/************************************/

.page-pricing{
    padding: 160px 0 80px;
}

/************************************/
/***  31. Testimonials Page css	  ***/
/************************************/

.page-testimonials{
	padding: 160px 0 50px;
}

.page-testimonials .testimonial-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/*** 	32. Image Gallery css	  ***/
/************************************/

.page-gallery{
    padding: 160px 0 130px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	33. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 160px 0 130px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--bg-color);
	border-radius: 30px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after{
	content: '\f04b';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: linear-gradient(136.83deg, var(--accent-color) 2.01%, var(--accent-secondary-color) 97.82%);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after{
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/*** 	  34. FAQs Page css 	  ***/
/************************************/

.page-faqs{
	padding: 160px 0;
}

.page-faqs .page-faq-accordion{
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child{
	margin-bottom: 0px;
}

/************************************/
/***    35. Contact Us Page css	  ***/
/************************************/

.page-contact-us{
	padding: 160px 0;
}

.contact-us-image figure{
	display: block;
	border-radius: 30px;
}

.contact-us-image img{
	width: 100%;
	aspect-ratio: 1 / 1.374;
	object-fit: cover;
	border-radius: 30px;
}

.contact-us-content{
	margin-left: 15px;
}

.contact-info-box{
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 20px;
	padding: 40px;
	box-shadow: var(--shadow-sm);
}

.contact-info-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.contact-info-item{
	width: calc(33.33% - 20px);
}

.contact-info-item .icon-box{
	background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box{
	background-position: right center;
}

.contact-info-item .icon-box img{
	width: 100%;
	max-width: 30px;
}

.contact-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.contact-item-content p{
	margin: 0;
}

.contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover{
	color: var(--accent-secondary-color);
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 18px;
}

.contact-social-list h3 {
  font-size: 19px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.contact-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-social-list ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}

.contact-social-list ul li:last-child {
  margin-right: 0;
}

.contact-social-list ul li a {
  color: #b0b3ba;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.contact-social-list ul li:hover a {
  background-color: var(--white-color);
  color: var(--bg-color);
  border-color: var(--white-color);
  transform: translateY(-2px);
}

.contact-social-list ul li a i {
  color: inherit;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.contact-social-list ul li a i.fa-facebook-f {
  margin-left: -1px;
}

.contact-social-list ul li a i.fa-youtube {
  font-size: 15px;
}

.contact-form-box{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	overflow: hidden;
	margin-top: 160px;
}

.contact-us-form{
	width: 50%;
	background: var(--secondary-color) url('/images/backgrounds/contact-us-form-bg.png') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 40px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background: var(--dark-divider-color) !important;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.contact-form .btn-default{
	width: 100%;
	padding: 15px;
	margin: 0;
}

.contact-form .btn-default::before{
	display: none;
}

.google-map-iframe{
	width: 50%;
}

.google-map-iframe iframe{
	height: 100%;
	width: 100%;
	filter: grayscale(100%) brightness(0.7);
	transition: all 0.3s ease-in-out;
}

.google-map-iframe:hover iframe{
	filter: grayscale(0%) brightness(1);
}

/************************************/
/***    36. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 160px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 45%;
}

.error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}

/************************************/
/***      37. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1700px){
	
	.bg-section{
		max-width: calc(100% - 40px);
		margin: 0 20px;
	}
}

@media only screen and (max-width: 1440px){

	.project-content{
		padding: 0px;
	}
}

@media only screen and (max-width: 1024px){

	.navbar{
		padding: 30px 0px;
	}

	.main-menu ul li{
		margin: 0;
	}
}

@media only screen and (max-width: 991px){
	
	.btn-default{
        padding: 12px 15px;
        margin-right: 44px;
    }
	
	.btn-default::before{
		background-size: 22px auto;
		right: -44px;
		width: 44px;
    	height: 44px;
	}
	
	.navbar{
		padding: 20px 0;
	}
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
		display: block;
    }
	
	.header-btn{
		display: none;
	}

	.bg-section{
		max-width: 100%;
		border: none;
		border-radius: 0;
		margin: 0;
	}

	.section-row{
		margin-bottom: 40px;
	}

	.section-row .section-title.section-title-center{
		max-width: 100%;
	}

	.section-content-btn .section-btn{
		margin-top: 20px;
	}
	
	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		padding: 7px 15px 7px 30px;
		margin-bottom: 15px;
	}

	.section-title h3::before{
		width: 6px;
    	height: 6px;
		left: 15px;
	}

	.section-title h1{
		font-size: 50px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
        margin-top: 10px;
    }

	.section-btn{
        text-align: left;
        margin-top: 15px;
	}

	.hero{
		padding: 150px 0 0;
	}

	.hero.hero-bg-image{
		padding: 150px 0 60px;
	}

	.hero.hero-bg-image .hero-content .hero-info-list{
		margin-bottom: 30px;
	}

	.hero.hero-bg-image .hero-content .hero-info-list ul{
		gap: 10px 15px;
	}

	.hero-content{
		margin: 0 0 50px;
	}

	.hero-circle-info,
	.hero-rating-info-box{
		height: auto;
		margin: 0;
	}

	.get-started-circle a img{
		max-width: 140px;
	}

	.hero-info-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-info-list ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.hero-info-list ul li::before{
		font-size: 16px;
	}
	
	.hero-image{
		height: auto;
		max-width: 60%;
		margin: 30px auto 0;
		text-align: center;
	}
	
	.hero-image::before{
		left: -60px;
		width: 450px;
		height: 450px;
	}

	.hero-rating-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.hero-rating-item p{
		margin: 10px 0 0;
	}

	.hero-rating-item h2{
		font-size: 34px;
	}

	.our-scrolling-ticker{
		padding: 20px 0;
	}

	.scrolling-content span{
		font-size: 28px;
	}

	.about-us{
		padding: 80px 0 10px !important;
	}

	.about-us-btn{
		margin-top: 30px;
	}

	.about-us-item{
		border-radius: 20px;
		padding: 30px;
	}

	.about-item-content{
		max-width: 190px;
	}

	.about-item-content h3{
		font-size: 22px;
	}

	.about-counter-content p{
		margin-top: 5px;
	}

	.about-counter-item .icon-box img{
		max-width: 60px;
	}

	.about-counter-content{
		width: calc(100% - 75px);
	}

	.about-counter-content h2{
		font-size: 32px;
	}

	.about-us-img-1{
		margin: -110px -40px -40px 40px;
	}

	.about-us-img-2{
		margin: 0 -10px -10px;
	}

	.about-counter-content .about-counter-header h2{
		font-size: 26px;
	}

	.about-us-img-3{
		margin: 0 -20px -30px -20px;
	}

	.our-services{
		padding: 40px 0;
	}

	.services-item-list-box{
		border-radius: 20px;
	}

	.service-item{
		width: 50%;
		padding: 30px;
	}

	.service-item:nth-child(-3n + 3){
		border-radius: 0;
	}

	.service-item:nth-child(-2n + 2){
		border-radius: 0 20px 0 0;
	}

	.service-item:last-child{
		border-radius: 0 0 20px 0;
	}

	.service-title-box{
		margin-bottom: 80px;
	}

	.service-item-body{
		transform: translateY(60px);
	}

	.service-btn{
		margin-top: 20px;
	}

	.service-image img{
		max-width: 160px;
	}

	.service-list{
		margin-top: 40px;
	}

	.service-list ul{
		gap: 15px 10px;
	}

	.service-list ul li{
		padding: 8px 12px 8px 30px;
	}

	.service-list ul li::before{
		left: 12px;
		width: 6px;
		height: 6px;
	}

	.why-choose-us{
		padding: 40px 0;
	}

	.why-choose-content{
		margin-bottom: 30px;
	}

	.why-choose-item{
		padding: 20px;
		border-radius: 20px;
		margin-bottom: 20px;
	}
	
	.why-choose-item h3{
		padding-left: 25px;
	}
	
	.why-choose-item::before{
		font-size: 16px;
	}

	.why-choose-img{
		max-width: 70%;
		margin: 0 auto;
	}

	.our-projects{
		padding: 40px 0;
	}

	.project-image{
		margin-bottom: 15px;
	}

	.project-image figure,
	.project-image figure img{
		border-radius: 20px;
	}

	.project-btn a{
		width: 50px;
		height: 50px;
	}

	.project-btn a img{
		max-width: 26px;
	}

	.project-content p{
		margin-bottom: 5px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text p span{
		font-size: 14px;
		padding: 3px 8px;
		margin-right: 5px;
	}

	.how-it-work{
		padding: 40px 0;
	}

	.work-image-box{
		margin: 0 0 30px;
	}

	.work-image figure{
		border-radius: 20px;
	}

	.work-image img{
		aspect-ratio: 1 / 0.79;
		border-radius: 20px;
	}

	.work-counter-item{
		border-radius: 20px;
		padding: 20px;
	}

	.work-counter-item h2{
		font-size: 32px;
	}

	.work-step-list{
		margin: 0;
	}

	.work-step-item{
		margin-bottom: 40px;
	}

	.work-step-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.work-step-item .icon-box img{
		max-width: 24px;
	}
	
	.work-step-item-content{
		width: calc(100% - 65px);
	}

	.work-step-item-content h3{
		margin-bottom: 10px;
	}

	.ready-to-talk-section.bg-section{
		padding: 40px 15px;
    	margin: 40px 0;
	}

	.ready-to-talk-box{
		gap: 40px;
	}
	
	.ready-to-talk-info{
		width: 100%;
	}
	
	.talk-author-images-1,
	.talk-author-images-2{
		width: calc(50% - 20px);
	}

	.ready-to-talk-box .section-title h2{
		font-size: 70px;
	}

	.ready-to-talk-btn{
		margin-top: 0;
	}

	.our-offers{
		padding: 40px 0;
	}

	.our-offers-content{
		margin-bottom: 30px;
	}

	.offer-body{
		padding-top: 30px;
	}

	.offer-body-item .icon-box{
		margin-bottom: 15px;
	}

	.offer-btn{
		margin-top: 30px;
	}

	.offer-image-box{
		max-width: 75%;
		margin: 0 auto;
	}

	.offer-image-box::before,
	.offer-image-box::after{
		border-radius: 20px;
	}

	.our-benefits{
		padding: 40px 0;
	}

	.benefit-item-list{
		padding: 30px;
		border-radius: 20px;
	}

	.benefit-item{
		width: calc(50% - 15px);
	}

	.benefit-item .icon-box{
		margin-bottom: 20px;
	}

	.benefit-item-content p{
		margin: 10px 0 0;
	}

	.benefit-item-btn{
		margin-top: 20px;
	}

	.our-benefit-box .section-footer-text{
		margin-top: 30px;
	}

	.our-facts{
		padding: 40px 0;
	}

	.fact-box-1{
        padding: 40px 30px;
        border-radius: 20px;
    }

	.fact-content,
	.fact-image-box{
		width: 100%;
	}

	.fact-btn{
		margin: 0;
	}

	.fact-image-box{
		max-width: 65%;
		padding: 0;
		margin: 0 auto;
	}

	.fact-image figure img{
		margin-bottom: -40px;
	}

	.fact-image-box .get-started-circle{
		top: 10px;
		left: 20px;
	}

	.fact-image-box .get-started-circle a img{
		max-width: 90px;
	}

	.fact-box-2{
		margin-bottom: 30px;
	}

	.fact-box-2 figure{
		border-radius: 20px;
	}

	.fact-item-content h2{
		font-size: 38px;
	}

	.fact-item{
		border-radius: 20px;
		padding: 20px;
	}

	.our-pricing{
		padding: 40px 0;
	}

	.our-pricing-swich{
		margin-bottom: 30px;
		gap: 20px;
	}

	.our-pricing-swich.form-switch .form-check-input{
		width: 60px;
		height: 32px;
		background-size: 22px auto;
	}

	.pricing-item{
		padding: 30px;
		border-radius: 20px;
	}

	.pricing-body,
	.pricing-price,
	.pricing-header{
		margin-bottom: 30px;
	}

	.pricing-header .icon-box{
		margin-right: 15px;
	}

	.pricing-header .icon-box img{
		max-width: 30px;
	}

	.pricing-title{
		width: calc(100% - 45px);
	}

	.pricing-price{
		padding: 15px;
		border-radius: 20px;
	}

	.pricing-price h2{
		font-size: 36px;
	}

	.pricing-body h3{
		margin-bottom: 15px;
	}

	.pricing-body ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before{
		font-size: 16px;
	}

	.pricing-btn .btn-default{
		padding: 12px 15px;
	}

	.pricing-benefit-list{
        margin-top: 5px;
    }

	.pricing-benefit-list ul{
        gap: 15px 30px;
    }

	.our-faqs{
		padding: 40px 0;
	}

	.faq-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-img figure,
	.faq-img img{
		border-radius: 20px;
	}

	.faq-img img{
		aspect-ratio: 1 / 0.6;
	}

	.faq-cta-box{
		bottom: 20px;
		left: 20px;
		padding: 20px;
		border-radius: 20px;
	}

	.faq-cta-box .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.faq-cta-box .icon-box img{
		max-width: 24px;
	}

	.faq-cta-content{
		width: calc(100% - 55px);
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		width: 26px;
    	height: 26px;
		font-size: 12px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 15px;
	}

	.our-testimonials{
		padding: 40px 0;
	}

	.testimonials-content-box{
		border-radius: 20px;
		padding: 30px 15px;
	}
	
	.testimonial-btn{
		margin: 0;
	}

	.page-cta-box{
		border-radius: 20px;
		padding: 20px;
	}

	.page-cta-counters{
		gap: 20px;
	}

	.page-cta-counter-item{
		width: calc(50% - 10px);
	}

	.page-cta-counter-item h2{
		font-size: 32px;
	}

	.page-cta-counter-item p{
		font-size: 14px;
		margin-top: 5px;
	}

	.page-cta-btn{
		margin-top: 30px;
	}

	.page-cta-btn a{
		font-size: 18px;
		padding: 10px 15px;
	}

	.page-cta-btn a img{
		max-width: 22px;
	}

	.testimonial-item{
		border-radius: 20px;
		padding: 30px;
	}

	.testimonials-rating{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 18px;
	}

	.testimonial-author{
		margin-top: 50px;
	}

	.author-content p{
		margin-top: 5px;
	}

	.testimonial-slider .testimonial-pagination{
		margin-top: 40px;
	}

	.our-blog{
		padding: 40px 0 10px;
	}

	.post-item{
		border-radius: 20px;
	}

	.post-item-body{
		padding: 20px;
	}

	.post-item-content{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.cta-box{
		padding: 40px 0 80px;
	}

	.cta-section{
		padding: 60px 0;
	}

	.cta-box-form .form-group .form-control{
		padding: 10px 15px;
	}

	.cta-box-form .form-group .btn-default{
		padding: 12px;
	}

	.cta-box-body{
		margin-top: 30px;
	}
	
	.main-footer{
		padding: 40px 0 0;
	}

	.footer-header{
		padding-bottom: 30px;
    	margin-bottom: 30px;
	}

	.footer-contact-details{
		gap: 15px;
	}

	.footer-contact-item{
		max-width: 240px;
		padding-right: 15px;
	}

	.footer-contact-item .icon-box{
		margin-right: 10px;
	}

	.footer-contact-item .icon-box img{
		max-width: 30px;
	}

	.footer-contact-item-content{
		width: calc(100% - 40px);
	}

	.footer-contact-item-content p{
		font-size: 14px;
	}

	.footer-newsletter-box{
		margin-bottom: 40px;
	}

	.footer-newsletter-box h3,
	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-newsletter-box p{
		margin: 20px 0 0;
	}

	.footer-newsletter-form .form-group .form-control{
		width: 75%;
		padding: 12px 14px;
	}

	.footer-newsletter-form .form-group .btn-default{
		width: 25%;
		padding: 12px 14px;
	}

	.footer-links-box{
		margin: 0;
	}

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
		padding: 15px 0;
		margin-top: 30px;
	}

	.page-header{
		padding: 170px 0 80px;
	}

	.page-header-box h1{
		font-size: 52px;
	}

	.our-approach{
		padding: 40px 0;
	}

	.approach-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.approach-img figure,
	.approach-img figure:before,
	.approach-img img{
		border-radius: 20px;
	}

	.approach-img img{
		aspect-ratio: 1 / 0.8;
	}

	.approach-img-list{
		bottom: 30px;
		left: 30px;
	}

	.approach-img-list ul li{
		font-size: 14px;
		padding: 5px 10px 5px 25px;
	}

	.approach-img-list ul li::before{
		width: 8px;
    	height: 8px;
		left: 10px;
    	top: 11px;
	}

	.mission-vision-list{
		margin-top: 30px;
	}

	.mission-vision-item{
		border-radius: 20px;
		padding: 20px;
	}

	.mission-vision-content{
		margin-bottom: 40px;
	}

	.mission-vision-content h3{
		margin-bottom: 10px;
	}

	.digital-advantage{
		padding: 40px 0;
	}

	.digital-advantage-item{
		padding: 20px 20px 0;
		border-radius: 20px;
	}

	.digital-advantage-item .icon-box{
		width: 60px;
		height: 60px;
		margin-bottom: 30px;
	}

	.digital-advantage-item .icon-box img{
		max-width: 30px;
	}

	.digital-advantage-content{
		margin-bottom: 30px;
	}

	.digital-advantage-content h3{
		margin-bottom: 20px;
	}

	.digital-advantage-img img{
		border-radius: 20px 20px 0 0;
	}

	.our-team{
		padding: 40px 0 10px;
	}

	.team-image{
		border-radius: 20px;
		padding: 20px 20px 0;
    	margin-bottom: 15px;
	}

	.team-content{
		margin-bottom: 10px;
	}

	.our-promise{
		padding: 40px 0;
	}

	.promise-image{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.promise-img figure,
	.promise-img img{
		border-radius: 20px;
	}

	.promise-img img{
    	aspect-ratio: 1 / 0.9;
	}

	.promise-cta-box{
		padding: 30px;
		border-radius: 20px;
		max-width: 360px;
		bottom: 30px;
	}

	.promise-cta-content{
		margin-bottom: 20px;
	}

	.promise-body,
	.promise-body-list{
		margin-bottom: 30px;
	}

	.promise-body-list ul{
		gap: 15px 30px;
	}

	.promise-body-list ul li{
		padding-left: 25px;
	}

	.promise-body-list ul li::before{
		font-size: 16px;
	}

	.promise-counter-item{
		padding: 30px 15px;
		border-radius: 20px;
	}

	.promise-counter-item h2{
		font-size: 36px;
		margin-bottom: 5px;
	}

	.our-belief{
		padding: 40px 0;
	}

	.our-belief-content{
		margin: 0 0 30px 0;
	}

	.our-belief-body{
    	margin-bottom: 30px;
	}

	.our-belief-body ul li{
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.our-belief-body ul li::before{
		font-size: 16px;
	}

	.our-belief-image{
		max-width: 80%;
		margin: 0 auto;
	}

	.belief-graph-image img{
		max-width: 190px;
		border-radius: 20px;
	}

	.belief-fund-box{
		top: 120px;
	}

	.page-services{
		padding: 80px 0 10px;
	}

	.page-services .service-item{
		border-radius: 20px;
	}

	.our-testimonials.service-our-testimonials{
		padding: 40px 0 80px;
	}

	.page-service-single{
		padding: 80px 0;
	}

	.page-single-sidebar{
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.page-category-list{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.page-category-list h3{
		padding: 15px 20px;
	}

	.page-category-list ul{
		padding: 20px;
	}

	.page-category-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-cta-box.sidebar-cta-box .page-cta-header{
		margin-bottom: 50px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.page-single-image figure,
	.page-single-image img{
		border-radius: 20px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul{
		margin-top: 30px;
		gap: 15px 20px;
	}

	.service-entry ul li{
		width: calc(50% - 10px);
		font-size: 14px;
		padding-left: 25px;
	}

	.service-entry ul li::before{
		font-size: 16px;
	}

	.service-strategy-box,
	.service-growth-box,
	.service-impact-box{
		margin-top: 40px;
	}

	.service-strategy-body{
		gap: 20px;
		margin-top: 30px;
	}

	.strategy-body-item{
		width: calc(50% - 10px);
		border-radius: 20px;
		padding: 20px;
	}
	
	.strategy-body-item h3{
		padding-left: 25px;
	}

	.strategy-body-item h3::before{
		font-size: 16px;
	}

	.strategy-body-item p{
		font-size: 14px;
	}

	.service-strategy-image{
		margin-top: 30px;
	}

	.service-strategy-image figure,
	.service-strategy-image img{
		border-radius: 20px;
	}

	.service-growth-body{
		margin-top: 30px;
		padding-top: 30px;
	}

	.growth-counter-box{
		width: calc(37% - 20px);
		border-radius: 20px;
		margin-right: 20px;
		padding: 20px;
	}

	.growth-counter-box .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.growth-counter-box .icon-box img{
		max-width: 26px;
	}

	.growth-counter-content h3{
		font-size: 32px;
		margin-bottom: 10px;
	}

	.service-growth-item-list{
		padding-left: 20px;
	}

	.service-growth-item{
		margin-bottom: 20px;
	}

	.service-growth-item h3{
		margin-bottom: 10px;
	}

	.service-growth-item p{
		font-size: 14px;
	}

	.service-impact-images{
		margin-top: 30px;
	}

	.service-impact-img figure,
	.service-impact-img img{
		border-radius: 20px;
	}

	.page-blog{
		padding: 80px 0;
	}

	.page-pagination{
        margin-top: 10px;
    }

	.page-single-post{
        padding: 80px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }

	.post-image figure,
	.post-image img{
		border-radius: 20px;
	}
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.42em;
    }
    
    .post-entry h2{
        font-size: 1.5rem;
    }

    .post-entry p{
        font-size: 1.05rem;
        line-height: 1.85;
        margin-bottom: 18px;
    }

    .post-entry ol li,
    .post-entry ul li{
		font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
		border-radius: 20px;
        margin: 20px 0;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }
    
    .post-tags .tag-links a{
        padding: 10px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 80px 0 50px;
	}

	.page-project-single{
		padding: 80px 0;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul{
		margin-top: 30px;
	}

	.project-entry ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before{
		font-size: 16px;
	}

	.project-highlight-box,
	.project-result-box,
	.project-marketing-box{
		margin-top: 40px;
	}

	.project-highlight-body{
		margin-top: 30px;
	}

	.project-highlight-item{
		margin-bottom: 30px;
	}

	.project-highlight-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.project-highlight-item .icon-box img{
		max-width: 26px;
	}

	.project-highlight-item-content{
		width: calc(100% - 65px);
	}

	.project-highlight-image figure,
	.project-highlight-image img{
		border-radius: 20px;
	}

	.project-result-item-list{
		gap: 20px;
		margin-top: 30px;
	}

	.project-result-item{
		width: calc(50% - 10px);
		border-radius: 20px;
		padding: 20px;
	}

	.project-result-item h3{
		margin-bottom: 10px;
	}

	.project-entry-image-video figure,
	.project-entry-image-video figure img{
		border-radius: 20px;
	}

	.marketing-counters-list{
		gap: 20px;
		margin-top: 30px;
	}

	.marketing-counter-item{
		width: calc(33.33% - 13.33px);
	}

	.marketing-counter-item .icon-box{
		margin-right: 15px;
	}

	.marketing-counter-item .icon-box img{
		max-width: 40px;
	}

	.marketing-counter-item-content{
		width: calc(100% - 55px);
	}

	.page-team{
		padding: 80px 0 50px;
	}

	.page-team-single{
		padding: 80px 0;
	}

	.team-single-image{
		border-radius: 20px;
		margin-bottom: 30px;
	}

	.team-member-about,
	.member-professional-info,
	.team-skills-box{
		margin-bottom: 40px;
	}

	.team-contact-list{
		margin-bottom: 30px;
	}

	.team-contact-item{
		border-radius: 20px;
		padding: 20px;
	}

	.team-contact-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.team-contact-item .icon-box img{
		max-width: 24px;
	}

	.team-contact-content{
		width: calc(100% - 65px);
	}

	.member-social-list{
		gap: 12px;
	}

	.member-professional-list ul li{
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.member-professional-list ul li:before{
		font-size: 16px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.contact-us-form.team-contact-form{
		border-radius: 20px;
	}

	.page-pricing{
		padding: 80px 0 40px;
	}

	.page-testimonials{
		padding: 80px 0 10px;
	}

	.page-gallery{
		padding: 80px 0 50px;
	}

	.page-gallery-box .photo-gallery figure,
	.page-gallery-box .photo-gallery img{
		border-radius: 20px;
	}

	.page-video-gallery{
		padding: 80px 0 50px;
	}	
	
	.video-gallery-image a::before,
	.video-gallery-image img{
		border-radius: 20px;
	}

	.page-faqs{
		padding: 80px 0;
	}

	.page-faqs .page-faq-accordion{
		margin-bottom: 40px;
	}

	.page-contact-us{
		padding: 80px 0;
	}

	.contact-us-image{
		margin-bottom: 30px;
	}

	.contact-us-image figure,
	.contact-us-image img{
		border-radius: 20px;
	}

	.contact-us-image img{
		aspect-ratio: 1 / 0.9;
	}

	.contact-us-content{
		margin-left: 0;
	}

	.contact-info-box{
		padding: 30px;
		border-radius: 20px;
	}

	.contact-info-item .icon-box{
		width: 50px;
		height: 50px;
		margin-bottom: 20px;
	}

	.contact-info-item .icon-box img{
		max-width: 26px;
	}

	.contact-item-content h3{
		margin-bottom: 10px;
	}

	.contact-form-box{
		border-radius: 20px;
		margin-top: 80px;
	}

	.contact-us-form,
	.google-map-iframe{
		width: 100%;
	}

	.contact-us-form{
		padding: 30px;
	}

	.contact-form .form-control{
		padding: 12px 15px;
	}

	.contact-form .btn-default{
		padding: 12px;
	}

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 450px;
	}

	.error-page{
		padding: 80px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px){

	.section-row{
		margin-bottom: 30px;
	}

	.section-title h1{
		font-size: 30px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.hero-content{
        margin: 0 0 30px;
    }

	.hero-circle-info{
		display: flex;
		align-items: center;
	}
	
	.get-started-circle a img{
        max-width: 90px;
    }

	.hero-info-list{
		width: calc(100% - 105px);
		border-top: none;
        margin: 0 0 0 15px;
        padding: 0;
    }

	.hero-info-list ul li{
		font-size: 14px;
	}

	.hero-rating-info-box{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 30px;
	}

	.hero-rating-item{
		width: calc(50% - 10px);
		text-align: left;
		border: none;
		margin: 0;
		padding: 0;
	}

	.hero-rating-item h2{
        font-size: 28px;
    }

	.hero-rating-item p{
		font-size: 14px;
        margin: 5px 0 0;
    }
	
	.hero-review-box{
		width: 100%;
		display: flex;
		gap: 20px;
    }

	.hero-review-box .review-content{
		margin: 0;
	}

	.review-content{
		margin-top: 15px;
	}

	.hero-image{
		max-width: 100%;
	}

	.hero-image::before{
        left: 10px;
        width: 300px;
        height: 300px;
        top: -30%;
    }

	.our-scrolling-ticker{
        padding: 15px 0;
    }

	.scrolling-ticker-box{
		--gap: 15px;
	}

	.scrolling-content span{
        font-size: 22px;
    }

	.scrolling-content span::before{
		width: 18px;
		height: 18px;
		margin-right: 15px;
	}

	.about-us-item{
        padding: 20px;
    }

	.about-item-content h3{
        font-size: 20px;
    }

	.about-us-img-1{
        margin: -130px -30px -40px auto;
        max-width: 90%;
    }

	.about-counter-content h2{
        font-size: 24px;
    }

	.about-us-img-2{
		margin: 0;
	}

	.about-counter-content .about-counter-header h2{
		font-size: 22px;
	}
	
	.service-item{
		width: 100%;
		padding: 20px;
	}

	.service-item:nth-child(-2n + 2){
        border-radius: 0;
    }

	.service-item:first-child{
		border-radius: 20px 20px 0 0;
	}

	.service-item:last-child{
		border-radius: 0 0 20px 20px;
	}

	.service-title-box{
        margin-bottom: 50px;
    }

	.service-title-box h3{
		font-size: 18px;
	}

	.service-content p{
		font-size: 14px;
	}

	.service-image img{
        max-width: 120px;
    }

	.service-list ul{
        gap: 10px;
    }
	
	.service-list ul li{
		font-size: 14px;
        padding: 6px 10px 6px 24px;
    }

	.service-list ul li::before{
		left: 10px;
	}

	.why-choose-item{
		padding: 15px;
	}

	.why-choose-item h3{
		font-size: 18px;	
	}

	.why-choose-item p{
		margin-top: 10px;
	}

	.why-choose-img{
        max-width: 100%;
		padding: 0 0 20px 20px;
    }

	.project-content p{
		font-size: 14px;
	}

	.project-content h3{
		font-size: 18px;
	}

	.work-image-box{
		gap: 15px;
	}

	.work-image-1,
	.work-image-2{
		width: calc(50% - 7.5px);
	}

	.work-image img{
        aspect-ratio: 1 / 1.2;
    }

	.work-counter-item{
		padding: 10px;
		margin-top: 15px;
	}

	.work-counter-item h2{
        font-size: 26px;
    }

	.work-counter-item p{
		font-size: 14px;
		margin-top: 10px;
	}

	.work-step-item{
		margin-bottom: 30px;
	}

	.work-step-item-content h3{
		font-size: 18px;
	}

	.work-step-item-content p{
		font-size: 14px;
	}

	.ready-to-talk-box .section-title h2{
		font-size: 40px;
	}

	.offer-body-item{
		width: calc(50% - 15px);
	}

	.offer-body-item-content h3{
		font-size: 18px;
	}

	.offer-image-box{
		max-width: 100%;
	}

	.benefit-item-list{
        padding: 30px 20px;
    }

	.benefit-item{
		width: 100%;
	}

	.benefit-item-content h3{
		font-size: 18px;
	}

	.benefit-item .icon-box{
		margin-bottom: 15px;
	}

	.benefit-item-btn a{
		width: 44px;
		height: 44px;
	}

	.fact-box-1{
		padding: 30px 20px;
	}

	.fact-image-box{
		max-width: 100%;
	}

	.fact-image::before{
		top: -70px;
		left: 30px;
		width: 300px;
		height: 300px;
	}

	.fact-image figure img{
        margin-bottom: -30px;
    }

	.fact-item{
		width: 100%;
	}

	.fact-item-content h2{
		font-size: 28px;
	}

	.fact-item-content p{
		margin: 5px 0 0;
	}

	.pricing-item{
		padding: 20px;
	}

	.pricing-body,
	.pricing-price,
	.pricing-header{
        margin-bottom: 20px;
    }
	
	.pricing-title h3{
		font-size: 18px;
	}

	.pricing-price h2{
        font-size: 26px;
    }

	.pricing-body h3{
		font-size: 18px;
	}
	
	.pricing-benefit-list ul{
		gap: 10px 25px;
	}

	.pricing-benefit-list ul li{
		font-size: 12px;
	}

	.pricing-benefit-list ul li img{
		max-width: 16px;
		margin-right: 5px;
	}

	.faq-img img{
		aspect-ratio: 1 / 0.9;
	}

	.faq-cta-box{
        bottom: 15px;
        left: 15px;
        padding: 15px;
    }

	.faq-cta-content h3{
		font-size: 18px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body p{
		font-size: 14px;
	}
	
	.page-cta-counter-item h2{
		font-size: 24px;
    }

	.page-cta-btn{
		margin-top: 20px;
	}

	.testimonial-item{
		padding: 20px;
	}

	.testimonials-rating{
        margin-bottom: 20px;
    }

	.testimonial-content p{
		font-size: 16px;
	}

	.testimonial-author{
        margin-top: 30px;
    }

	.author-content h3{
		font-size: 18px;
	}

	.post-item-content h2{
        font-size: 18px;
    }

	.post-meta ul li{
		font-size: 14px;
	}

	.post-meta ul li i{
		font-size: 16px;
	}

	.cta-box-form .form-group .form-control{
    	width: 68%;
	}

	.cta-box-form .form-group .btn-default{
		width: 32%;
		font-size: 14px;
	}

	.footer-logo,
	.footer-contact-details{
		width: 100%;
	}

	.footer-contact-item{
		max-width: 100%;
		width: 100%;
		padding: 0 0 15px;
		border-right: none;
		border-bottom: 1px solid var(--divider-color);
	}

	.footer-contact-item-content p{
		margin-bottom: 2px;
	}

	.footer-newsletter-box{
        margin-bottom: 30px;
    }

	.footer-newsletter-box h3,
	.footer-links h3{
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.footer-newsletter-form .form-group .form-control{
		width: 68%;
    }

	.footer-newsletter-form .form-group .btn-default{
		width: 32%;
        font-size: 14px;
    }
	
	.footer-newsletter-box p{
		margin: 10px 0 0;
    }

	.footer-links{
		max-width: 100%;
		width: 100%;
	}

	.footer-links ul li{
        margin-bottom: 8px;
    }

	.page-header-box h1{
		font-size: 30px;
		margin-bottom: 5px;
	}

	.approach-img img{
        aspect-ratio: 1 / 1.1;
    }
	
	.approach-img-list{
        bottom: 20px;
        left: 10px;
		right: 10px;
    }

	.approach-img-list ul{
		gap: 10px;
	}

	.mission-vision-item{
		width: 100%;
	}

	.mission-vision-content{
		margin-bottom: 20px;
	}

	.mission-vision-content h3{
		font-size: 18px;
	}

	.digital-advantage-item .icon-box{
		margin-bottom: 20px;
	}

	.digital-advantage-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.team-image img{
		max-width: 180px;
	}

	.team-content h3{
		font-size: 18px;
	}

	.promise-image{
		padding-right: 0px;
	}

	.promise-cta-box{
		position: relative;
		padding: 20px;
		max-width: 100%;
		margin-top: 20px;
		bottom: 0;
	}

	.promise-cta-content{
        margin-bottom: 10px;
    }

	.promise-cta-content h3{
		font-size: 18px;
	}

	.promise-body-list ul{
		gap: 10px;
	}

	.promise-body-list ul li{
		width: 100%;
	}

	.promise-counter-list{
		gap: 20px;
	}

	.promise-counter-item{
		width: calc(50% - 10px);
		padding: 20px 10px;
	}

	.promise-counter-item h2{
		font-size: 26px;
	}

	.promise-counter-item p{
		font-size: 14px;
	}

	.our-belief-image{
		max-width: 100%;
		padding: 0 50px 30px 50px;
	}

	.belief-fund-box{
		padding: 12px;
	}

	.belief-fund-content h3{
		font-size: 18px;
	}

	.belief-graph-image img{
        max-width: 140px;
    }

	.page-services .service-item{
		border-radius: 20px;
	}

	.page-category-list h3{
        font-size: 18px;
    }

	.page-single-image{
        margin-bottom: 20px;
    }

	.service-entry h2{
		font-size: 26px;
	}

	.service-entry ul{
		gap: 10px;
	}

	.service-entry ul li{
		width: 100%;
	}

	.strategy-body-item{
		width: 100%;
		padding: 15px;
	}

	.strategy-body-item h3{
		font-size: 18px;
	}

	.service-strategy-image img{
		aspect-ratio: 1 / 0.5;
	}
	
	.service-growth-body{
        margin-top: 20px;
        padding-top: 20px;
    }

	.growth-counter-box{
        width: 100%;
        padding: 15px;
        margin: 0 0 20px;
    }

	.growth-counter-content h3{
		font-size: 24px;
	}

	.service-growth-item-list{
		width: 100%;
		padding: 20px 0 0;
		border-left: none;
		border-top: 1px solid var(--divider-color);
	}

	.service-growth-item h3{
		font-size: 18px;
	}

	.service-impact-images{
		gap: 20px;
	}

	.service-impact-img{
		width: 100%;
		aspect-ratio: 1 / 0.55;
	}
	
	.post-single-meta ol li,
	.post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 1rem;
    }

    .post-entry h2{
        font-size: 1.35rem;
    }

	.tag-links{
		gap: 12px;
        font-size: 18px;
    }

	.project-entry h2{
		font-size: 26px;
	}

	.project-entry ul{
		margin-top: 20px;
	}

	.project-highlight-item-list,
	.project-highlight-image{
		width: 100%;
	}

	.project-highlight-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.project-highlight-image img{
		aspect-ratio: 1 / 0.68;
	}

	.project-result-item{
		width: 100%;
	}

	.project-result-item:nth-child(4n - 3),
	.project-result-item:nth-child(4n){
		background-color: var(--secondary-color);
		background-image: url('/images/backgrounds/project-result-item-bg.png');
		border: 1px solid var(--divider-color);
	}

	.project-result-item:nth-child(4n - 3) h3,
	.project-result-item:nth-child(4n) h3,
	.project-result-item:nth-child(4n - 3) p,
	.project-result-item:nth-child(4n) p,
	.project-result-item:nth-child(4n - 3) ul li,
	.project-result-item:nth-child(4n) ul li{
		color: var(--white-color);
	}

	.project-result-item:nth-child(4n - 3) ul li::before,
	.project-result-item:nth-child(4n) ul li::before{
		-webkit-text-fill-color: transparent;
	}

	.project-result-item:nth-child(even){
		background-color: var(--accent-secondary-color);
		background-image: none;
		border: none;
	}

	.project-result-item:nth-child(even) h3,
	.project-result-item:nth-child(even) p,
	.project-result-item:nth-child(even) ul li{
		color: var(--bg-color);
	}

	.project-result-item:nth-child(even) ul li::before{
		-webkit-text-fill-color: var(--bg-color);
	}

	.project-result-item h3{
		font-size: 18px;
	}

	.project-entry-image-video figure img{
		aspect-ratio: 1 / 0.56;
	}

	.marketing-counter-item{
		display: block;
	}

	.marketing-counter-item .icon-box{
		margin: 0 0 15px;
	}

	.marketing-counter-item .icon-box img{
		max-width: 35px;
	}

	.marketing-counter-item-content{
        width: 100%;
    }

	.marketing-counter-item-content p{
		font-size: 14px;
	}

	.team-single-image img{
		max-width: 250px;
	}

	.team-contact-list{
		gap: 20px;
	}

	.team-contact-item{
		width: 100%;
		padding: 15px;
	}

	.team-contact-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.member-social-list{
        gap: 8px;
    }

	.member-social-list h3{
		font-size: 18px;
	}

	.member-social-list ul li{
		margin-right: 6px;
	}

	.team-skills-list .skills-progress-bar{
		width: 100%;
	}

	.contact-info-box{
		padding: 20px;
	}

	.contact-info-item{
		width: auto;
	}

	.contact-item-content h3{
		font-size: 18px;
	}

	.contact-social-list{
		gap: 10px 14px;
	}

	.contact-social-list h3{
		font-size: 17px;
	}

	.contact-social-list ul{
		gap: 8px;
	}

	.contact-social-list ul li{
		margin: 0;
	}

	.contact-us-form{
        padding: 30px 20px;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 350px;
	}

}

/* ============================================================
   HOME PAGE — NEW SECTIONS (Clients, Process, Projects,
   Testimonials, Blogs, Tools)
   ============================================================ */

/* --- Clients Logo Strip ---
   WHY: Scrolling marquee = social proof without cluttering layout.
   We duplicate the array in JS and animate translateX(-50%)
   so when it reaches the midpoint it snaps back seamlessly.
   ---------------------------------------------------------------- */
.home-clients {
  padding: 48px 0 0;
  background: var(--bg-color);
  border-bottom: 1px solid var(--divider-color);
  overflow: hidden;
}

.home-clients-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.home-clients-label i {
  color: var(--accent-color);
  font-size: 12px;
}

.home-clients-marquee {
  overflow: hidden;
  width: 100%;
  padding-bottom: 40px;
}

.home-clients-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: client-scroll 55s linear infinite;
}

@keyframes client-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.home-client-card {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 28px;
  min-width: 170px;
  height: 90px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-client-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-sm);
}

.client-dark-bg {
  background: #1a1a2e;
  border-color: #1a1a2e;
}

.client-logo-img {
  max-height: 42px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.home-client-card:hover .client-logo-img {
  filter: grayscale(0);
  opacity: 1;
}

.client-logo-text {
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  line-height: 1.3;
}

.client-industry {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* --- Process / How We Work ---
   WHY: Numbered cards make the process tangible.
   The ::after pseudo-element draws a connector line between steps.
   ---------------------------------------------------------------- */
.home-process {
  padding: 70px 0;
  background: var(--bg-secondary);
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-process-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fdfcff 50%, #f8f5ff 100%);
  border: 1.5px solid #ece8f8;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.03);
}

.home-process-card:hover {
  background: #ffffff;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 18px 40px -6px rgba(124, 58, 237, 0.16), 0 4px 16px rgba(79, 70, 229, 0.06);
  transform: translateY(-6px);
}

.process-step-number {
  font-family: var(--heading-font, inherit);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.home-process-card:hover .process-step-number {
  transform: scale(1.12);
  opacity: 1;
}

.process-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(124, 58, 237, 0.14) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
}

.home-process-card:hover .process-step-icon {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
  border-color: transparent;
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
}

.process-step-icon i {
  font-size: 19px;
  color: #7c3aed;
  transition: color 0.25s ease;
}

.home-process-card:hover .process-step-icon i {
  color: #ffffff;
}

.home-process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.home-process-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.home-process-card::after {
  content: '';
  position: absolute;
  top: 54px;
  right: -13px;
  width: 24px;
  height: 2px;
  background: var(--divider-color);
  z-index: 1;
}

.home-process-card:last-child::after {
  display: none;
}

/* --- Featured Projects Preview ---
   WHY: Fetched live from /api/projects. Shows skeleton while loading,
   empty state if backend is offline. Card overflow:hidden clips the
   image so the scale transform on hover stays inside the border-radius.
   ---------------------------------------------------------------- */
.home-projects {
  padding: 70px 0;
  background: var(--bg-color);
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-project-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-project-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(82, 27, 137, 0.12);
  transform: translateY(-4px);
}

.home-project-img {
  width: 100%;
  height: 200px;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.home-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-project-card:hover .home-project-img img {
  transform: scale(1.04);
}

.home-project-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-project-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  background: rgba(82, 27, 137, 0.08);
  border: 1px solid rgba(82, 27, 137, 0.15);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.home-project-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.35;
}

.home-project-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  margin-top: auto;
}

.home-project-meta i {
  color: var(--accent-color);
  margin-right: 4px;
}

/* Skeleton loading cards — shimmer animation */
.home-skeleton-card {
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--bg-secondary) 25%,
    var(--divider-color) 50%,
    var(--bg-secondary) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state (backend offline or no data) */
.home-empty-state {
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.home-empty-state > i {
  font-size: 48px;
  color: var(--text-muted);
  opacity: 0.35;
  display: block;
  margin-bottom: 16px;
}

.home-empty-state p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 20px;
}

/* Case study cards (static fallback when backend is offline) */
.home-casestudy-card {
  cursor: default;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-casestudy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.home-casestudy-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.home-casestudy-icon i {
  font-size: 20px;
  color: #fff;
}
.home-casestudy-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 10px;
}
.home-casestudy-result strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}
.home-casestudy-result span {
  font-size: 13px;
  color: var(--text-muted);
}
.home-casestudy-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Niche industries section & cards ────────────────────── */
.niche-industries-section {
  padding: 80px 0 60px;
  background: var(--bg-secondary);
}
.niche-industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.niche-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-color);
}
.niche-industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.niche-industry-icon i {
  font-size: 18px;
  color: #fff;
}
.niche-industry-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.35;
}

/* "View All" CTA link below grids */
.home-section-cta {
  text-align: center;
  margin-top: 48px;
}

/* --- Testimonials ---
   WHY: Static data for now — real testimonials need quotes from clients.
   Avatar uses CSS gradient initials (no image needed).
   blockquote uses smart quotes via HTML entities.
   ---------------------------------------------------------------- */
.home-testimonials {
  padding: 70px 0;
  background: var(--bg-secondary);
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-testimonial-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  color: #F59E0B;
  font-size: 15px;
}

.home-testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-color);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--divider-color);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.testimonial-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3px;
}

.testimonial-author-info span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- Recent Blog Posts ---
   WHY: Fetched from /api/blogs. Same loading/empty pattern as projects.
   excerpt is sliced to 120 chars to keep cards uniform height.
   ---------------------------------------------------------------- */
.home-blogs {
  padding: 70px 0;
  background: var(--bg-color);
}

.home-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-blog-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(82, 27, 137, 0.12);
  transform: translateY(-4px);
}

.home-blog-img {
  width: 100%;
  height: 180px;
  background-color: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.home-blog-card:hover .home-blog-img {
  transform: scale(1.04);
}

.home-blog-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-blog-author {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

.home-blog-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

/* --- Free Tools Strip ---
   WHY: Reuses .home-service-card styles for the tool cards —
   no extra CSS needed for the cards themselves.
   ---------------------------------------------------------------- */
.home-tools {
  padding: 70px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--divider-color);
}

.home-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* ============================================================
   RESPONSIVE — HOME NEW SECTIONS
   ============================================================ */

@media (max-width: 1199px) {
  .home-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-process-card::after {
    display: none;
  }
}

@media (max-width: 991px) {
  .home-projects-grid,
  .home-testimonials-grid,
  .home-blogs-grid,
  .home-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .home-process-grid,
  .home-projects-grid,
  .home-testimonials-grid,
  .home-blogs-grid,
  .home-tools-grid {
    grid-template-columns: 1fr;
  }

  .home-clients-label {
    font-size: 11px;
    text-align: center;
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .home-client-card {
    min-width: 140px;
    padding: 12px 20px;
  }

  .home-process {
    padding: 60px 0;
  }

  .home-projects,
  .home-testimonials,
  .home-blogs,
  .home-tools {
    padding: 60px 0;
  }
}

/* ============================================================
   METRICS / RESULTS — animated CSS progress bars (no library)
   WHY: conic-gradient / CSS transitions give chart-like visuals
   without importing Chart.js or Recharts. The IntersectionObserver
   in page.tsx adds .metrics-active when the grid scrolls into view,
   which triggers the CSS transition on .metric-bar-inner.
   ============================================================ */
.home-metrics {
  padding: 70px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.home-metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(82, 27, 137, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.home-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.home-metric-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-metric-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 36px rgba(82, 27, 137, 0.12);
  transform: translateY(-5px);
}

.metric-value {
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}

.metric-label {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.metric-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.metric-bar-track {
  height: 6px;
  background: var(--divider-color);
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-inner {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Triggered by IntersectionObserver adding .metrics-active */
.metrics-active .metric-bar-inner {
  width: var(--bar-width);
}

/* ============================================================
   INDUSTRIES WE SERVE — pill/chip grid
   ============================================================ */
.home-industries {
  padding: 70px 0;
  background: var(--bg-color);
}

.home-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 52px;
}

.home-industry-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  cursor: default;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.home-industry-chip:hover {
  border-color: var(--accent-color);
background: rgba(82, 27, 137, 0.07);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(82, 27, 137, 0.12);
}

.home-industry-chip i {
  font-size: 15px;
  color: var(--accent-color);
  transition: transform 0.25s ease;
}

.home-industry-chip:hover i {
  transform: scale(1.2);
}

/* ============================================================
   FAQ — native <details><summary> accordion
   WHY: No useState, no JS — browser handles open/close natively.
   CSS [open] selector lets us animate the chevron and styling.
   ============================================================ */
.home-faq {
  padding: 70px 0;
  background: var(--bg-secondary);
}

.home-faq-list {
  max-width: 820px;
  margin: 60px auto 0;
}

.home-faq-item {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-faq-item[open] {
  border-color: var(--accent-color);
  box-shadow: 0 4px 24px rgba(82, 27, 137, 0.09);
}

.home-faq-question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  user-select: none;
  transition: color 0.2s ease;
}

.home-faq-question::-webkit-details-marker { display: none; }
.home-faq-question::marker { display: none; }

.home-faq-item[open] .home-faq-question {
  color: var(--accent-color);
}

.home-faq-chevron {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-faq-item[open] .home-faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.home-faq-answer {
  padding: 0 26px 24px;
}

.home-faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1199px) {
  .home-metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .home-metrics { padding: 60px 0; }
  .home-metrics-grid { grid-template-columns: 1fr; }
  .metric-value { font-size: 44px; }
  .home-industries { padding: 60px 0; }
  .home-faq { padding: 60px 0; }
  .home-faq-question { font-size: 15px; padding: 18px 20px; }
  .home-faq-answer { padding: 0 20px 20px; }
}

/* ── Hero particle canvas ───────────────────────────────────────── */
.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}


/* ── Heading aura (pseudo-element behind H1 text) ──────────────── */
.home-hero-heading {
  position: relative;
  isolation: isolate;
}
.home-hero-heading::before {
  content: '';
  position: absolute;
  inset: -18px -32px;
  background: radial-gradient(ellipse at 40% 50%, rgba(82,27,137,0.13) 0%, transparent 68%);
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Stronger hero image glow ───────────────────────────────────── */
.hero-img-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,27,137,0.52) 0%, rgba(139,92,246,0.22) 42%, rgba(245,158,11,0.10) 65%, transparent 80%);
  filter: blur(68px);
  z-index: 0;
  animation: glowPulse 5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   FREE AUDIT CTA STRIP
   ══════════════════════════════════════════════════════════════ */
.home-audit-strip {
  padding: 0;
  background: var(--bg-color);
}

.home-audit-strip-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(120deg, #2D1057 0%, #3D1466 40%, #521B89 70%, #3D1466 100%);
  border-radius: 24px;
  padding: 52px 60px;
}

.home-audit-strip-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-audit-strip-orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
  filter: blur(70px);
  top: -120px;
  right: 80px;
  animation: auditOrbDrift 14s ease-in-out infinite;
}
.home-audit-strip-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,0.30) 0%, transparent 70%);
  filter: blur(60px);
  bottom: -80px;
  left: 60px;
  animation: auditOrbDrift 18s ease-in-out infinite 5s;
}
@keyframes auditOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -20px) scale(1.1); }
}

.home-audit-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 14px;
}

.home-audit-strip-heading {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}
.home-audit-strip-heading span {
  background: linear-gradient(90deg, #F59E0B 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-audit-strip-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin-bottom: 24px;
  max-width: 520px;
}

.home-audit-strip-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}
.home-audit-strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.home-audit-strip-badge i { color: #10B981; font-size: 13px; }

.home-audit-strip-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.home-audit-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 32px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, gap 0.2s ease;
}
.home-audit-strip-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(82,27,137,0.08) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.home-audit-strip-btn:hover {
  background: #f5f3ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.22), 0 4px 16px rgba(0,0,0,0.1);
  gap: 16px;
  color: var(--accent-color);
}
.home-audit-strip-btn:hover::after { transform: translateX(120%); }

.home-audit-strip-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin: 0;
  text-align: center;
}

@media (max-width: 991px) {
  .home-audit-strip-box {
    flex-direction: column;
    text-align: center;
    padding: 44px 36px;
    gap: 32px;
  }
  .home-audit-strip-sub    { max-width: 100%; }
  .home-audit-strip-badges { justify-content: center; }
}
@media (max-width: 575px) {
  .home-audit-strip-box     { padding: 36px 24px; border-radius: 18px; }
  .home-audit-strip-heading { font-size: 26px; }
  .home-audit-strip-btn     { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   TOOLS & TECHNOLOGY STACK
   ══════════════════════════════════════════════════════════════ */
.home-tools-stack {
  padding: 100px 0;
  background: #0f0a1e;
  position: relative;
  overflow: hidden;
}
.home-tools-stack::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(139,92,246,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.55;
}

.home-tools-stack-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-tools-stack-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82,27,137,0.40) 0%, transparent 65%);
  filter: blur(90px);
  top: -200px;
  right: -150px;
  animation: toolsOrbDrift 20s ease-in-out infinite;
}
.home-tools-stack-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 65%);
  filter: blur(80px);
  bottom: -150px;
  left: -100px;
  animation: toolsOrbDrift 26s ease-in-out infinite 8s;
}
@keyframes toolsOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-25px, 20px) scale(0.95); }
}

.home-tools-stack-title h3 {
  color: rgba(245,158,11,0.9) !important;
  background: rgba(245,158,11,0.12) !important;
  border-color: rgba(245,158,11,0.25) !important;
}
.home-tools-stack-title h3::before { background: #F59E0B !important; }
.home-tools-stack-title h2 { color: #ffffff !important; }
.home-tools-stack-title h2 span {
  background: linear-gradient(90deg, #a78bfa 0%, #F59E0B 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.home-tools-stack-title p { color: rgba(255,255,255,0.55) !important; }

.home-tools-stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.home-tools-stack-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 200px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.home-tools-stack-pill:hover {
  background: rgba(82,27,137,0.25);
  border-color: rgba(82,27,137,0.55);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(82,27,137,0.25);
}

.home-tools-stack-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(82,27,137,0.40);
  border: 1px solid rgba(139,92,246,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.home-tools-stack-pill:hover .home-tools-stack-pill-icon { background: var(--accent-color); }
.home-tools-stack-pill-icon i { font-size: 16px; color: #a78bfa; transition: color 0.25s ease; }
.home-tools-stack-pill:hover .home-tools-stack-pill-icon i { color: #ffffff; }

.home-tools-stack-pill-info { display: flex; flex-direction: column; gap: 3px; }
.home-tools-stack-pill-name { font-family: var(--heading-font); font-size: 14px; font-weight: 700; color: #ffffff; white-space: nowrap; }
.home-tools-stack-pill-cat  { font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.42); white-space: nowrap; }

.home-tools-stack-footnote {
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.home-tools-stack-footnote i { font-size: 13px; color: rgba(139,92,246,0.7); }
.home-tools-stack-footnote-link {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.home-tools-stack-footnote-link:hover { color: #F59E0B; }

@media (max-width: 991px) {
  .home-tools-stack        { padding: 80px 0; }
  .home-tools-stack-pill   { min-width: 160px; }
}
@media (max-width: 575px) {
  .home-tools-stack        { padding: 60px 0; }
  .home-tools-stack-grid   { gap: 12px; }
  .home-tools-stack-pill   { min-width: calc(50% - 6px); flex: 1 1 calc(50% - 6px); }
  .home-tools-stack-pill-name { font-size: 13px; }
  .home-tools-stack-pill-cat  { display: none; }
  .home-tools-stack-pill-icon { width: 34px; height: 34px; }
}
@media (max-width: 360px) {
  .home-tools-stack-pill   { min-width: 100%; flex: 1 1 100%; }
}

/* ══════════════════════════════════════════════════════════════
   SPECIALIST COMPARISON TABLE
   ══════════════════════════════════════════════════════════════ */
.home-compare {
  padding: 70px 0;
  background: var(--bg-secondary);
}

.home-compare-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 60px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.home-compare-table {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1.3fr 1.3fr;
  min-width: 640px;
}

.home-compare-head,
.home-compare-row { display: contents; }

.home-compare-cell {
  padding: 18px 22px;
  font-size: 14px;
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-compare-row:last-child .home-compare-cell { border-bottom: none; }

.home-compare-cell--feature {
  font-weight: 600;
  color: var(--text-color);
  font-size: 14.5px;
}

.home-compare-head .home-compare-cell {
  background: rgba(82,27,137,0.03);
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 20px 22px;
}
.home-compare-head .home-compare-cell--us {
  background: rgba(82,27,137,0.08);
  color: var(--accent-color);
}

.home-compare-row .home-compare-cell--us { background: rgba(82,27,137,0.025); }

.home-compare-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 700;
}
.home-compare-col-label i { font-size: 14px; }
.home-compare-cell--alt   { color: var(--text-muted); gap: 8px; }
.home-compare-cell--alt i { font-size: 14px; }

.home-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.home-compare-check i { font-size: 15px; }
.home-compare-check--yes   { background: rgba(16,185,129,0.12);  color: #10B981; }
.home-compare-check--maybe { background: rgba(245,158,11,0.12);  color: #F59E0B; }
.home-compare-check--no    { background: rgba(239,68,68,0.10);   color: #EF4444; }

.home-compare-note { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

.home-compare-row:hover .home-compare-cell    { background-color: rgba(82,27,137,0.02); }
.home-compare-row:hover .home-compare-cell--us { background-color: rgba(82,27,137,0.06); }

@media (max-width: 767px) {
  .home-compare { padding: 80px 0; }
  .home-compare-table { min-width: 580px; }
  .home-compare-cell  { padding: 14px 16px; }
}
@media (max-width: 480px) {
  .home-compare-table       { min-width: 480px; }
  .home-compare-cell--feature { font-size: 13px; }
  .home-compare-note        { display: none; }
}
/* ── About Us Page ───────────────────────────────────────────────────────── */

/* Intro section image wrapper */
.about-image {
  position: relative;
}

.about-experience {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
}

.about-experience h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.about-experience p {
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.9;
}

/* Bullet list */
.about-bullet-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-bullet-list li i {
  color: var(--accent-color);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Value card hover */
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
}

@media (max-width: 991px) {
  .about-experience {
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 575px) {
  .about-experience {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }
}

/* ── SEO Audit Tool — Enhanced UI ────────────────────────────────────────── */

/* Issues summary panel */
.audit-issues-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.audit-issues-heading {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.audit-issues-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-issue-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border-left: 3px solid;
}

.audit-issue-badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.audit-issue-content {
  flex: 1;
  min-width: 0;
}

.audit-issue-content strong {
  font-size: 0.9rem;
  color: var(--text-color);
  display: block;
  margin-bottom: 2px;
}

.audit-issue-group {
  font-size: 0.75rem;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 600;
}

.audit-issue-content p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audit-issue-status {
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Group filter tabs */
.audit-group-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.audit-group-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.audit-group-tab:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.audit-group-tab.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.audit-group-tab.active .audit-tab-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.audit-tab-count {
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 700;
}

/* Group section heading */
.audit-group-section {
  margin-bottom: 40px;
}

.audit-group-heading {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--card-border);
}

.audit-group-heading i {
  color: var(--accent-color);
}

/* Fix toggle button */
.audit-check-fix-wrap {
  margin-top: 10px;
  border-top: 1px solid var(--card-border);
  padding-top: 10px;
}

.audit-fix-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.audit-fix-toggle:hover { opacity: 0.8; }

.audit-fix-body {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-radius: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  white-space: pre-line;
}

/* Pre-audit "what we check" group cards (Luxury SaaS Style) */
.tool-what-section {
  padding: 70px 0 90px;
}

.tool-what-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.tool-what-group-card {
  background: #ffffff;
  border: 1.5px solid #ece8f8;
  border-radius: 20px;
  padding: 28px 22px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.tool-what-group-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 16px 36px -6px rgba(124, 58, 237, 0.14), 0 4px 14px rgba(79, 70, 229, 0.06);
}

.tool-what-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(124, 58, 237, 0.14) 100%);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.tool-what-group-card:hover .tool-what-icon {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #4f46e5 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(4deg);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

.tool-what-group-card h4 {
  font-family: var(--heading-font, inherit);
  font-weight: 800;
  font-size: 1.08rem;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.tool-what-group-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tool-what-group-card ul li {
  font-size: 0.88rem;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1.4;
}

.tool-what-group-card ul li i {
  color: #7c3aed;
  margin-right: 8px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .tool-what-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tool-what-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .tool-what-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .audit-group-tabs { gap: 6px; }
  .audit-group-tab  { padding: 6px 12px; font-size: 0.8rem; }
  .audit-issues-panel { padding: 20px; }
  .audit-issue-content p { white-space: normal; }
}

/* ── Services page — hero section ───────────────────────────── */
.services-hero-section {
  padding: 80px 0 60px;
}

.services-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.services-hero-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.services-hero-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.services-hero-point > i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  color: #fff;
  font-size: 16px;
  margin-top: 2px;
}

.services-hero-point > div {
  flex: 1;
}

.services-hero-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3px;
  font-family: var(--heading-font);
}

.services-hero-point p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Services page — stats strip ────────────────────────────── */
.services-stats-section {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.services-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.services-stat-card > i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.services-stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--heading-font);
  line-height: 1;
  margin: 0;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-stat-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ── Services page — 4-pillar framework ─────────────────────── */
.services-framework-section {
  padding: 80px 0 60px;
}

.services-framework-card {
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-framework-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.framework-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  margin-bottom: 20px;
  flex-shrink: 0;
}

.framework-icon i {
  color: #fff;
  font-size: 22px;
}

.services-framework-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin-bottom: 12px;
  line-height: 1.3;
}

.services-framework-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.framework-card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

.framework-card-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-color);
  font-weight: 500;
}

.framework-card-points li i {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.12);
  color: var(--accent-color);
  font-size: 9px;
}

/* ── Responsive tweaks ───────────────────────────────────────── */
@media (max-width: 991px) {
  .services-hero-section { padding: 60px 0 40px; }
  .services-hero-image { margin-top: 40px; }
  .services-stat-card h3 { font-size: 26px; }
  .services-framework-card { padding: 24px 20px 22px; }
}

@media (max-width: 575px) {
  .services-stat-card { padding: 22px 16px; }
  .services-stat-card > i { width: 44px; height: 44px; font-size: 18px; }
  .framework-icon { width: 48px; height: 48px; border-radius: 12px; }
  .framework-icon i { font-size: 19px; }
  .services-hero-point > i { width: 36px; height: 36px; font-size: 14px; }
}

/* ── Services page — bottom CTA ────────────────────────────── */
.services-cta-section {
  padding: 80px 0 90px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
}

.services-cta-btn {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.services-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.services-cta-secondary:hover {
  color: var(--accent-secondary-color);
  gap: 12px;
}

.services-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-cta-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-cta-trust-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.services-cta-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  margin-top: 1px;
}

.services-cta-trust-icon i {
  color: #fff;
  font-size: 17px;
}

.services-cta-trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--heading-font);
  margin: 0 0 4px;
}

.services-cta-trust-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .services-cta-section { padding: 60px 0 70px; }
  .services-cta-trust { gap: 14px; }
}

@media (max-width: 575px) {
  .services-cta-btn { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-cta-trust-item { padding: 16px 18px; }
  .services-cta-trust-icon { width: 38px; height: 38px; border-radius: 10px; }
  .services-cta-trust-icon i { font-size: 15px; }
}

/* ============================================================
   PHONE GROUP (country code + number)
============================================================ */
.phone-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

/* Normalise the phone number input — static label is above, so no
   need for the floating-label top padding */
.phone-group .cf-input,
.phone-group .hc-input {
  flex: 1;
  min-width: 0;
  padding-top: 13px;
  padding-bottom: 13px;
}

/* ── Country-code select ── */
.phone-code-select {
  flex-shrink: 0;
  width: 148px;
  padding: 0 32px 0 14px;
  /* Accent-tinted gradient so it stands out from a plain input */
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.08) 0%,
    rgba(6, 182, 212, 0.05) 100%
  );
  border: 1.5px solid var(--accent-color);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--default-font);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  /* Accent-coloured chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%234F46E5' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  /* Subtle left-side accent stripe */
  box-shadow: inset 3px 0 0 var(--accent-color), 0 1px 4px rgba(79, 70, 229, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.phone-code-select:focus {
  border-color: var(--accent-color);
  box-shadow: inset 3px 0 0 var(--accent-color), 0 0 0 3px rgba(79, 70, 229, 0.15);
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.13) 0%,
    rgba(6, 182, 212, 0.07) 100%
  );
}

.phone-code-select:hover:not(:focus) {
  border-color: var(--accent-color);
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.11) 0%,
    rgba(6, 182, 212, 0.06) 100%
  );
}


/* ── PhoneCodeSelect & Phone Input component ── */
.phone-group,
.rs-phone-group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pcs-wrap {
  position: relative;
  flex-shrink: 0;
}

.pcs-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 105px;
  height: 50px;
  min-height: 50px;
  padding: 0 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  font-family: var(--default-font, inherit);
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.pcs-trigger:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

.pcs-trigger:focus,
.pcs-trigger[aria-expanded="true"] {
  background: #ffffff;
  border-color: var(--accent-color, #7c3aed);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.pcs-flag  { font-size: 18px; line-height: 1; }
.pcs-code  { font-size: 13.5px; font-weight: 700; color: #1e1b4b; }

.pcs-chevron {
  font-size: 10px;
  color: #64748b;
  margin-left: auto;
  transition: transform 0.2s ease, color 0.2s ease;
}

.pcs-trigger:hover .pcs-chevron,
.pcs-trigger[aria-expanded="true"] .pcs-chevron {
  color: var(--accent-color, #7c3aed);
}

.pcs-chevron--open { transform: rotate(180deg); }

/* Universal styling for phone text inputs next to PCS trigger */
.phone-group input[type="tel"],
.rs-phone-group input[type="tel"],
.pcs-wrap + input[type="tel"],
.rs-phone-field,
.cf-input#phone,
.hc-input#hc-phone {
  display: block;
  width: 100%;
  height: 50px !important;
  min-height: 50px;
  padding: 0 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
  font-size: 0.95rem !important;
  font-weight: 500;
  color: #0f172a !important;
  outline: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
  flex: 1;
}

.phone-group input[type="tel"]:focus,
.rs-phone-group input[type="tel"]:focus,
.pcs-wrap + input[type="tel"]:focus,
.rs-phone-field:focus,
.cf-input#phone:focus,
.hc-input#hc-phone:focus {
  background: #ffffff !important;
  border-color: var(--accent-color, #7c3aed) !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
}

.phone-group input[type="tel"]::placeholder,
.rs-phone-group input[type="tel"]::placeholder,
.pcs-wrap + input[type="tel"]::placeholder,
.rs-phone-field::placeholder,
.cf-input#phone::placeholder,
.hc-input#hc-phone::placeholder {
  color: #94a3b8 !important;
}

/* ── Dropdown panel ── */
.pcs-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 1000;
  width: 280px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  animation: pcsSlideIn 0.15s ease;
}

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

/* ── Search row ── */
.pcs-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--card-border);
  background: var(--bg-secondary);
}

.pcs-search-icon { font-size: 12px; color: var(--text-muted); flex-shrink: 0; }

.pcs-search {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--text-color);
  font-family: var(--default-font);
}
.pcs-search::placeholder { color: var(--text-muted); }

.pcs-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  line-height: 1;
}
.pcs-clear:hover { color: var(--text-color); }

/* ── Scrollable list ── */
.pcs-list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--card-border) transparent;
}
.pcs-list::-webkit-scrollbar       { width: 4px; }
.pcs-list::-webkit-scrollbar-track { background: transparent; }
.pcs-list::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 4px; }

/* ── Option row ── */
.pcs-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.12s;
}
.pcs-option:hover           { background: rgba(79,70,229,0.07); }
.pcs-option--active         { background: rgba(79,70,229,0.12); }
.pcs-option--active .pcs-option-code { color: var(--accent-color); }

.pcs-option-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.pcs-option-name { font-size: 13px; color: var(--text-color); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcs-option-code { font-size: 12px; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }

.pcs-empty { padding: 16px 14px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* Dark mode tweaks */
[data-theme="dark"] .pcs-dropdown { box-shadow: 0 12px 40px rgba(0,0,0,0.45); }

.cf-label--phone {
  margin-top: 6px;
}

.cf-phone-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 400px) {
  .phone-code-select { width: 118px; font-size: 12.5px; }
}

/* ============================================================
   AUDIT PROGRESS BAR
============================================================ */
.audit-progress-wrap {
  max-width: 560px;
  margin: 40px auto;
  text-align: center;
}

.audit-progress-url {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.audit-progress-url strong {
  color: var(--text-color);
}

.audit-progress-track {
  width: 100%;
  height: 8px;
  background: var(--card-border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 10px;
}

.audit-progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary-color));
  transition: width 0.4s ease;
}

.audit-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.audit-progress-stage {
  color: var(--text-muted);
}

.audit-progress-pct {
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

/* Inline variant for tools page (below input box) */
.audit-progress-inline {
  padding: 14px 4px 4px;
}

/* ============================================================
   HOME CONTACT SECTION
============================================================ */
.home-contact-section {
  padding: 20px 0 70px;
  background: var(--bg-secondary);
}

.hc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.home-contact-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.home-contact-section h2 span { color: var(--accent-color); }

.hc-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Form card ── */
.hc-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.hc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.hc-input,
.hc-select,
.hc-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-color);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--default-font);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.hc-input::placeholder,
.hc-textarea::placeholder { color: var(--text-muted); opacity: 0.7; }

.hc-input:focus,
.hc-select:focus,
.hc-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.hc-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%236b7280' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.hc-textarea {
  resize: vertical;
  min-height: 110px;
}

.hc-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-submit { width: 100%; justify-content: center; }

/* ── Success state ── */
.hc-success {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 60px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hc-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
}

.hc-success h3 {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.hc-success p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

/* ── Right column: info cards + map ── */
.hc-info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.hc-info-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.hc-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hc-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
}

.hc-info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.hc-info-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.hc-info-value a { color: inherit; text-decoration: none; }
.hc-info-value a:hover { color: var(--accent-color); }

.hc-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.hc-map-wrap iframe {
  width: 100%;
  height: 224px;
  display: block;
  border: none;
}

@media (max-width: 991px) {
  .home-contact-section { padding: 70px 0; }
  .hc-form-card { padding: 28px 22px; }
}

@media (max-width: 575px) {
  .hc-form-card { padding: 24px 18px; }
  .hc-success { padding: 40px 20px; }
}


/* ── Audit Category Breakdown ────────────────────────────────────────────── */
.audit-category-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.audit-category-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
}
.audit-category-heading i { color: var(--accent-color); }
.audit-cat-grid { display: flex; flex-direction: column; gap: 13px; }
.audit-cat-row { display: flex; align-items: center; gap: 14px; }
.audit-cat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 152px;
  flex-shrink: 0;
}
.audit-cat-name {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
}
.audit-cat-bar-track {
  flex: 1;
  height: 10px;
  background: var(--bg-secondary);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
}
.audit-cat-bar-pass {
  height: 100%;
  background: #10B981;
  border-radius: 999px 0 0 999px;
  transition: width 0.9s ease;
  flex-shrink: 0;
}
.audit-cat-bar-warn {
  height: 100%;
  background: #F59E0B;
  transition: width 0.9s ease;
  flex-shrink: 0;
}
.audit-cat-counts {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  width: 84px;
  flex-shrink: 0;
  justify-content: flex-end;
}
.audit-cat-counts small { font-size: 0.65rem; font-weight: 400; opacity: 0.65; margin-left: 1px; }
.audit-cat-pct {
  width: 40px;
  text-align: right;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .audit-cat-label { width: 110px; }
  .audit-cat-name  { font-size: 0.78rem; }
  .audit-cat-counts { display: none; }
}

/* ── Print-only elements hidden on screen ────────────────────────────────── */
.print-only { display: none !important; }

/* ═══════════════════════════════════════════════════════
   PRINT / SAVE AS PDF  — 2-page compact layout
   ═══════════════════════════════════════════════════════ */
@media print {
  /* ── Page setup ──────────────────────────────────────── */
  @page { size: A4 portrait; margin: 0 0 20pt 0; }

  /* ── Hide site chrome ────────────────────────────────── */
  .main-header, .main-footer, .our-scrolling-ticker,
  .rs-preloader, .ambient-bg,
  .tool-scanner-section, .free-audit-form-section,
  #rs-audit-results-section, #rs-preaudit-what-section,
  #rs-lead-popup, #rs-chat-container, #rs-chat-fab, .rs-chat-fab { display: none !important; }

  /* ── Swap screen / print ─────────────────────────────── */
  .screen-only { display: none !important; }
  .print-only, #rs-print-report  { display: block !important; }

  /* ── Global reset ────────────────────────────────────── */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  html, body {
    background: #fff !important; color: #111 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 10pt; margin: 0; padding: 0;
  }

  /* ── Root ────────────────────────────────────────────── */
  .pr-root { padding: 16pt 20pt 50pt; background: #fff; color: #111; position: relative; }

  /* ── Watermark ───────────────────────────────────────── */
  .pr-watermark {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-22deg);
    width: 55%; opacity: 0.05; z-index: 0;
    pointer-events: none; filter: grayscale(100%);
  }

  /* ── Fixed page footer ───────────────────────────────── */
  .pr-page-footer {
    position: fixed; bottom: 0; left: 0; right: 0;
    display: flex !important; justify-content: space-between; align-items: center;
    padding: 4pt 20pt; font-size: 7pt; color: #999;
    border-top: 0.5pt solid #e5e7eb; background: #fff;
  }

  /* ── PAGE 1 HEADER ───────────────────────────────────── */
  .pr-header {
    display: flex !important; justify-content: space-between; align-items: flex-start;
    margin-bottom: 6pt;
  }
  .pr-header-left  { display: flex !important; align-items: center; gap: 11pt; }
  .pr-logo         { height: 30pt; width: auto; display: block; }
  .pr-header-info  { display: flex !important; flex-direction: column; gap: 2pt; }
  .pr-report-title { font-size: 13pt; font-weight: 800; color: #111; line-height: 1.2; }
  .pr-report-url   { font-size: 8pt; color: #4F46E5; word-break: break-all; }
  .pr-report-date  { font-size: 7pt; color: #777; }
  .pr-score-badge  { border: 2pt solid; border-radius: 8pt; padding: 5pt 11pt; text-align: center; min-width: 52pt; }
  .pr-score-num    { display: block; font-size: 24pt; font-weight: 900; line-height: 1; }
  .pr-score-label  { display: block; font-size: 7pt; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5pt; margin-top: 1pt; }
  .pr-score-sub    { display: block; font-size: 6.5pt; color: #999; margin-top: 1pt; }
  .pr-divider      { border: none; border-top: 1.5pt solid; margin: 5pt 0 9pt; }

  /* ── METRICS STRIP ───────────────────────────────────── */
  .pr-metrics-strip {
    display: flex !important; border: 0.75pt solid #e5e7eb;
    border-radius: 6pt; overflow: hidden; margin-bottom: 10pt;
  }
  .pr-metric-cell {
    flex: 1; text-align: center; padding: 5pt 2pt;
    border-right: 0.75pt solid #e5e7eb;
    display: flex !important; flex-direction: column; align-items: center; gap: 2pt;
  }
  .pr-metric-cell:last-child { border-right: none; }
  .pr-metric-val   { font-size: 12pt; font-weight: 800; line-height: 1; }
  .pr-metric-label { font-size: 6.5pt; color: #666; text-transform: uppercase; letter-spacing: 0.3pt; }

  /* ── 3×2 MAIN GRID ──────────────────────────────────── */
  .pr-main-grid {
    display: grid !important; grid-template-columns: 1fr 1fr;
    gap: 9pt; margin-bottom: 10pt;
  }
  .pr-panel { border: 0.75pt solid #e5e7eb; border-radius: 5pt; padding: 8pt 10pt; }
  .pr-panel-heading {
    font-size: 8pt; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4pt;
    color: #333; margin-bottom: 7pt; padding-bottom: 4pt;
    border-bottom: 0.75pt solid #e5e7eb;
    display: flex !important; align-items: center; gap: 5pt;
  }
  .pr-panel-subheading {
    font-size: 7pt; font-weight: 700; color: #555; margin: 7pt 0 4pt;
    display: flex !important; align-items: center; gap: 4pt;
  }

  /* Category bars (inside panel) */
  .pr-cat-list { display: flex !important; flex-direction: column; gap: 5pt; }
  .pr-cat-row  { display: flex !important; align-items: center; gap: 6pt; }
  .pr-cat-label { display: flex !important; align-items: center; width: 82pt; flex-shrink: 0; }
  .pr-cat-name       { font-size: 8pt; font-weight: 500; color: #111; }
  .pr-cat-bar-track  { flex: 1; height: 8pt; background: #f0f0f0; border-radius: 99pt; overflow: hidden; display: flex !important; }
  .pr-cat-bar-pass   { height: 100%; background: #10B981; border-radius: 99pt 0 0 99pt; flex-shrink: 0; }
  .pr-cat-bar-warn   { height: 100%; background: #F59E0B; flex-shrink: 0; }
  .pr-cat-pct        { width: 24pt; text-align: right; font-size: 8pt; font-weight: 700; flex-shrink: 0; }
  .pr-cat-counts     { width: 58pt; font-size: 7pt; text-align: right; flex-shrink: 0; }

  /* Key signals (inside panel) */
  .pr-signals-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 4pt; margin-bottom: 0; }
  .pr-signal { display: flex !important; align-items: center; gap: 5pt; padding: 3.5pt 6pt; border-radius: 3pt; }
  .pr-signal--pass { background: rgba(16,185,129,0.08); color: #047857; }
  .pr-signal--fail { background: rgba(239,68,68,0.08);  color: #B91C1C; }
  .pr-signal-icon  { font-size: 8pt; font-weight: 800; flex-shrink: 0; }
  .pr-signal-label { font-size: 7.5pt; font-weight: 500; }

  /* Top critical callouts */
  .pr-top-issue { display: flex !important; align-items: center; gap: 6pt; padding: 3pt 0; font-size: 8pt; color: #444; border-bottom: 0.2pt solid #f5f5f5; }
  .pr-top-issue-dot { width: 5pt; height: 5pt; border-radius: 50%; background: #EF4444; flex-shrink: 0; }
  .pr-top-more { font-size: 7pt; color: #aaa; margin-top: 4pt; font-style: italic; }

  /* Insight data rows (inside panels) */
  .pr-irow { display: flex !important; justify-content: space-between; align-items: baseline; padding: 3pt 0; border-bottom: 0.25pt solid #f0f0f0; }
  .pr-ikey { font-size: 7.5pt; color: #555; }
  .pr-ival { font-size: 8pt; font-weight: 700; color: #111; max-width: 55%; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pr-iv--pass { color: #059669 !important; }
  .pr-iv--warn { color: #B45309 !important; }
  .pr-iv--fail { color: #B91C1C !important; }

  /* ── CHECKS GRID (3 columns) ─────────────────────────── */
  .pr-checks-heading {
    font-size: 8pt; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5pt;
    color: #333; margin-bottom: 5pt; padding-bottom: 4pt;
    border-bottom: 0.75pt solid #e5e7eb;
    display: flex !important; align-items: center; gap: 5pt;
  }
  .pr-checks-cols { display: grid !important; grid-template-columns: 1fr 1fr 1fr; gap: 0 12pt; }
  .pr-check-row   { display: flex !important; align-items: center; gap: 6pt; padding: 2.5pt 0; border-bottom: 0.3pt solid #f0f0f0; }
  .pr-check-dot   { width: 5.5pt; height: 5.5pt; border-radius: 50%; flex-shrink: 0; }
  .pr-check-name  { flex: 1; font-size: 8pt; color: #222; font-weight: 500; }
  .pr-check-status { font-size: 7.5pt; font-weight: 700; flex-shrink: 0; white-space: nowrap; }

  /* ── PAGE 2 HEADER ───────────────────────────────────── */
  .pr-break-before { page-break-before: always; break-before: always; }
  .pr-p2-header { padding-top: 22pt; margin-bottom: 6pt; }
  .pr-p2-title {
    font-size: 12pt; font-weight: 800; color: #111;
    display: flex !important; align-items: center; gap: 6pt; margin-bottom: 2pt;
  }
  .pr-p2-meta { display: flex !important; justify-content: space-between; font-size: 7pt; color: #777; }

  /* ── RECS INTRO + ALL-PASS ───────────────────────────── */
  .pr-recs-intro { font-size: 8pt; color: #555; margin: 0 0 8pt; line-height: 1.5; }
  .pr-all-pass   { font-size: 10pt; font-weight: 700; color: #10B981; padding: 16pt 0; text-align: center; }

  /* ── RECOMMENDATION BLOCKS ───────────────────────────── */
  .pr-recs-block { margin-bottom: 6pt; }
  .pr-recs-group {
    font-size: 7pt; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5pt;
    padding: 3.5pt 8pt; border-radius: 3pt; margin-bottom: 4pt;
    display: flex !important; align-items: center; gap: 5pt;
  }
  .pr-recs-group--fail { background: rgba(239,68,68,0.09);  color: #B91C1C; }
  .pr-recs-group--warn { background: rgba(245,158,11,0.09); color: #92400E; }

  .pr-rec {
    display: flex !important; gap: 8pt; align-items: flex-start;
    padding: 6pt 8pt; margin-bottom: 4pt; border-radius: 4pt;
    page-break-inside: avoid; break-inside: avoid;
  }
  .pr-rec--fail { background: rgba(239,68,68,0.03);  border: 0.5pt solid rgba(239,68,68,0.18);  border-left: 3pt solid #EF4444; }
  .pr-rec--warn { background: rgba(245,158,11,0.03); border: 0.5pt solid rgba(245,158,11,0.18); border-left: 3pt solid #F59E0B; }

  .pr-rec-num {
    width: 15pt; height: 15pt; border-radius: 50%; background: #eee;
    display: flex !important; align-items: center; justify-content: center;
    font-size: 6.5pt; font-weight: 800; color: #444; flex-shrink: 0; margin-top: 1pt;
  }
  .pr-rec-body    { flex: 1; }
  .pr-rec-row     { display: flex !important; align-items: baseline; gap: 6pt; margin-bottom: 2pt; }
  .pr-rec-title   { font-size: 8.5pt; font-weight: 700; color: #111; }
  .pr-rec-cat     { font-size: 6.5pt; color: #aaa; margin-left: auto; flex-shrink: 0; }
  .pr-rec-finding { font-size: 7.5pt; color: #666; margin: 0 0 3pt; font-style: italic; }
  .pr-rec-fix     { font-size: 7.5pt; color: #333; line-height: 1.5; white-space: pre-wrap; }
  .pr-rec-fix-label { font-weight: 700; color: #111; }

  /* ── CLOSING CTA ─────────────────────────────────────── */
  .pr-cta-closer {
    margin-top: 14pt; border-top: 1.5pt solid #4F46E5; padding-top: 10pt;
    text-align: center; page-break-inside: avoid; break-inside: avoid;
  }
  .pr-cta-logo     { height: 24pt; width: auto; display: block; margin: 0 auto 6pt; }
  .pr-cta-heading  { font-size: 10pt; font-weight: 800; color: #111; margin: 0 0 4pt; }
  .pr-cta-body     { font-size: 7.5pt; color: #555; max-width: 340pt; margin: 0 auto 7pt; line-height: 1.5; }
  .pr-cta-contacts { display: flex !important; justify-content: center; gap: 18pt; font-size: 7.5pt; font-weight: 600; color: #4F46E5; }
}

/* =============================================
   CHATBOT ADVISOR DRAWER & WIDGET
   ============================================= */
.rs-chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #091225 0%, #1e1b4b 60%, #4338ca 100%);
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rs-chat-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.55);
}
.rs-chat-fab-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(79, 70, 229, 0.45);
  animation: rsChatPulse 2.4s ease-out infinite;
}
@keyframes rsChatPulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

.rs-chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 19, 43, 0.45);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.rs-chat-backdrop-visible {
  opacity: 1;
  pointer-events: auto;
}

.rs-chat-action-card {
  margin-top: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rs-chat-action-card:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}
.rs-chat-action-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.rs-chat-action-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #dbeafe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.rs-chat-action-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.rs-chat-action-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: #1e3a8a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-chat-action-sub {
  font-size: 0.68rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rs-chat-action-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.rs-chat-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 580px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--default-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}
.rs-chat-drawer-open {
  transform: translateX(0);
}

.rs-chat-header {
  background: #0b132b;
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.rs-chat-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rs-chat-logo-box {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 158, 11, 0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  color: #f59e0b;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.rs-chat-header-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rs-chat-brand-title {
  font-family: var(--heading-font, inherit);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.rs-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: #34d399;
  font-weight: 500;
  margin-top: 2px;
}
.rs-chat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.rs-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-chat-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 0.18s, color 0.18s;
}
.rs-chat-btn-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.rs-chat-banner {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.rs-chat-banner-text {
  color: #475569;
  font-weight: 500;
}
.rs-chat-banner-link {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rs-chat-banner-link:hover {
  text-decoration: underline;
  color: #2563eb;
}

.rs-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fbfcfe;
}

.rs-chat-messages-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rs-chat-welcome-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rs-chat-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0b132b;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.rs-chat-bot-avatar.mini {
  width: 26px;
  height: 26px;
  font-size: 0.7rem;
}

.rs-chat-welcome-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 0.86rem;
  color: #1e293b;
  line-height: 1.55;
}

.rs-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.rs-chat-row.is-user {
  justify-content: flex-end;
}
.rs-chat-row.is-bot {
  justify-content: flex-start;
}

.rs-chat-bubble {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  word-break: break-word;
}
.bubble-user {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.bubble-bot {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rs-chat-para {
  margin: 0 0 8px;
}
.rs-chat-para:last-child {
  margin-bottom: 0;
}
.rs-chat-list {
  margin: 0 0 8px;
  padding-left: 18px;
}
.rs-chat-list:last-child {
  margin-bottom: 0;
}
.rs-chat-list li {
  margin-bottom: 4px;
}
.rs-chat-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
}

.bubble-bot.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
}
.bubble-bot.typing span {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: rsTyping 1.2s infinite ease-in-out;
}
.bubble-bot.typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.bubble-bot.typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes rsTyping {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.15); }
}

.rs-chat-topics-section {
  margin-top: 4px;
}
.rs-chat-topics-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.rs-chat-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rs-chat-topic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.rs-chat-topic-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  background: #f8fafc;
}
.rs-chat-topic-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rs-chat-topic-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.rs-chat-topic-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.rs-chat-topic-sub {
  font-size: 0.71rem;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
}
.rs-chat-topic-arrow {
  color: #cbd5e1;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.rs-chat-topic-card:hover .rs-chat-topic-arrow {
  color: #3b82f6;
}

.rs-chat-quick-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.rs-chat-chips-label {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}
.rs-chat-chips-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.rs-chat-chip-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: #334155;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.rs-chat-chip-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.rs-chat-footer {
  padding: 14px 18px 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.rs-chat-input-wrapper {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 4px 6px 4px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rs-chat-input-wrapper:focus-within {
  border-color: #93c5fd;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.rs-chat-textarea {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.84rem;
  color: #0f172a;
  outline: none;
  resize: none;
  max-height: 80px;
  font-family: inherit;
  line-height: 1.4;
  padding: 6px 0;
}
.rs-chat-textarea::placeholder {
  color: #94a3b8;
}
.rs-chat-send-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3b82f6;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
}
.rs-chat-send-btn:hover:not(:disabled) {
  background: #2563eb;
  transform: scale(1.05);
}
.rs-chat-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.rs-chat-footer-branding {
  text-align: center;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 8px;
}
.rs-chat-footer-branding .highlight {
  color: #334155;
  font-weight: 600;
}

@media (max-width: 640px) {
  .rs-chat-drawer {
    width: 100vw;
  }
  .rs-chat-backdrop {
    display: block;
  }
  .rs-chat-topics-grid {
    grid-template-columns: 1fr;
  }
  .rs-chat-fab {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   HOMEPAGE INTERACTIVE GROWTH ESTIMATOR & 4 GROWTH ENGINES (HYBRID THEME)
   ═══════════════════════════════════════════════════════════════════════ */

.rs-growth-estimator-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}
.rs-growth-estimator-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.rs-growth-estimator-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.rs-growth-card-wrap {
  background: #0f172a;
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25), 0 0 40px rgba(124, 58, 237, 0.12);
  color: #f8fafc;
  position: relative;
  z-index: 2;
}

.rs-estimator-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.rs-estimator-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 999px;
  color: #c4b5fd;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.rs-estimator-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.rs-estimator-title span {
  background: linear-gradient(135deg, #a78bfa 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rs-estimator-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
}

.rs-estimator-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* Left controls */
.rs-estimator-inputs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rs-input-group-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 10px;
}
.rs-input-val-badge {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 3px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Chips */
.rs-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.rs-chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.rs-chip-btn:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(167, 139, 250, 0.5);
  color: #ffffff;
}
.rs-chip-btn.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(6, 182, 212, 0.25));
  border-color: #a78bfa;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

/* Sliders */
.rs-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #334155;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.rs-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7c3aed;
  border: 3px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  transition: transform 0.15s, background 0.15s;
}
.rs-calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #9333ea;
}

/* Right Output Box */
.rs-estimator-outputs {
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1.5px solid rgba(167, 139, 250, 0.25);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 30px rgba(124, 58, 237, 0.08);
}

.rs-output-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.rs-output-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rs-output-metric-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rs-output-metric-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.rs-output-metric-sub {
  font-size: 0.78rem;
  color: #10b981;
  font-weight: 600;
}

.rs-output-highlight-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.35);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.rs-output-highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rs-output-highlight-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px;
}
.rs-output-highlight-text p {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin: 0;
}

.rs-estimator-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #06b6d4 100%);
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
  text-decoration: none;
}
.rs-estimator-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════
   THE 4 GROWTH ENGINES ARCHITECTURE SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.rs-growth-engines-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
}

.rs-engines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.rs-engine-card {
  background: #ffffff;
  border: 1.5px solid #ece8f8;
  border-radius: 22px;
  padding: 36px 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rs-engine-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s;
}
.rs-engine-card:hover {
  transform: translateY(-6px);
  border-color: #c4b5fd;
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.12);
}
.rs-engine-card:hover::before {
  opacity: 1;
}

.rs-engine-badge-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.rs-engine-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #7c3aed;
  background: #f3e8ff;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.rs-engine-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid #ddd6fe;
}

.rs-engine-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}
.rs-engine-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 22px;
}

.rs-engine-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rs-engine-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  font-weight: 600;
}
.rs-engine-feature-list li i {
  color: #10b981;
  font-size: 0.85rem;
}

.rs-engine-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #7c3aed;
  text-decoration: none;
  transition: gap 0.2s;
}
.rs-engine-link:hover {
  gap: 12px;
  color: #6d28d9;
}

/* ═══════════════════════════════════════════════════════════════════════
   PARTNER TRUST BADGES STRIP
   ═══════════════════════════════════════════════════════════════════ */

.rs-partner-badges-strip {
  padding: 30px 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.rs-partner-badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.rs-partner-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 700;
}
.rs-partner-badge-item i {
  font-size: 1.25rem;
  color: #7c3aed;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .rs-estimator-grid {
    grid-template-columns: 1fr;
  }
  .rs-engines-grid {
    grid-template-columns: 1fr;
  }
  .rs-growth-card-wrap {
    padding: 28px 20px;
  }
  .rs-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .rs-output-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   CALCULATOR SUITE SEGMENTED TAB NAV
   ═══════════════════════════════════════════════════════════════════ */
.rs-calc-tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  max-width: 1040px;
  margin: 0 auto 36px auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rs-calc-tab-nav::-webkit-scrollbar {
  display: none;
}

.rs-calc-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.rs-calc-tab-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.rs-calc-tab-btn.active {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
  border-color: transparent;
}
.rs-calc-tab-btn.active i {
  color: #ffffff !important;
}
.rs-calc-tab-btn i {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}
.rs-calc-tab-btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .rs-calc-tab-nav {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .rs-calc-tab-btn {
    justify-content: center;
    width: 100%;
  }
}
