/* ==========================================================================
   BOFFIN WEB TECHNOLOGY - PREMIUM ULTRA-MODERN STYLESHEET
   With Conversational Lead Enquiry Chatbot & Review Submission
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --primary-blue: #0062ff;
  --primary-hover: #0050d4;
  --primary-dark: #003da8;
  --primary-light: #eff6ff;
  --primary-border: #bfdbfe;
  
  --accent-cyan: #00d2ff;
  --accent-gradient: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
  --hero-gradient: radial-gradient(circle at 75% 30%, rgba(0, 110, 255, 0.28) 0%, rgba(3, 10, 28, 0.95) 60%, #010614 100%);
  
  --navy-dark: #020714;
  --navy-surface: #06132d;
  --navy-card-bg: rgba(255, 255, 255, 0.04);
  --navy-card-border: rgba(90, 160, 255, 0.2);
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  
  --bg-white: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-alt: #f1f5f9;
  
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  
  --shadow-xs: 0 2px 6px rgba(0, 20, 60, 0.03);
  --shadow-sm: 0 4px 14px rgba(0, 25, 70, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 35, 90, 0.08);
  --shadow-lg: 0 18px 38px rgba(0, 45, 120, 0.12);
  --shadow-glow: 0 8px 24px rgba(0, 98, 255, 0.35);
  
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 50px;
  
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
  color: inherit;
}

a:hover {
  color: var(--primary-blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-custom {
  max-width: 1260px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px;
  padding-right: 20px;
}

section[id] {
  scroll-margin-top: 90px;
}

/* --------------------------------------------------------------------------
   2.1 AOS (ANIMATE ON SCROLL) PERFORMANCE & SMOOTH TRANSITION TUNING
   -------------------------------------------------------------------------- */
[data-aos] {
  pointer-events: auto !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body[data-aos-easing="ease-out-cubic"] [data-aos],
[data-aos][data-aos][data-aos-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* --------------------------------------------------------------------------
   3. REFINED SECTION COMMON HEADERS
   -------------------------------------------------------------------------- */
.section-spacing {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: inline-block;
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-border);
}

.section-title {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: #09152b;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: -0.5px;
  margin-top: 0;
  margin-bottom: 0;
}

.section-title.with-underline::after {
  content: '';
  display: block;
  width: 48px;
  height: 3.5px;
  background: var(--accent-gradient);
  border-radius: 4px;
  margin: 12px auto 0;
}

.section-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 10px auto 0;
}

/* --------------------------------------------------------------------------
   3.1 MOUSE-AWARE DIRECTIONAL SPOTLIGHT / CURSOR HOVER ON SMALL CARDS ONLY
   -------------------------------------------------------------------------- */
.service-box.mouse-glow-card,
.project-card.mouse-glow-card,
.choose-card.mouse-glow-card,
.tech-item.mouse-glow-card {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.service-box.mouse-glow-card::after,
.project-card.mouse-glow-card::after,
.choose-card.mouse-glow-card::after,
.tech-item.mouse-glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 98, 255, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.service-box.mouse-glow-card:hover::after,
.project-card.mouse-glow-card:hover::after,
.tech-item.mouse-glow-card:hover::after {
  opacity: 1;
}

/* Why Choose Us Dark Theme Small Cards */
.choose-card.mouse-glow-card::after {
  background: radial-gradient(
    280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(56, 189, 248, 0.22),
    transparent 70%
  );
}

.choose-card.mouse-glow-card:hover::after {
  opacity: 1;
}

.service-box.mouse-glow-card > *,
.project-card.mouse-glow-card > *,
.choose-card.mouse-glow-card > *,
.tech-item.mouse-glow-card > * {
  position: relative;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   4. TOP HEADER STRIP (Solid Royal Blue Bar Matching Reference Image)
   -------------------------------------------------------------------------- */
.top-header-strip {
  background: #0042BF;
  color: #ffffff;
  padding: 8px 0;
  font-size: 15px;
  font-family: 'Roboto';
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1001;
}

.topbar-info-link {
  color: #ffffff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 15px;
  font-family: 'Roboto';
  transition: opacity 0.2s ease;
}

.topbar-info-link i {
  font-size: 15px;
  color: #ffffff;
}

.topbar-info-link:hover {
  opacity: 0.85;
}

.topbar-follow-label {
  font-weight: 600;
  font-size: 15px;
  font-family: 'Roboto';
  color: #ffffff;
  margin-right: 6px;
}

.topbar-social-link {
  color: #ffffff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 0 3px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.topbar-social-link:hover {
  transform: translateY(-1px) scale(1.15);
  opacity: 0.9;
}

.topbar-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin: 0 3px;
  user-select: none;
}

.topbar-pay-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Roboto';
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  transition: opacity 0.2s ease;
}

.topbar-pay-link i {
  font-size: 16px;
}

.topbar-pay-link:hover {
  opacity: 0.85;
  text-decoration: underline !important;
}

/* --------------------------------------------------------------------------
   4.00 MOBILE TOP HEADER STRIP (Solid Royal Blue Phone Bar)
   -------------------------------------------------------------------------- */
.mobile-top-header-strip {
  background: #0042BF;
  color: #ffffff;
  padding: 6px 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1001;
}

.mobile-top-start-icons {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mobile-top-icon-link {
  color: #ffffff !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-top-icon-link:hover {
  opacity: 0.85;
}

.mobile-top-icon-link i {
  font-size: 12px;
  color: #ffffff;
}

.mobile-top-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  user-select: none;
}

.mobile-top-pay-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 11.5px;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 2.5px 9px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.mobile-top-pay-link i {
  font-size: 13px;
}

.mobile-top-pay-link:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff !important;
}

@media (max-width: 380px) {
  .mobile-top-phone-num {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   4.01 GLOBAL BREADCRUMB STRIP (Solid Royal Blue Bar Matching Top Header Strip)
   -------------------------------------------------------------------------- */
.site-breadcrumb-strip {
  background: #0042BF !important;
  background-color: #0042BF !important;
  color: #ffffff;
  padding: 6.5px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 99;
}

.site-breadcrumb-strip .breadcrumb {
  margin: 0;
  padding: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  list-style: none;
}

.site-breadcrumb-strip .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
}

.site-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
  content: "\F285";
  font-family: "bootstrap-icons" !important;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  padding: 0 7px;
  float: none;
}

.site-breadcrumb-strip .breadcrumb-link {
  color: #e0edff !important;
  text-decoration: none !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.site-breadcrumb-strip .breadcrumb-link:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.site-breadcrumb-strip .breadcrumb-item.active {
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.breadcrumb-badge-tag {
  font-size: 11px;
  font-weight: 700;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 2px 10px;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   4.1 MAIN HEADER & NAVBAR (Glassmorphism & Fixed Alignment)
   -------------------------------------------------------------------------- */
.topbar {
  height: 76px;
  min-height: 76px;
  background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 20, 60, 0.07);
  border-bottom: 1px solid #e2e8f0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0;
}

.topbar.is-sticky {
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 25, 70, 0.12);
  border-bottom: 1px solid #cbd5e1;
}

.brand-logo-img {
  height: 66px;
  max-height: 66px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

/* Mobile Header Quick Actions (Phone & WhatsApp on Left Side in Phone View) */
.mobile-hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.mobile-hdr-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-hdr-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.mobile-hdr-whatsapp:hover,
.mobile-hdr-whatsapp:focus {
  background: #20ba5a;
  color: #ffffff !important;
  transform: scale(1.08);
}

.mobile-hdr-phone {
  background: #0052ff;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.35);
}
.mobile-hdr-phone:hover,
.mobile-hdr-phone:focus {
  background: #0040cc;
  color: #ffffff !important;
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .mobile-hdr-actions {
    gap: 6px;
  }
  .mobile-hdr-btn {
    width: 33px;
    height: 33px;
    font-size: 14px;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 20px;
}

.navbar-nav .nav-link {
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 8px 10px !important;
  border-radius: 6px;
  position: relative;
  transition: var(--transition-fast);
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  background: transparent !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0062ff !important;
  background: transparent !important;
}

.navbar-nav .nav-link i.bi-chevron-down {
  font-size: 11px;
  margin-left: 4px;
  color: #475569;
  transition: transform 0.2s ease, color 0.2s ease;
}

.navbar-nav .nav-link:hover i.bi-chevron-down,
.navbar-nav .nav-link.active i.bi-chevron-down {
  color: #0062ff;
}

.nav-item.dropdown:hover .nav-link i.bi-chevron-down {
  transform: rotate(180deg);
}

.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

.dropdown-mega {
  position: static !important;
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border: none;
  border-top: 3px solid #0062ff !important;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 50px rgba(0, 20, 60, 0.14);
  margin-top: 0;
  padding: 16px 0 24px;
  max-height: calc(100vh - 85px);
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
}

.mega-menu-dropdown.force-closed {
  display: none !important;
}

/* Mega Menu Top Header Bar & Close Button */
.mega-menu-top-bar {
  padding-left: 4px;
  padding-right: 4px;
}

.btn-mega-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: #475569;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-mega-close:hover,
.btn-mega-close:focus {
  background: #fee2e2;
  color: #dc2626;
  border-color: #f87171;
  transform: scale(1.05);
}

.btn-mega-close i {
  font-size: 11px;
}

/* Cursor Hover & Show State on Desktop (>= 992px) */
@media (min-width: 992px) {
  .dropdown-mega:hover .mega-menu-dropdown:not(.force-closed),
  .dropdown-mega.show .mega-menu-dropdown:not(.force-closed),
  .mega-menu-dropdown.show:not(.force-closed) {
    display: block !important;
    animation: megaFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-item.dropdown:not(.dropdown-mega):hover > .dropdown-menu:not(.force-closed),
  .nav-item.dropdown:not(.dropdown-mega).show > .dropdown-menu:not(.force-closed) {
    display: block !important;
    animation: megaFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Standard Single Dropdown (e.g. About) */
.nav-item.dropdown:not(.dropdown-mega) {
  position: relative;
}

.nav-item.dropdown:not(.dropdown-mega) > .dropdown-menu {
  border: none;
  border-top: 3px solid #0062ff !important;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 35px rgba(0, 20, 60, 0.12);
  padding: 8px 0;
  min-width: 205px;
  margin-top: 0;
  display: none;
}

.nav-item.dropdown:not(.dropdown-mega) > .dropdown-menu.force-closed {
  display: none !important;
}

.nav-item.dropdown:not(.dropdown-mega) .dropdown-item {
  font-family: 'Roboto';
  font-size: 14px;
  font-weight: 400;
  color: #334155;
  padding: 8px 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item.dropdown:not(.dropdown-mega) .dropdown-item:hover {
  background: #f0f7ff;
  color: #0062ff;
  transform: translateX(4px);
  font-weight: 400;
}

.mega-menu-col {
  padding: 0 10px;
  border-right: 1px solid #f1f5f9;
}
.mega-menu-col:last-child {
  border-right: none;
}

.mega-menu-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid #f1f5f9;
}

.mega-cat-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.bg-blue-subtle { background: #eff6ff; }
.bg-cyan-subtle { background: #ecfeff; }
.bg-purple-subtle { background: #faf5ff; }
.bg-success-subtle { background: #f0fdf4; }
.bg-warning-subtle { background: #fefce8; }
.bg-danger-subtle { background: #fef2f2; }
.text-purple { color: #9333ea !important; }

.mega-cat-title {
  font-family: 'Roboto';
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.25;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 3px;
}

.mega-menu-list li a {
  font-family: 'Roboto';
  font-size: 13px;
  font-weight: 400;
  color: #475569;
  text-decoration: none;
  display: block;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.mega-menu-list li a:hover {
  color: #0062ff;
  background: #f0f7ff;
  transform: translateX(3px);
  font-weight: 400;
}

/* Mobile Drawer Services Accordion Styles */
.drawer-services-sublist {
  background: #f8fafc;
  border-radius: 10px;
  margin: 4px 6px 10px;
  padding: 8px;
  border: 1px solid #e2e8f0;
}

.drawer-subcat-group {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 6px;
}

.drawer-subcat-toggle {
  text-decoration: none;
  box-shadow: none !important;
  background: #ffffff;
  border: none;
}
.drawer-subcat-toggle:focus,
.drawer-subcat-toggle:active {
  background: #f1f5f9;
}

.drawer-service-link {
  font-size: 11.5px;
  color: #475569;
  text-decoration: none;
  display: block;
  padding: 5px 10px;
  border-bottom: 1px solid #f8fafc;
  transition: color 0.15s ease;
}

.drawer-service-link:hover {
  color: #0062ff;
  font-weight: 600;
  background: #f0f7ff;
}

.transition-chevron {
  transition: transform 0.25s ease;
}
.app-drawer-item[aria-expanded="true"] .transition-chevron {
  transform: rotate(180deg);
}

.btn-renewal-top {
  background: #eff6ff;
  color: var(--primary-blue) !important;
  border: 1.5px solid #bfdbfe;
  font-size: 12.5px;
  font-weight: 700;
  padding: 0 16px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-renewal-top:hover {
  background: var(--primary-blue);
  color: #ffffff !important;
  border-color: var(--primary-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.3);
}

/* ==========================================================================
   UNIVERSAL SIGNATURE BRAND BUTTON (Exact Match to Navbar 'Get a Free Quote')
   Applied to all main CTA buttons across the website without touching card buttons
   ========================================================================== */
.btn-quote,
.btn-primary,
.btn-brand,
.btn-primary-brand,
.btn-main,
.btn-theme,
.btn-more-about,
.btn-view-all,
.btn-explore-all-projects,
.btn-cyber-primary {
  background: #0052ff !important;
  border-color: #0052ff !important;
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  padding: 0 22px !important;
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.btn-quote:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-brand:hover,
.btn-primary-brand:hover,
.btn-main:hover,
.btn-theme:hover,
.btn-more-about:hover,
.btn-view-all:hover,
.btn-explore-all-projects:hover,
.btn-cyber-primary:hover {
  background: #003ec7 !important;
  border-color: #003ec7 !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 8px 22px rgba(0, 82, 255, 0.55) !important;
  color: #ffffff !important;
}

.btn-quote:active,
.btn-primary:active,
.btn-brand:active,
.btn-more-about:active,
.btn-view-all:active,
.btn-explore-all-projects:active,
.btn-cyber-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 10px rgba(0, 65, 186, 0.4) !important;
}

/* --------------------------------------------------------------------------
   5. HERO ECOMMERCE MODERN SLIDER (100% 1-to-1 Match with User Uploaded Mockup)
   -------------------------------------------------------------------------- */
.hero-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* Bootstrap 5 Native Smooth Horizontal Slide Physics */
#heroCarousel .carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#heroCarousel .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#heroCarousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.9s ease-in-out !important;
  transform: none !important;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 2;
  opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s ease-in-out !important;
}

#heroCarousel .carousel-item.active,
#heroCarousel .carousel-item-next,
#heroCarousel .carousel-item-prev {
  display: block !important;
}

/* ==========================================================================
   HERO SLIDER BACKGROUND CANVAS (Clean Ultra-Modern Ambient Studio with Image)
   ========================================================================== */
.hero-ecom-slide-wrap {
  position: relative;
  min-height: 540px;
  background-color: #ffffff;
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.84) 45%, rgba(235, 245, 255, 0.76) 100%),
    url('../img/slider/hero-bg-professional.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 52px 0 66px;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

/* Glowing Ambient Aura Orbs */
.hero-ecom-slide-wrap::after {
  content: '';
  position: absolute;
  top: -60px;
  right: 8%;
  width: 560px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, rgba(56, 189, 248, 0.08) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: floatBackGlow 8s ease-in-out infinite alternate;
}

@keyframes floatBackGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.12); }
}

/* Slide Specific Dynamic Themed Light Highlights */
.hero-ecom-slide-wrap.hero-bg-ecom {
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(239, 246, 255, 0.72) 100%),
    url('../img/slider/hero-bg-professional.jpg');
}
.hero-ecom-slide-wrap.hero-bg-ecom::after {
  background: radial-gradient(circle, rgba(0, 82, 255, 0.15) 0%, rgba(56, 189, 248, 0.09) 45%, transparent 75%);
}

.hero-ecom-slide-wrap.hero-bg-erp {
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(240, 249, 255, 0.72) 100%),
    url('../img/slider/hero-bg-professional.jpg');
}
.hero-ecom-slide-wrap.hero-bg-erp::after {
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(99, 102, 241, 0.09) 45%, transparent 75%);
}

.hero-ecom-slide-wrap.hero-bg-app {
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(250, 245, 255, 0.72) 100%),
    url('../img/slider/hero-bg-professional.jpg');
}
.hero-ecom-slide-wrap.hero-bg-app::after {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.09) 45%, transparent 75%);
}

.hero-ecom-slide-wrap.hero-bg-seo {
  background-image: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.82) 50%, rgba(240, 253, 244, 0.72) 100%),
    url('../img/slider/hero-bg-professional.jpg');
}
.hero-ecom-slide-wrap.hero-bg-seo::after {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.09) 45%, transparent 75%);
}

.hero-ecom-left {
  position: relative;
  z-index: 5;
}

.hero-ecom-eyebrow {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 800;
  color: #0052ff;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.hero-ecom-heading {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  color: #0b132a;
  line-height: 1.06;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}

.hero-ecom-heading .hero-ecom-blue {
  color: #0052ff;
  font-weight: 900;
}

.hero-ecom-heading .hero-ecom-script {
  font-family: 'Caveat', 'Dancing Script', cursive;
  color: #0052ff;
  font-weight: 700;
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-3deg);
  margin-top: 2px;
  text-shadow: 0 4px 12px rgba(0, 82, 255, 0.2);
}

.hero-ecom-desc {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  max-width: 490px;
  margin-bottom: 28px;
  font-weight: 500;
}

.btn-hero-ecom-cta {
  background: #0052ff;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 82, 255, 0.38);
  border: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 0;
}

.btn-hero-ecom-cta:hover {
  background: #0041cc;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 82, 255, 0.55);
  color: #ffffff !important;
}

/* 3 Feature Badges Bottom Row */
.hero-ecom-features {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-ecom-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-ecom-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #0052ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.hero-ecom-feat-text {
  display: flex;
  flex-direction: column;
}

.hero-ecom-feat-text strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
}

.hero-ecom-feat-text span {
  font-size: 11px;
  color: #64748b;
  line-height: 1.2;
}

/* Right Side Custom 3D Product Stage & Floating Interactive Widgets with Hover Animation */
.hero-ecom-right {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-stage,
.hero-custom-3d-stage {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  perspective: 1100px;
}

/* Ambient Radial Glow Lighting */
.hero-product-aura-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.2) 0%, rgba(56, 189, 248, 0.1) 45%, rgba(139, 92, 246, 0.05) 65%, transparent 75%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulseAura 4s ease-in-out infinite alternate;
}

@keyframes pulseAura {
  0% { transform: scale(0.92) translate(-5px, -5px); opacity: 0.75; }
  100% { transform: scale(1.12) translate(5px, 5px); opacity: 1; }
}

.hero-product-stage:hover .hero-product-aura-glow,
.carousel-item:hover .hero-product-aura-glow {
  transform: scale(1.25);
  background: radial-gradient(circle, rgba(0, 82, 255, 0.32) 0%, rgba(56, 189, 248, 0.18) 50%, rgba(124, 58, 237, 0.15) 70%, transparent 80%);
  filter: blur(35px);
}

/* 3D Holographic Ground Reflection Base */
.hero-stage-glass-disc {
  position: absolute;
  bottom: 12px;
  width: 78%;
  height: 52px;
  background: radial-gradient(ellipse at center, rgba(0, 82, 255, 0.22) 0%, rgba(56, 189, 248, 0.12) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 2;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-product-stage:hover .hero-stage-glass-disc {
  transform: scale(1.18);
  background: radial-gradient(ellipse at center, rgba(0, 82, 255, 0.38) 0%, rgba(139, 92, 246, 0.2) 55%, transparent 75%);
  filter: blur(16px);
}

/* 3D Product Centerpiece with Signature Hover Animation */
.hero-product-wrap,
.hero-laptop-wrap {
  position: relative;
  width: 90%;
  max-width: 520px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.hero-product-main-img,
.hero-laptop-img {
  width: 100%;
  max-height: 395px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 30, 90, 0.14)) drop-shadow(0 30px 45px rgba(0, 82, 255, 0.18));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center bottom;
}

/* The Signature 3D Hover Elevation */
.hero-product-stage:hover .hero-product-main-img,
.carousel-item:hover .hero-product-main-img,
.hero-custom-3d-stage:hover .hero-laptop-img {
  transform: translateY(-16px) scale(1.05) perspective(1000px) rotateY(-3.5deg) rotateX(2.5deg);
  filter: drop-shadow(0 25px 35px rgba(0, 30, 90, 0.2)) drop-shadow(0 45px 65px rgba(0, 82, 255, 0.35));
}

/* Floating Interactive Tech Tag (Top Left) */
.floating-product-tag,
.floating-badge-cart {
  position: absolute;
  top: 40px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(0, 82, 255, 0.22);
  border-radius: 30px;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0052ff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Roboto';
  box-shadow: 0 10px 25px rgba(0, 40, 120, 0.12);
  backdrop-filter: blur(12px);
  z-index: 6;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatOrb 4s ease-in-out infinite alternate;
}

.hero-product-stage:hover .floating-product-tag,
.carousel-item:hover .floating-product-tag {
  transform: translateY(-8px) scale(1.08);
  border-color: #0052ff;
  box-shadow: 0 16px 35px rgba(0, 82, 255, 0.3);
  background: #0052ff;
  color: #ffffff;
}

/* Floating Feature Pill (Top Right) */
.floating-top-stat {
  position: absolute;
  top: 35px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  border-radius: 30px;
  padding: 6px 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0f172a;
  font-size: 12.5px;
  font-weight: 700;
  font-family: 'Roboto';
  box-shadow: 0 12px 28px rgba(0, 20, 60, 0.12);
  backdrop-filter: blur(12px);
  z-index: 6;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatStatRight 4.2s ease-in-out infinite alternate;
}

.hero-product-stage:hover .floating-top-stat,
.carousel-item:hover .floating-top-stat {
  transform: translateY(-7px) scale(1.06);
  border-color: #0052ff;
  box-shadow: 0 16px 35px rgba(0, 82, 255, 0.22);
}

@keyframes floatStatRight {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

@keyframes floatOrb {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

/* Floating HTML/CSS "Sales Growth +84%" Widget (Bottom Left) */
.floating-growth-card {
  position: absolute;
  bottom: 50px;
  left: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 82, 255, 0.08);
  backdrop-filter: blur(12px);
  z-index: 7;
  display: flex;
  flex-direction: column;
  min-width: 145px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatCard 3.5s ease-in-out infinite alternate;
}

.hero-product-stage:hover .floating-growth-card,
.carousel-item:hover .floating-growth-card {
  transform: translateY(-8px) scale(1.06);
  border-color: #0052ff;
  box-shadow: 0 20px 40px rgba(0, 82, 255, 0.22);
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.growth-card-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 2px;
}

.growth-card-val {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 6px;
}

.growth-chart-wrap svg {
  display: block;
}

/* Pulse Dot & Badge */
.hero-pulse-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0052ff;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.7);
  animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(0, 82, 255, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 82, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 82, 255, 0); }
}

/* ==========================================================================
   CAROUSEL SLIDE DIRECTIONAL SPLIT ANIMATIONS (Slow & Ultra-Smooth)
   - Left side: Badge, Heading, Desc, CTA enter slowly and gracefully from the Left
   - Right side: 3D Product Stage & Floating widgets enter gently from the Right
   ========================================================================== */
@keyframes heroSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-35px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroPopTag {
  0% {
    opacity: 0;
    transform: scale(0.75) translateY(14px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Staggered Smooth Left Column Text Animations on Active and Incoming Slides */
#heroCarousel .carousel-item.active .hero-ecom-eyebrow-badge,
#heroCarousel .carousel-item-next.carousel-item-start .hero-ecom-eyebrow-badge,
#heroCarousel .carousel-item-prev.carousel-item-end .hero-ecom-eyebrow-badge {
  animation: heroSlideInLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

#heroCarousel .carousel-item.active .hero-ecom-heading,
#heroCarousel .carousel-item-next.carousel-item-start .hero-ecom-heading,
#heroCarousel .carousel-item-prev.carousel-item-end .hero-ecom-heading {
  animation: heroSlideInLeft 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

#heroCarousel .carousel-item.active .hero-ecom-desc,
#heroCarousel .carousel-item-next.carousel-item-start .hero-ecom-desc,
#heroCarousel .carousel-item-prev.carousel-item-end .hero-ecom-desc {
  animation: heroSlideInLeft 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

#heroCarousel .carousel-item.active .btn-hero-ecom-cta,
#heroCarousel .carousel-item-next.carousel-item-start .btn-hero-ecom-cta,
#heroCarousel .carousel-item-prev.carousel-item-end .btn-hero-ecom-cta {
  animation: heroSlideInLeft 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* Staggered Smooth Right Column Animations on Active and Incoming Slides */
#heroCarousel .carousel-item.active .hero-product-stage,
#heroCarousel .carousel-item-next.carousel-item-start .hero-product-stage,
#heroCarousel .carousel-item-prev.carousel-item-end .hero-product-stage,
#heroCarousel .carousel-item.active .hero-custom-3d-stage,
#heroCarousel .carousel-item-next.carousel-item-start .hero-custom-3d-stage,
#heroCarousel .carousel-item-prev.carousel-item-end .hero-custom-3d-stage {
  animation: heroSlideInRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

#heroCarousel .carousel-item.active .floating-product-tag,
#heroCarousel .carousel-item-next.carousel-item-start .floating-product-tag,
#heroCarousel .carousel-item-prev.carousel-item-end .floating-product-tag {
  animation: heroPopTag 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both, floatOrb 4s ease-in-out infinite alternate 1.7s;
}

#heroCarousel .carousel-item.active .floating-top-stat,
#heroCarousel .carousel-item-next.carousel-item-start .floating-top-stat,
#heroCarousel .carousel-item-prev.carousel-item-end .floating-top-stat {
  animation: heroPopTag 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both, floatStatRight 4.2s ease-in-out infinite alternate 1.85s;
}

#heroCarousel .carousel-item.active .floating-growth-card,
#heroCarousel .carousel-item-next.carousel-item-start .floating-growth-card,
#heroCarousel .carousel-item-prev.carousel-item-end .floating-growth-card {
  animation: heroPopTag 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both, floatCard 3.5s ease-in-out infinite alternate 2.0s;
}

.hero-ecom-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 800;
  color: #0052ff;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Nav Arrows matching the screenshot */
.hero-ecom-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #0052ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-ecom-nav-arrow:hover {
  background: #0052ff;
  color: #ffffff;
  border-color: #0052ff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.35);
}

.hero-ecom-nav-arrow.prev { left: 24px; }
.hero-ecom-nav-arrow.next { right: 24px; }

/* Pagination Dots Center Aligned */
.hero-ecom-indicators,
#heroCarousel .carousel-indicators.hero-ecom-indicators {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  padding: 0;
  width: fit-content;
}

.hero-ecom-indicators button,
#heroCarousel .carousel-indicators.hero-ecom-indicators button {
  width: 8px;
  height: 6px;
  border-radius: 6px;
  background-color: #cbd5e1;
  border: none;
  padding: 0;
  margin: 0 4px;
  opacity: 0.7;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: content-box;
  text-indent: -999px;
}

.hero-ecom-indicators button:hover {
  opacity: 1;
}

.hero-ecom-indicators button.active,
#heroCarousel .carousel-indicators.hero-ecom-indicators button.active {
  width: 26px;
  background-color: #0052ff;
  opacity: 1;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 82, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
  .hero-ecom-slide-wrap {
    padding: 30px 0 40px;
    min-height: auto;
  }
  .hero-ecom-heading {
    font-size: 30px;
  }
  .hero-ecom-desc {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .btn-hero-ecom-cta {
    font-size: 13px;
    padding: 10px 22px;
    margin-bottom: 20px;
  }
  .hero-ecom-features {
    gap: 12px;
    padding-top: 14px;
  }
  .hero-ecom-feature-item {
    gap: 8px;
  }
  .hero-ecom-feat-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .hero-ecom-feat-text strong {
    font-size: 11.5px;
  }
  .hero-ecom-feat-text span {
    font-size: 10px;
  }
  .hero-ecom-art-wrap {
    margin-top: 20px;
    max-width: 100%;
  }
  .hero-ecom-nav-arrow {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   5.2 MOBILE CYBER HERO SLIDER (Side-by-Side "Samne-Samne" Layout on Phones)
   -------------------------------------------------------------------------- */
/* ==========================================================================
   APP-STYLE MOBILE HERO PROMOTIONAL BANNER (Exact Match to User Reference Mockup)
   ========================================================================== */
.mobile-cyber-hero-section {
  background: #f8fafc;
  padding: 10px 12px 14px;
  position: relative;
}

.mobile-app-banner-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 20, 60, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.mobile-app-banner-slide {
  height: 155px;
  padding: 14px 16px 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  overflow: hidden;
  text-decoration: none !important;
}

/* Floor shelf shadow overlay so the image naturally grounds inside the banner */
.mobile-app-banner-slide::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 480px) {
  .mobile-app-banner-slide {
    height: 170px;
    padding: 16px 20px 16px;
  }
}

/* Background Gradients */
.slide-bg-wine {
  background: linear-gradient(135deg, #4a1022 0%, #250611 55%, #120207 100%);
}

.slide-bg-navy {
  background: linear-gradient(135deg, #071e54 0%, #030c26 55%, #010410 100%);
}

.slide-bg-purple {
  background: linear-gradient(135deg, #2b0b4e 0%, #120324 55%, #080112 100%);
}

.slide-bg-emerald {
  background: linear-gradient(135deg, #052d1f 0%, #02140d 55%, #010a06 100%);
}

/* Top-Right Discount Badge (Exactly like 'UPTO 80% OFF' in screenshot) */
.app-banner-discount-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 3px 7px;
  text-align: center;
  backdrop-filter: blur(8px);
  line-height: 1;
  z-index: 5;
}

.app-banner-discount-badge .badge-upto {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

.app-banner-discount-badge .badge-val {
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}

.app-banner-discount-badge .badge-off {
  font-size: 7.5px;
  font-weight: 800;
  color: #fbbf24;
  display: block;
}

/* Left Content Column */
.app-banner-left-wrap {
  position: relative;
  z-index: 4;
  max-width: 58%;
}

.app-banner-left-wrap.app-banner-full-width {
  max-width: calc(100% - 55px);
}

.app-banner-brand-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}

.app-banner-brand-row i {
  color: #38bdf8;
  font-size: 10.5px;
}

.app-banner-pay-only {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  margin-bottom: 2px;
}

.app-banner-price-lead {
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

@media (min-width: 480px) {
  .app-banner-price-lead {
    font-size: 30px;
  }
}

.app-banner-price-lead .price-emi-sub {
  font-size: 9.5px;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0px;
}

/* Pill CTA Button (Like "Shop on 0% EMI" in screenshot) */
.app-banner-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff !important;
  text-decoration: none !important;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

@media (min-width: 480px) {
  .app-banner-pill-btn {
    font-size: 11.5px;
    padding: 6px 15px;
  }
}

.app-banner-pill-btn,
.app-banner-pill-btn.btn-orange-pill,
.app-banner-pill-btn.btn-blue-pill,
.app-banner-pill-btn.btn-purple-pill,
.app-banner-pill-btn.btn-green-pill {
  background: #0052ff !important;
}

/* Right Stage Graphic - Seamless Grounded Floor Placement */
.app-banner-right-graphic {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 48%;
  max-width: 175px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 3;
  pointer-events: none;
}

.app-banner-right-graphic::before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (min-width: 480px) {
  .app-banner-right-graphic {
    max-width: 200px;
  }
}

.app-banner-img {
  max-width: 100%;
  max-height: 142px;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
  transform: translateY(2px);
}

/* Bottom Left App-Style Dots Indicator (Exact match: '— · · ·') */
.app-banner-dots-nav,
#mobileAppBannerCarousel .carousel-indicators.app-banner-dots-nav {
  position: absolute !important;
  bottom: 8px !important;
  left: 16px !important;
  right: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  z-index: 30 !important;
  pointer-events: auto !important;
  list-style: none !important;
}

.app-banner-dots-nav .banner-dot,
#mobileAppBannerCarousel .carousel-indicators.app-banner-dots-nav button.banner-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.45) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  opacity: 1 !important;
  text-indent: 0 !important;
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
}

.app-banner-dots-nav .banner-dot.active,
#mobileAppBannerCarousel .carousel-indicators.app-banner-dots-nav button.banner-dot.active {
  width: 20px !important;
  height: 7px !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9) !important;
}

/* Bottom Stats Capsule */
.mobile-hero-stats-strip {
  background: #ffffff;
  border: 1.5px solid #edf2f7;
  border-radius: 12px;
  padding: 8px 4px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 10px;
  box-shadow: 0 3px 10px rgba(0, 20, 60, 0.04);
}

.mobile-stat-col {
  text-align: center;
  padding: 0 2px;
  position: relative;
}

.mobile-stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.mobile-stat-icon {
  font-size: 12px;
  color: #0052ff;
  margin-bottom: 2px;
  display: block;
}

.mobile-stat-num {
  font-size: 11px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  display: block;
}

.mobile-stat-lbl {
  font-size: 7px;
  font-weight: 600;
  color: #64748b;
  line-height: 1.1;
  display: block;
}

@media (min-width: 480px) {
  .mobile-stat-icon { font-size: 14px; }
  .mobile-stat-num { font-size: 13px; }
  .mobile-stat-lbl { font-size: 8.5px; }
}

.mobile-stat-lbl {
  font-size: 7.5px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.1;
  display: block;
}

/* Bottom 4 Dots Carousel Indicators */
.mobile-hero-dots-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.mobile-hero-dots-wrap .m-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition: all 0.25s ease;
}

.mobile-hero-dots-wrap .m-dot.active {
  width: 20px;
  border-radius: 10px;
  background: #38bdf8;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

/* --------------------------------------------------------------------------
   6. OUR SERVICES SECTION (Dark Navy Background Matching Footer)
   -------------------------------------------------------------------------- */
.services-section-wrapper {
  background-color: #030a1c;
  position: relative;
  overflow: hidden;
  padding: 65px 0 70px;
}

.services-section-wrapper .section-eyebrow {
  background: rgba(0, 98, 255, 0.22);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.28);
  font-weight: 800;
  letter-spacing: 1.2px;
}

.services-section-wrapper .section-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.services-section-wrapper .section-subtitle {
  color: #cbd5e1;
}

/* --------------------------------------------------------------------------
   CYBER 3D SERVICE CARDS (100% Exact 1-to-1 Match with Mockup Screenshot media_1787221678018.png)
   -------------------------------------------------------------------------- */
.cyber-service-card {
  background: linear-gradient(180deg, #05143a 0%, #02081c 100%);
  border: 1.5px solid rgba(0, 102, 255, 0.4);
  border-radius: 18px;
  padding: 16px 16px 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65), 0 0 16px rgba(0, 102, 255, 0.12);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
}

.cyber-service-card:hover {
  transform: translateY(-8px);
  border-color: #0075ff;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85), 0 0 32px rgba(0, 102, 255, 0.45);
  background: linear-gradient(180deg, #091f4d 0%, #030c24 100%);
}

.cyber-service-thumb-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.cyber-service-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  transition: transform 0.4s ease;
  display: block;
}

.cyber-service-card:hover .cyber-service-thumb-img {
  transform: scale(1.05);
}

.cyber-service-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #071e4d;
  border: 1.5px solid #0055ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 15px;
  margin-bottom: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.3);
}

.cyber-service-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  transition: color 0.2s ease;
}

.cyber-service-card:hover .cyber-service-title {
  color: #38bdf8;
}

.cyber-service-desc {
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-cyber-readmore {
  background: #0052ff;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.45);
  align-self: flex-start;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}

.btn-cyber-readmore:hover {
  background: #0044cc;
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.65);
  color: #ffffff !important;
}

/* Mobile Responsiveness for 3D Cyber Cards (Compact & Unique App-Style Layout on Phones) */
@media (max-width: 767.98px) {
  .cyber-service-card {
    padding: 12px 10px 12px !important;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 102, 255, 0.45);
    height: 100% !important;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
  }
  .cyber-service-thumb-wrap {
    width: 100%;
    height: 65px !important;
    max-height: 65px !important;
    aspect-ratio: auto;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(0, 50, 150, 0.12);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cyber-service-thumb-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
  }
  .cyber-service-icon-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    font-size: 10.5px;
    border-radius: 6px;
    margin-bottom: 0;
    background: rgba(7, 30, 77, 0.92);
    border: 1px solid #38bdf8;
    color: #38bdf8;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.45);
    z-index: 2;
  }
  .cyber-service-title {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: -0.2px;
  }
  .cyber-service-title br {
    display: inline;
  }
  .cyber-service-desc {
    font-size: 10.5px !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #cbd5e1;
  }
  .btn-cyber-readmore {
    font-size: 10.5px !important;
    font-weight: 700;
    padding: 5px 10px !important;
    border-radius: 8px;
    gap: 4px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(0, 82, 255, 0.35);
  }
  .btn-cyber-readmore i {
    font-size: 9px;
  }
}

.btn-view-all {
  border: 1px solid #0052ff;
  color: #ffffff !important;
  background-color: #0052ff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 82, 255, 0.35);
}

.btn-view-all:hover {
  background-color: #003ec7;
  color: #ffffff !important;
  border-color: #003ec7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.5);
}

/* --------------------------------------------------------------------------
   7. ABOUT US SECTION & STATS BAR
   -------------------------------------------------------------------------- */
.about-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.about-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
}

.about-heading {
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.about-heading span {
  color: var(--primary-blue);
}

.about-text {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 22px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  border: 1px solid #edf2f7;
}

.check-item i {
  color: var(--primary-blue);
  font-size: 15px;
  flex-shrink: 0;
}

.btn-more-about {
  background: var(--primary-blue);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.35);
  margin-top: 14px;
}

.btn-more-about:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.45);
}

.about-graphic-container {
  position: relative;
  min-height: 290px;
}

.office-mockup-wrapper {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: 120px 0 0 120px;
  overflow: hidden;
  box-shadow: -12px 18px 40px rgba(0, 20, 60, 0.16);
  background-color: #071228;
}

.office-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats-bar-container {
  position: absolute;
  bottom: 0;
  left: -35px;
  right: 15px;
  z-index: 10;
}

.stats-bar {
  background: linear-gradient(135deg, #94a3b8 0%, #94a3b8 48%, #94a3b8 100%);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: 0 14px 35px rgba(0, 70, 200, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 24px;
  color: #0062ff;
  opacity: 1;
  background: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.stat-number {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 3px;
  color: #ffffff;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #e0f2fe;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. OUR PORTFOLIO SECTION (IT Agency Holographic Showcase Background)
   -------------------------------------------------------------------------- */
.portfolio-section {
  background: linear-gradient(180deg, rgba(4, 11, 30, 0.76) 0%, rgba(8, 22, 58, 0.82) 50%, rgba(3, 8, 24, 0.90) 100%),
              url('../img/portfolio-tech-agency-bg.jpg') center center/cover no-repeat !important;
  padding: 75px 0 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  color: #ffffff;
}

.portfolio-eyebrow-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #38bdf8;
  background: rgba(0, 102, 255, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.portfolio-main-title {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.portfolio-main-title .text-blue-glow {
  color: #38bdf8;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.45);
}

.portfolio-main-subtitle {
  font-size: 14px;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Filter Pill Bar */
.portfolio-filter-tabs-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.portfolio-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.portfolio-tab-pill:hover {
  border-color: rgba(56, 189, 248, 0.6);
  color: #ffffff;
  background: rgba(0, 102, 255, 0.15);
}

.portfolio-tab-pill.active {
  background: #0066ff;
  border-color: #0066ff;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 102, 255, 0.5);
}

/* 1. Left Featured Hero Card */
.portfolio-featured-hero-card {
  background: linear-gradient(180deg, rgba(6, 18, 48, 0.85) 0%, rgba(2, 7, 24, 0.96) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
}

.portfolio-featured-hero-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 102, 255, 0.3);
}

.featured-badge-tag {
  position: absolute;
  top: 26px;
  left: 26px;
  background: rgba(4, 15, 38, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #38bdf8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
}

.featured-hero-img-wrap {
  width: 100%;
  height: 270px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}

.featured-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-featured-hero-card:hover .featured-hero-img {
  transform: scale(1.03);
}

.featured-hero-content {
  padding: 4px 8px 6px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-cyber-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.2);
  border: 1.5px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.25);
}

.featured-project-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.featured-project-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 18px;
}

.featured-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-tech-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.tech-tag-pill {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 6px;
}

/* View Case Study Link */
.view-case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #38bdf8;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.case-study-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(0, 102, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #38bdf8;
  transition: all 0.25s ease;
}

.view-case-study-link:hover {
  color: #ffffff;
}

.view-case-study-link:hover .case-study-arrow-circle {
  background: #0066ff;
  border-color: #0066ff;
  color: #ffffff;
  transform: translateX(3px);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

/* 2. Right Split Cards */
.portfolio-split-card {
  background: linear-gradient(180deg, rgba(6, 18, 48, 0.85) 0%, rgba(2, 7, 24, 0.96) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(14px);
}

.portfolio-split-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 102, 255, 0.25);
}

.split-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.split-project-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.split-project-subtitle {
  font-size: 11.5px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 6px;
}

.split-project-desc {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.split-card-thumb-wrap {
  width: 145px;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.split-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-split-card:hover .split-card-thumb-img {
  transform: scale(1.04);
}

/* Explore All Projects CTA Pill Button */
.btn-explore-all-projects {
  background: #0055ff;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px 12px 34px;
  border-radius: 35px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.4);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-explore-all-projects:hover {
  background: #0044cc;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 85, 255, 0.65);
  border-color: #38bdf8;
}

.btn-explore-arrow-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #0055ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.btn-explore-all-projects:hover .btn-explore-arrow-circle {
  transform: translateX(3px);
}

/* Mobile Responsiveness for Portfolio (1 Big Hero + 2 Compact Bottom Cards) */
@media (max-width: 991.98px) {
  .portfolio-split-card {
    flex-direction: column;
    padding: 10px 8px 10px;
    border-radius: 12px;
    height: 100%;
    align-items: stretch;
    justify-content: space-between;
  }
  .split-card-thumb-wrap {
    width: 100%;
    height: 78px;
    margin-bottom: 6px;
    border-radius: 8px;
    order: -1;
  }
  .portfolio-split-card .project-cyber-icon-box {
    width: 24px;
    height: 24px;
    font-size: 11px;
    border-radius: 6px;
    margin-bottom: 4px;
  }
  .split-project-title {
    font-size: 12px !important;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .split-project-subtitle {
    font-size: 9.5px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 3px;
  }
  .split-project-desc {
    font-size: 9.5px !important;
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #94a3b8;
  }
  .portfolio-split-card .view-case-study-link {
    font-size: 9.5px;
  }
  .portfolio-split-card .case-study-arrow-circle {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
}

@media (max-width: 767.98px) {
  .portfolio-section {
    padding: 40px 0 45px;
  }
  .portfolio-main-title {
    font-size: 22px;
  }
  .portfolio-main-subtitle {
    font-size: 12px;
  }
  .portfolio-filter-tabs-wrap {
    gap: 4px;
    margin-top: 14px;
  }
  .portfolio-tab-pill {
    font-size: 10.5px;
    padding: 4px 10px;
  }
  .portfolio-featured-hero-card {
    padding: 12px 10px 14px;
    border-radius: 14px;
  }
  .featured-badge-tag {
    font-size: 9px;
    padding: 3px 8px;
    top: 18px;
    left: 18px;
  }
  .featured-hero-img-wrap {
    height: 155px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .portfolio-featured-hero-card .project-cyber-icon-box {
    width: 28px;
    height: 28px;
    font-size: 13px;
    border-radius: 6px;
    margin-bottom: 6px;
  }
  .featured-project-title {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .featured-project-desc {
    font-size: 10.5px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .tech-tag-pill {
    font-size: 9.5px;
    padding: 2px 7px;
  }
  .featured-bottom-bar .view-case-study-link {
    font-size: 10.5px;
  }
  .featured-bottom-bar .case-study-arrow-circle {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .btn-explore-all-projects {
    font-size: 13px;
    padding: 9px 20px 9px 24px;
  }
  .btn-explore-arrow-circle {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US SECTION (Light Theme)
   -------------------------------------------------------------------------- */
.choose-section {
  background-color: #ffffff;
  color: var(--text-dark);
  padding: 60px 0;
  position: relative;
}

.choose-section .section-eyebrow {
  background: var(--primary-light);
  color: var(--primary-blue);
  border: 1px solid var(--primary-border);
}

.choose-section .section-title {
  color: #09152b;
}

.choose-section .section-subtitle {
  color: #000000 !important;
}

.choose-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 26px 14px 20px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 30, 80, 0.04);
}

.choose-step-num {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--primary-blue);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.choose-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0, 98, 255, 0.08);
}

.choose-card:hover {
  background: #ffffff;
  border-color: #bfdbfe;
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 98, 255, 0.12);
}

.choose-card:hover .choose-icon-circle {
  transform: scale(1.12) rotate(4deg);
  background: linear-gradient(135deg, #0062ff, #00d2ff);
  color: #ffffff;
  border-color: #0062ff;
  box-shadow: 0 8px 24px rgba(0, 98, 255, 0.35);
}

.choose-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.choose-card-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 14px 0;
}

.choose-card-bottom-line {
  width: 20px;
  height: 2.5px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-top: auto;
  transition: all 0.3s ease;
}

.choose-card:hover .choose-card-bottom-line {
  width: 42px;
  background: var(--accent-gradient);
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.choose-stats-pill-row {
  max-width: 950px;
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.choose-pill-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-stat-pill {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 16px;
  min-width: 160px;
  justify-content: center;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}

.choose-stat-pill:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.choose-tag-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Individual Color Theming */
/* Blue */
.choose-theme-blue .choose-icon-circle {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary-blue);
}
.choose-theme-blue .choose-tag-pill {
  background: #eff6ff;
  color: var(--primary-blue);
  border: 1px solid #bfdbfe;
}
.choose-theme-blue:hover {
  border-color: #93c5fd;
  box-shadow: 0 16px 36px rgba(0, 98, 255, 0.14);
}

/* Green */
.choose-theme-green .choose-icon-circle {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #059669;
}
.choose-theme-green .choose-tag-pill {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}
.choose-theme-green:hover {
  border-color: #6ee7b7;
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.14);
}

/* Amber */
.choose-theme-amber .choose-icon-circle {
  background: #fffbeb;
  border-color: #fde68a;
  color: #d97706;
}
.choose-theme-amber .choose-tag-pill {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}
.choose-theme-amber:hover {
  border-color: #fcd34d;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.14);
}

/* Purple */
.choose-theme-purple .choose-icon-circle {
  background: #faf5ff;
  border-color: #e9d5ff;
  color: #9333ea;
}
.choose-theme-purple .choose-tag-pill {
  background: #faf5ff;
  color: #9333ea;
  border: 1px solid #e9d5ff;
}
.choose-theme-purple:hover {
  border-color: #d8b4fe;
  box-shadow: 0 16px 36px rgba(147, 51, 234, 0.14);
}

/* Cyan */
.choose-theme-cyan .choose-icon-circle {
  background: #ecfeff;
  border-color: #a5f3fc;
  color: #0891b2;
}
.choose-theme-cyan .choose-tag-pill {
  background: #ecfeff;
  color: #0891b2;
  border: 1px solid #a5f3fc;
}
.choose-theme-cyan:hover {
  border-color: #67e8f9;
  box-shadow: 0 16px 36px rgba(8, 145, 178, 0.14);
}

/* Rose */
.choose-theme-rose .choose-icon-circle {
  background: #fff1f2;
  border-color: #fecdd3;
  color: #e11d48;
}
.choose-theme-rose .choose-tag-pill {
  background: #fff1f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
}
.choose-theme-rose:hover {
  border-color: #fda4af;
  box-shadow: 0 16px 36px rgba(225, 29, 72, 0.14);
}

/* Bottom CTA Banner */
.choose-bottom-cta {
  position: relative;
  z-index: 5;
}

.choose-cta-inner {
  background: linear-gradient(135deg, #071228 0%, #004ecc 100%);
  border: none;
  padding: 14px 26px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 78, 204, 0.25);
  transition: var(--transition-normal);
}

.choose-cta-inner:hover {
  box-shadow: 0 14px 36px rgba(0, 80, 220, 0.35);
  transform: translateY(-2px);
}

.btn-choose-cta {
  background: #0052ff;
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.4);
  border: 1.5px solid #ffffff;
}

.btn-choose-cta:hover {
  background: #003ec7;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 82, 255, 0.6);
}

/* --------------------------------------------------------------------------
   10. CLIENT TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 70px 0 65px;
  background: #ffffff;
  position: relative;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SECTION (Modern Android App Style Review Card)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  background: #f8fafc;
  position: relative;
}

.app-testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(0, 98, 255, 0.12);
  border-radius: 18px;
  padding: 22px 24px 20px;
  box-shadow: 0 10px 30px rgba(0, 30, 90, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(0, 30, 90, 0.12);
  border-color: rgba(0, 98, 255, 0.3);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   10. CLIENT TESTIMONIALS & REVIEWS (Same Brand Dark Navy Theme As Footer)
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 60px 0;
  background-color: #030a1c;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-eyebrow {
  background: rgba(0, 98, 255, 0.22);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.28);
  font-weight: 800;
  letter-spacing: 1.2px;
}

.testimonials-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.app-testimonial-card {
  background: rgba(6, 21, 54, 0.75);
  border: 1.5px solid rgba(0, 162, 255, 0.22);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  will-change: transform;
}

.app-testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 98, 255, 0.45), 0 0 16px rgba(56, 189, 248, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
  border-color: rgba(56, 189, 248, 0.75) !important;
  border-top-color: #38bdf8 !important;
  background: linear-gradient(145deg, rgb(28, 48, 92) 0%, rgb(0, 75, 225) 100%) !important;
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 13px;
}

.testi-quote-icon {
  font-size: 28px;
  color: #00d2ff;
  opacity: 0.35;
  line-height: 1;
}

.app-testi-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 20px;
  font-weight: 400;
  flex-grow: 1;
}

.app-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 162, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 98, 255, 0.3);
  flex-shrink: 0;
}

.app-testi-meta {
  display: flex;
  flex-direction: column;
}

.app-testi-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 2px 0;
  letter-spacing: -0.2px;
}

.app-testi-role {
  font-size: 11.5px;
  color: #38bdf8;
  font-weight: 500;
  margin: 0;
}

.btn-write-review {
  background-color: #0052ff;
  color: #ffffff !important;
  border: 1px solid #0052ff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35);
}

.btn-write-review:hover {
  background-color: #003ec7;
  color: #ffffff !important;
  border-color: #003ec7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.5);
}

/* Testimonials Carousel Controls & Indicators */
.testimonials-carousel-wrapper {
  position: relative;
  padding: 10px 48px 30px;
}

.testimonials-section .carousel-inner,
.testimonials-section .carousel-item {
  overflow: visible !important;
}

.testimonials-section .carousel-inner {
  padding: 12px 0 16px;
}

.testimonial-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6, 18, 50, 0.92);
  border: 1.5px solid rgba(56, 189, 248, 0.5);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65), 0 0 15px rgba(0, 82, 255, 0.3);
  cursor: pointer;
  z-index: 50 !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-nav-btn:hover {
  background: #0052ff !important;
  color: #ffffff !important;
  border-color: #00d2ff !important;
  transform: translateY(-50%) scale(1.12) !important;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.8), 0 8px 24px rgba(0, 0, 0, 0.7) !important;
  z-index: 60 !important;
}

.testimonial-nav-btn.prev { left: -8px; }
.testimonial-nav-btn.next { right: -8px; }

.testimonial-indicators {
  position: relative;
  margin-top: 24px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 30 !important;
  pointer-events: auto !important;
}

.testimonial-indicators [data-bs-target],
.testimonial-indicators button {
  width: 22px !important;
  height: 6px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  background-color: rgba(255, 255, 255, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  cursor: pointer !important;
  touch-action: manipulation !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  opacity: 0.6 !important;
}

.testimonial-indicators [data-bs-target]:hover,
.testimonial-indicators button:hover {
  opacity: 0.9 !important;
  background-color: rgba(255, 255, 255, 0.75) !important;
}

.testimonial-indicators [data-bs-target].active,
.testimonial-indicators button.active,
.testimonial-indicators [aria-current="true"],
.testimonial-indicators .active {
  width: 38px !important;
  height: 7px !important;
  background: #00d2ff !important;
  background-color: #00d2ff !important;
  border: 1px solid #ffffff !important;
  opacity: 1 !important;
  box-shadow: 0 0 16px #00d2ff, 0 0 8px rgba(0, 210, 255, 0.85) !important;
}

@media (max-width: 767.98px) {
  .testimonials-carousel-wrapper { padding: 10px 0 20px; }
  .testimonial-nav-btn { display: none; }
  .testimonial-indicators {
    margin-top: 18px;
    gap: 7px;
  }
  .testimonial-indicators [data-bs-target],
  .testimonial-indicators button {
    width: 20px !important;
    height: 6px !important;
  }
  .testimonial-indicators [data-bs-target].active,
  .testimonial-indicators button.active,
  .testimonial-indicators [aria-current="true"],
  .testimonial-indicators .active {
    width: 34px !important;
    height: 7px !important;
  }
}

/* --------------------------------------------------------------------------
   11. TECHNOLOGIES SECTION
   -------------------------------------------------------------------------- */
.tech-section {
  padding: 40px 0 35px;
  background-color: var(--bg-subtle);
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 10px 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  width: 100%;
}

.tech-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.tech-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.tech-item:hover .tech-logo-icon {
  transform: scale(1.15);
}

.tech-name {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   12. DEDICATED CONTACT FORM SECTION
   -------------------------------------------------------------------------- */
.contact-section-clean {
  padding: 60px 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid #eef2f6;
}

.quote-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-dark-card {
  background: #040e24;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(80, 150, 255, 0.2);
  box-shadow: var(--shadow-md);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-item-row:last-child {
  margin-bottom: 0;
}

.contact-item-row i {
  color: #38bdf8;
  font-size: 19px;
  margin-top: 2px;
  background: rgba(0, 98, 255, 0.25);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.2);
}

.contact-item-row h5 {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

.contact-item-row p, .contact-item-row a {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.contact-item-row a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.form-label-orig {
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.form-control-orig, .form-select-orig {
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  border: 1.5px solid #cbd5e1;
  transition: var(--transition-fast);
}

.form-control-orig:focus, .form-select-orig:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.15);
  outline: none;
}

.btn-send-lead {
  background: #0052ff;
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35);
  cursor: pointer;
}

.btn-send-lead:hover {
  background: #003ec7;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 82, 255, 0.55);
}

/* --------------------------------------------------------------------------
   13. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background: radial-gradient(circle at 85% 40%, rgba(0, 110, 255, 0.45) 0%, rgba(0, 70, 200, 0.25) 40%, transparent 70%),
              linear-gradient(90deg, #004ecc 0%, #0036a3 100%);
  color: #ffffff;
  padding: 38px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
}

.cta-rocket-icon {
  font-size: 44px;
  color: #ffffff;
  transform: rotate(-15deg);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
}

.cta-title {
  font-size: 23px;
  font-weight: 900;
  margin: 0 0 3px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 13.5px;
  color: #dbeafe;
  margin: 0;
}

.btn-cta-quote {
  background: rgba(0, 20, 70, 0.5);
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: var(--radius-xs);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.btn-cta-quote:hover {
  background: #ffffff;
  color: var(--primary-blue) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   14. ULTRA MODERN PRO CYBER FOOTER (4-Col Themed Navigation + Trust Strip)
   Exact 1-to-1 Match with User Uploaded Design Ref (media_1787307952620 / media_1787307973214 / media_1787308519872)
   ========================================================================== */
.pro-cyber-footer {
  background-color: #040a21;
  color: #cbd5e1;
  padding: 55px 0 25px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(0, 110, 255, 0.4);
}

/* 4 Themed Navigation Columns with Vertical Dividers */
.footer-theme-col {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 20px;
  padding-right: 20px;
}

.footer-theme-col:last-child {
  border-right: none;
}

@media (max-width: 991.98px) {
  .footer-theme-col {
    border-right: none;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
  }
}

/* 4 Themed Header Badges */
.footer-col-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.footer-theme-col:hover .footer-header-icon {
  transform: scale(1.05);
}

.bg-circle-blue {
  background: #0084ff;
  box-shadow: 0 4px 18px rgba(0, 132, 255, 0.5);
}
.bg-circle-teal {
  background: #00c896;
  box-shadow: 0 4px 18px rgba(0, 200, 150, 0.5);
}
.bg-circle-purple {
  background: #9b51e0;
  box-shadow: 0 4px 18px rgba(155, 81, 224, 0.5);
}
.bg-circle-orange {
  background: #ff7a00;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.5);
}

.footer-header-text {
  flex: 1;
}

.footer-title {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-title-bar {
  display: block;
  width: 45px;
  height: 2.5px;
  border-radius: 2px;
}

.bar-blue { background: #0084ff; }
.bar-teal { background: #00c896; }
.bar-purple { background: #9b51e0; }
.bar-orange { background: #ff7a00; }

/* Links List with Colored Icons and Row Separators */
.footer-icon-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-icon-links li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-icon-links li:last-child {
  border-bottom: none;
}

.footer-icon-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.2s ease;
  width: 100%;
}

.footer-icon-links li a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Specific Column Icon Colors & Hover Effects */
.theme-blue .footer-icon-links li a i { color: #0084ff; }
.theme-blue .footer-icon-links li a:hover {
  color: #0084ff;
  padding-left: 4px;
}

.theme-teal .footer-icon-links li a i { color: #00c896; }
.theme-teal .footer-icon-links li a:hover {
  color: #00c896;
  padding-left: 4px;
}

.theme-purple .footer-icon-links li a i { color: #9b51e0; }
.theme-purple .footer-icon-links li a:hover {
  color: #9b51e0;
  padding-left: 4px;
}

.theme-orange .footer-icon-links li a i { color: #ff7a00; }
.theme-orange .footer-icon-links li a:hover {
  color: #ff7a00;
  padding-left: 4px;
}

/* ==========================================================================
   FOOTER TRUST STRIP & SOCIAL CLUSTER (Image 2 - media_1787308762359)
   ========================================================================== */
.footer-trust-strip {
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #0084ff 0%, #00c896 32%, #9b51e0 64%, #ff7a00 100%) 1;
  margin-top: 32px;
  padding-top: 30px;
  padding-bottom: 24px;
}

.footer-trust-badges-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-badge-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-trust-item:hover .footer-trust-badge-circle {
  transform: scale(1.1);
}

.badge-circle-blue {
  background: #0084ff;
  box-shadow: 0 4px 18px rgba(0, 132, 255, 0.5);
}
.badge-circle-teal {
  background: #00c896;
  box-shadow: 0 4px 18px rgba(0, 200, 150, 0.5);
}
.badge-circle-purple {
  background: #9b51e0;
  box-shadow: 0 4px 18px rgba(155, 81, 224, 0.5);
}
.badge-circle-orange {
  background: #ff7a00;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.5);
}

.footer-trust-meta {
  display: flex;
  flex-direction: column;
}

.trust-title {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.trust-sub {
  color: #94a3b8;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.2;
}

/* Follow Us Cluster */
.footer-follow-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-follow-label {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-social-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background: #0084ff;
  border-color: #0084ff;
  color: #ffffff;
  transform: translateY(-2.5px);
  box-shadow: 0 4px 16px rgba(0, 132, 255, 0.5);
}

/* Bottom Centered Copyright */
.footer-copyright-center {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  color: #94a3b8;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 75px !important;
  }

  .pro-cyber-footer,
  .site-footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 75px !important;
  }

  .pro-cyber-footer,
  .site-footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .pro-cyber-footer .container-custom {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-theme-col {
    border-right: none !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    margin-bottom: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer-col-header {
    gap: 12px !important;
    margin-bottom: 14px !important;
  }

  .footer-header-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .footer-title {
    font-size: 14px !important;
  }

  .footer-icon-links {
    width: 100% !important;
  }

  .footer-icon-links li a {
    font-size: 13px !important;
    padding: 7px 0 !important;
    gap: 10px !important;
    word-break: break-word !important;
  }

  .footer-trust-strip {
    margin-top: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-trust-badges-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 8px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .footer-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 8px !important;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer-trust-badge-circle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
  }

  .footer-trust-meta {
    overflow: hidden;
  }

  .trust-title {
    font-size: 12.5px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .trust-sub {
    font-size: 10.5px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .footer-follow-box {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .footer-follow-label {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .footer-social-cluster {
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .footer-social-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 15px !important;
  }

  .footer-copyright-center {
    padding-top: 16px !important;
    margin-top: 16px !important;
    font-size: 11.5px !important;
    text-align: center !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
    padding-bottom: 24px !important;
  }
}

.heart-icon {
  color: #ef4444;
  display: inline-block;
  margin: 0 2px;
}

/* --------------------------------------------------------------------------
   15. CONVERSATIONAL LEAD ENQUIRY CHATBOT & WIDGETS
   -------------------------------------------------------------------------- */
.floating-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 1050;
}

/* Chat Trigger Button */
.btn-floating-chat {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 8px 25px rgba(0, 98, 255, 0.5);
  border: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.btn-floating-chat:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 98, 255, 0.65);
}

.chat-online-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #22c55e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
}

.btn-floating-whatsapp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-back-to-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #040e24;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.5);
}

/* Chat Window Box */
.chat-window-container {
  position: fixed;
  bottom: 74px;
  right: 16px;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(0, 25, 80, 0.22);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1051;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background: linear-gradient(135deg, #004ed4 0%, #0066ff 100%);
  color: #ffffff;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-agent-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1.5px solid #ffffff;
}

.chat-header-title {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.chat-header-status {
  font-size: 11px;
  color: #bbf7d0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
}

.btn-close-chat {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.btn-close-chat:hover {
  opacity: 1;
}

.chat-body {
  flex-grow: 1;
  padding: 16px;
  background-color: #f8fafc;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 86%;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  position: relative;
  word-wrap: break-word;
}

.chat-bubble.bot {
  background-color: #ffffff;
  color: #0f172a;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
  border-bottom-left-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chat-bubble.user {
  background: var(--accent-gradient);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  box-shadow: 0 3px 10px rgba(0, 98, 255, 0.25);
}

.chat-quick-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.chat-chip-btn {
  background: #ffffff;
  border: 1px solid #bfdbfe;
  color: var(--primary-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 20px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-chip-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

/* Service Options buttons inside chat */
.chat-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.chat-service-btn {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #0050d4;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.chat-service-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

/* WhatsApp direct submit button */
.chat-wa-submit-btn {
  background-color: #25d366;
  color: #ffffff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.chat-wa-submit-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.chat-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 4px 8px;
}

.chat-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  animation: typingBounce 1.2s infinite ease-in-out;
}

.chat-typing-dots span:nth-child(1) { animation-delay: 0s; }
.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-5px); opacity: 1; }
}

.chat-footer {
  padding: 10px 14px;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input {
  flex-grow: 1;
  border: 1px solid #cbd5e1;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: var(--primary-blue);
}

.btn-send-chat {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-send-chat:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   16. REVIEW SUBMISSION MODAL & STAR RATING SELECTOR
   -------------------------------------------------------------------------- */
.star-rating-select {
  display: flex;
  gap: 8px;
  margin: 6px 0 12px;
}

.star-rating-select .star-icon {
  font-size: 26px;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating-select .star-icon:hover,
.star-rating-select .star-icon.active {
  color: #eab308;
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   17. BRAND LOGOS TICKER MARQUEE (Ultra-Sleek Dark Midnight VIP Theme)
   -------------------------------------------------------------------------- */
.brand-ticker-section {
  background: #030a1c;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.15) 0%, transparent 70%);
  border-top: 1px solid rgba(56, 189, 248, 0.22);
  border-bottom: 1px solid rgba(56, 189, 248, 0.22);
  padding: 34px 0 30px;
  overflow: hidden;
  position: relative;
}

.brand-ticker-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.brand-ticker-heading i {
  color: #38bdf8 !important;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
  font-size: 14px;
}

.brand-ticker-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  padding: 14px 0;
  margin: -14px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.brand-ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: brandTickerScroll 28s linear infinite;
  align-items: center;
  padding: 8px 0;
  will-change: transform;
}

.brand-ticker-track:hover {
  animation-play-state: paused;
}

.brand-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #f1f5f9;
  white-space: nowrap;
  background: rgba(8, 23, 56, 0.85);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  padding: 11px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.brand-ticker-item:hover {
  color: #ffffff;
  border-color: #38bdf8;
  background: linear-gradient(135deg, #0052ff 0%, #7c3aed 100%);
  box-shadow: 0 8px 25px rgba(0, 82, 255, 0.55), 0 0 15px rgba(56, 189, 248, 0.4);
  transform: translateY(-3px) scale(1.03);
}

.brand-ticker-item i {
  font-size: 17px;
  color: #38bdf8;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-ticker-item:hover i {
  color: #ffffff;
  transform: rotate(5deg) scale(1.1);
}

@keyframes brandTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   18. TECHNOLOGY STACK SECTION (Clean Light Theme)
   -------------------------------------------------------------------------- */
.tech-stack-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.tech-stack-section .section-eyebrow {
  background: #eff6ff;
  color: var(--primary-blue);
  border: 1px solid #bfdbfe;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.tech-stack-section .section-title {
  color: #0f172a;
}

.tech-stack-section .section-subtitle {
  color: #000000 !important;
}

.tech-category-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 20px rgba(0, 30, 90, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tech-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 98, 255, 0.12);
  border-color: #bfdbfe;
}

.tech-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.tech-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.tech-icon-blue { background: linear-gradient(135deg, #0062ff, #3b82f6); box-shadow: 0 4px 12px rgba(0, 98, 255, 0.25); }
.tech-icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25); }
.tech-icon-teal { background: linear-gradient(135deg, #06b6d4, #0ea5e9); box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25); }
.tech-icon-amber { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25); }

.tech-cat-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.tech-cat-subtitle {
  font-size: 11px;
  color: var(--primary-blue);
  margin: 0;
  font-weight: 700;
}

.tech-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tech-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
}

.tech-badge-item:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   19. OUR 4-STEP WORKING PROCESS (Same Brand Dark Navy Theme As Footer)
   -------------------------------------------------------------------------- */
.process-section {
  padding: 60px 0;
  background-color: #030a1c;
  position: relative;
  overflow: hidden;
}

.process-section .section-eyebrow {
  background: rgba(0, 98, 255, 0.22);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.28);
  font-weight: 800;
  letter-spacing: 1.2px;
}

.process-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.process-section .section-subtitle {
  color: #cbd5e1;
}

.process-card {
  background: linear-gradient(145deg, rgba(8, 24, 62, 0.85) 0%, rgba(3, 11, 30, 0.94) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  padding: 26px 20px 22px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75), 0 0 32px rgba(0, 98, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  border-color: rgba(56, 189, 248, 0.8);
  background: linear-gradient(145deg, rgba(12, 34, 85, 0.9) 0%, rgba(4, 15, 42, 0.98) 100%);
}

.process-step-num {
  font-size: 26px;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.35);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 18px;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.process-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 98, 255, 0.25);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.35);
}

.process-card:hover .process-icon-box {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

.process-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.process-desc {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   20. TRANSPARENT PRICING & ENGAGEMENT PLANS (Clean Light Theme)
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: 60px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.pricing-section .section-eyebrow {
  background: #eff6ff;
  color: var(--primary-blue);
  border: 1px solid #bfdbfe;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.pricing-section .section-title {
  color: #0f172a;
}

.pricing-section .section-subtitle {
  color: #64748b;
}

.pricing-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 30, 90, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #0062ff !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 45px rgba(0, 98, 255, 0.2), 0 0 20px rgba(0, 98, 255, 0.12) !important;
}

.pricing-card:not(.popular):hover {
  border: 2px solid #0062ff !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 45px rgba(0, 98, 255, 0.22), 0 0 24px rgba(0, 98, 255, 0.14) !important;
}

.pricing-card.popular {
  background: linear-gradient(145deg, #07132b 0%, #0d224d 50%, #061024 100%) !important;
  border: 2px solid #0052ff !important;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 40, 120, 0.28), 0 0 25px rgba(0, 82, 255, 0.2) !important;
  position: relative;
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: translateY(-6px);
  border-color: #38bdf8 !important;
  box-shadow: 0 24px 55px rgba(0, 40, 120, 0.4), 0 0 35px rgba(56, 189, 248, 0.35) !important;
}

.pricing-card.popular .pricing-popular-badge {
  background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card.popular .pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.pricing-card.popular .pricing-plan-name {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 800;
}

.pricing-card.popular .pricing-plan-desc {
  color: #94a3b8 !important;
}

.pricing-card.popular .pricing-plan-price {
  color: #38bdf8 !important;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
}

.pricing-card.popular .pricing-plan-period {
  color: #94a3b8 !important;
}

.pricing-card.popular .pricing-feature-item {
  color: #e2e8f0 !important;
}

.pricing-card.popular .pricing-feature-item i {
  color: #38bdf8 !important;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
}

.pricing-card.popular .btn-pricing {
  background: linear-gradient(135deg, #0052ff 0%, #00c2ff 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.45) !important;
  font-weight: 800;
}

.pricing-card.popular .btn-pricing:hover {
  background: linear-gradient(135deg, #0044cc 0%, #00b0e6 100%) !important;
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.65) !important;
  transform: translateY(-2px);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(0, 98, 255, 0.4);
}

.pricing-header {
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 16px;
}

.pricing-plan-name {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.pricing-plan-desc {
  font-size: 11.5px;
  color: #64748b;
  margin-bottom: 10px;
}

.pricing-plan-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-blue);
  line-height: 1;
}

.pricing-plan-period {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.pricing-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #334155;
  margin-bottom: 9px;
  font-weight: 600;
}

.pricing-feature-item i {
  font-size: 14px;
  color: #16a34a;
  flex-shrink: 0;
}

.btn-pricing,
.pricing-card.popular .btn-pricing {
  width: 100%;
  padding: 11px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-fast);
  text-decoration: none;
  border: none;
  color: #ffffff !important;
  background: #0052ff;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35);
}

.btn-pricing:hover,
.pricing-card.popular .btn-pricing:hover {
  background: #003ec7 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 82, 255, 0.55);
}

/* --------------------------------------------------------------------------
   21. FREQUENTLY ASKED QUESTIONS (Ultra-Luminous Obsidian Theme)
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 60px 0;
  background-color: #020617;
  background-image: 
    radial-gradient(circle at 10% 25%, rgba(0, 98, 255, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(0, 229, 255, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(121, 40, 202, 0.14) 0%, transparent 50%),
    radial-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  position: relative;
  overflow: hidden;
}

.faq-section .section-eyebrow {
  background: rgba(0, 98, 255, 0.22);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.28);
  font-weight: 800;
  letter-spacing: 1.2px;
}

.faq-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.faq-section .section-subtitle {
  color: #cbd5e1;
}

.faq-accordion .accordion-item {
  background: linear-gradient(145deg, rgba(8, 24, 62, 0.85) 0%, rgba(3, 11, 30, 0.94) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 98, 255, 0.3);
}

.faq-accordion .accordion-button {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  padding: 16px 20px;
  background: transparent;
  border-radius: 14px;
  box-shadow: none !important;
}

.faq-accordion .accordion-button::after {
  filter: invert(1) brightness(1.5);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #38bdf8;
  background: rgba(0, 98, 255, 0.25);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(65%) sepia(90%) saturate(1500%) hue-rotate(170deg) brightness(100%) contrast(100%);
}

.faq-accordion .accordion-body {
  font-size: 13px;
  line-height: 1.65;
  color: #cbd5e1;
  padding: 14px 20px 18px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE BREAKPOINTS & NATIVE ANDROID APP SYSTEM
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 75px !important;
  }

  .site-footer,
  .pro-cyber-footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  /* Hide desktop hero right visual box on mobile to prevent extra/duplicate image */
  .soft-visual-box,
  .soft-hero-section .soft-visual-box,
  .soft-hero-ultra .soft-visual-box {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Remove heavy extra background images from hero on mobile */
  .soft-hero-ultra,
  .mobile-cyber-hero-section,
  .services-hero-section,
  .pricing-hero-header,
  .special-hero-section {
    background-image: none !important;
  }

  .footer-bottom {
    margin-top: 22px;
    padding-top: 14px;
    margin-bottom: 0;
  }

  .hero-slide-item {
    min-height: 420px;
    height: 440px;
  }
  .hero-slide-overlay {
    background: linear-gradient(90deg, rgba(1, 6, 20, 0.98) 0%, rgba(1, 6, 20, 0.9) 62%, rgba(1, 6, 20, 0.6) 100%);
  }
  .hero-nav-arrow.prev { left: 10px; }
  .hero-nav-arrow.next { right: 10px; }

  /* About Section Tablet & Mobile Responsive */
  .about-section {
    padding: 50px 0 45px;
  }
  .about-graphic-container {
    position: relative;
    min-height: auto;
    margin-top: 30px;
    width: 100%;
  }
  .office-mockup-wrapper {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 260px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 20, 60, 0.12);
    margin-bottom: 0;
  }
  .stats-bar-container {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    z-index: 5;
  }
  .stats-bar {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .floating-widget-container {
    bottom: 74px !important;
    right: 14px !important;
    gap: 8px;
  }
  .btn-floating-chat,
  .btn-floating-whatsapp {
    display: none !important;
  }
  .chat-window-container {
    bottom: 74px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: 100% !important;
    height: 460px !important;
  }
  .btn-back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* App Bar Quick Action Pills */
.btn-app-top-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #334155;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.btn-app-top-action:active {
  transform: scale(0.92);
  background: #e2e8f0;
}

/* Android Material 3 Navigation Drawer (Offcanvas) */
.app-drawer,
.app-drawer-offcanvas {
  width: 310px !important;
  max-width: 85vw;
  background: #ffffff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 20, 60, 0.25);
  border: none;
  height: 100vh !important;
  max-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  z-index: 1060 !important;
}

.app-drawer-header {
  background: #ffffff;
  color: #0f172a;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 20, 60, 0.04);
  flex-shrink: 0;
}

.app-drawer .offcanvas-body {
  flex: 1 1 auto;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-y: contain;
  padding-bottom: 80px !important;
  touch-action: pan-y !important;
}

.drawer-logo-img,
.app-drawer-logo {
  height: 38px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.app-drawer-quick-card {
  margin: 16px;
  padding: 16px;
  background: linear-gradient(135deg, #0062ff 0%, #0045b5 100%);
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 98, 255, 0.25);
}

.app-drawer-menu-list {
  padding: 8px 12px;
}

.app-drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
  margin-bottom: 2px;
}

.app-drawer-item:hover,
.app-drawer-item.active {
  background-color: #eff6ff;
  color: var(--primary-blue);
}

.app-drawer-item:active {
  transform: scale(0.98);
  background-color: #dbeafe;
}

.drawer-action-buttons-wrap {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  padding-bottom: 40px;
}

/* Drawer Bottom WhatsApp & Customer Support Buttons */
.drawer-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 10px 8px;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.drawer-btn-whatsapp:hover,
.drawer-btn-whatsapp:active {
  background: #128c7e;
  transform: translateY(-2px);
  color: #ffffff !important;
}

.drawer-btn-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #0052ff 0%, #003da8 100%);
  color: #ffffff !important;
  padding: 10px 8px;
  border-radius: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.drawer-btn-support:hover,
.drawer-btn-support:active {
  background: #003da8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.5);
  color: #ffffff !important;
}

.font-xs { font-size: 11px; }
.font-xxs { font-size: 8px; }

/* Fixed Android Bottom Navigation Bar (Exact Match with Uploaded Ref media_1787405393465) */
.mobile-bottom-nav {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  box-shadow: 0 -3px 18px rgba(0, 20, 60, 0.1) !important;
  height: 56px !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none !important;
    visibility: hidden !important;
  }
}

.mobile-nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  height: 100% !important;
  width: 100% !important;
  padding: 0 6px !important;
  box-sizing: border-box !important;
}

.mobile-nav-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 0 !important;
  text-decoration: none !important;
  color: #475569 !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  position: relative !important;
  padding: 4px 0 !important;
  user-select: none !important;
}

.mobile-nav-item span {
  font-size: 11px !important;
  line-height: 1.1 !important;
}

.mobile-nav-item .mobile-nav-icon {
  font-size: 19px !important;
  line-height: 1 !important;
  margin-bottom: 3px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease !important;
}

.mobile-nav-item.active {
  color: #0052ff !important;
  font-weight: 700 !important;
}

.mobile-nav-item.active .mobile-nav-icon {
  color: #0052ff !important;
  transform: translateY(-1px) !important;
}

/* Red Highlight for Mobile Bottom Bar Offer Icon (Flat Clean Red, No Shadow) */
#mobNavOffers,
.mobile-nav-item.mob-nav-offer {
  color: #ef4444 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

#mobNavOffers .mobile-nav-icon i,
.mobile-nav-item.mob-nav-offer .mobile-nav-icon i {
  color: #ef4444 !important;
  filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

#mobNavOffers span,
.mobile-nav-item.mob-nav-offer span {
  color: #ef4444 !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.mobile-nav-item:active {
  transform: scale(0.92) !important;
  color: #0052ff !important;
}

.mobile-chat-dot {
  position: absolute !important;
  top: -1px !important;
  right: -3px !important;
  width: 7.5px !important;
  height: 7.5px !important;
  background-color: #22c55e !important;
  border-radius: 50% !important;
  border: 1.5px solid #ffffff !important;
}

/* Mobile App Grids (2-in-a-row responsive cards for services, portfolio, why choose us) */
@media (max-width: 767.98px) {
  /* Uniform 28px Headings across all content sections on Mobile */
  h2,
  .section-title,
  .about-heading,
  .section-header h2 {
    font-size: 28px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.3px;
  }

  .topbar {
    min-height: 64px;
    padding: 0;
  }
  .brand-logo-img {
    height: 52px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
  }

  /* Hero Slider Mobile Exact Typography Specifications */
  .hero-slide-item {
    min-height: auto;
    padding: 34px 0 40px;
    background-position: center;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  /* Hero Slider Mobile Exact Typography Specifications (Same Horizontal Slide as Desktop) */
  .hero-slide-item {
    min-height: auto;
    padding: 34px 0 44px;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  .hero-headline {
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }
  .hero-subtitle {
    font-size: 12.5px !important;
    font-weight: 400 !important;
    line-height: 1.5;
    margin-bottom: 14px;
    color: #cbd5e1;
    display: block;
    max-width: 100%;
  }
  .hero-feature-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  .hero-feature-chip {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
  }
  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    margin-bottom: 14px;
  }
  .btn-hero-primary {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    height: 38px !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px;
    gap: 5px;
    flex: 1;
    white-space: nowrap;
  }
  .btn-hero-glass {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    height: 38px !important;
    padding: 0 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px;
    gap: 5px;
    flex: 1;
    white-space: nowrap;
  }
  .hero-proof-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    max-width: 100%;
  }
  .proof-metric-item {
    gap: 6px;
  }
  .proof-metric-item i {
    font-size: 15px !important;
  }
  .proof-metric-val {
    font-size: 11.5px;
    font-weight: 800;
  }
  .proof-metric-lbl {
    font-size: 9px;
  }
  .proof-metric-sep {
    height: 14px;
  }
  .hero-visual-wrap {
    margin-top: 12px;
    width: 100%;
  }
  .hero-showcase-frame {
    max-width: 100%;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  .showcase-screen-wrap {
    height: 185px !important;
    border-radius: 10px;
  }
  .hero-capsule-dock {
    bottom: 8px;
    padding: 4px 10px;
  }
  .hero-capsule-dock button {
    width: 7px;
    height: 7px;
  }
  .hero-capsule-dock button.active {
    width: 22px;
  }
  .hero-nav-arrow { display: none; }
  .section-spacing { padding: 32px 0 28px; }

  /* Compact 2-Col App Grid for Services (col-6 - Image Cards) */
  .services-section-wrapper {
    padding: 38px 0 32px;
  }
  .service-box {
    padding: 0;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .service-img-wrap {
    height: 90px !important;
  }
  .service-icon-badge {
    width: 26px;
    height: 26px;
    font-size: 12px;
    bottom: 5px;
    right: 6px;
    border-radius: 6px;
  }
  .service-body {
    padding: 13px 10px 12px;
  }
  .service-title {
    font-size: 11.5px;
    margin-bottom: 4px;
    line-height: 1.25;
    font-weight: 800;
  }
  .service-desc {
    font-size: 9.5px;
    line-height: 1.35;
    margin-bottom: 8px;
    display: block;
  }
  .service-action-link {
    font-size: 10px;
    gap: 4px;
  }

  /* About Us Section on Phones */
  .about-section {
    padding: 34px 0 28px;
  }
  .about-eyebrow {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
  }
  .about-text,
  .about-section p,
  .about-desc,
  .about-hero-desc,
  #about p {
    font-size: 13px !important;
    line-height: 28px !important;
    margin-bottom: 12px;
  }
  .check-item {
    padding: 5px 6px;
    font-size: 9.5px;
    gap: 4px;
    border-radius: 6px;
  }
  .check-item i {
    font-size: 11px;
  }
  .btn-more-about {
    width: 100%;
    justify-content: center;
    padding: 9px 16px;
    font-size: 12px;
    margin-top: 8px;
  }
  .about-graphic-container {
    margin-top: 18px;
  }
  .office-mockup-wrapper {
    height: 175px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 6px 20px rgba(0, 20, 60, 0.1);
  }
  .stats-bar-container {
    position: relative;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
  .stats-bar {
    padding: 10px 4px;
    border-radius: 10px;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 2px;
    padding: 2px 1px;
  }
  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
    margin: 0 auto;
  }
  .stat-number {
    font-size: 15px;
    line-height: 1.15;
  }
  .stat-label {
    font-size: 8.5px;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.9);
  }

  /* Compact 3-Col App Grid for Portfolio (col-4) */
  .portfolio-section {
    padding: 34px 0 28px;
  }
  .portfolio-filters-container {
    margin-bottom: 14px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    display: block;
    padding: 0;
  }
  .portfolio-filters {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 8px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    padding: 6px 16px 8px 16px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    min-width: 100% !important;
    scroll-behavior: smooth !important;
  }
  .portfolio-filters::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
  }
  .filter-btn {
    white-space: nowrap !important;
    padding: 6px 14px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    flex: 0 0 auto !important;
    border-radius: 20px !important;
    border: 1.5px solid #e2e8f0 !important;
    line-height: 1.2 !important;
  }
  .project-card {
    border-radius: 8px;
  }
  .project-img-wrapper {
    height: 110px !important;
  }
  .project-info {
    padding: 5px 4px 6px;
  }
  .project-title {
    font-size: 9.5px;
    margin-bottom: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .project-tech {
    font-size: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Compact 2-Col App Grid for Why Choose Us (col-6 - Light Theme) */
  .choose-section {
    padding: 42px 0 35px;
  }
  .choose-stats-pill-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 10px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
  }
  .choose-pill-line {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .choose-stat-pill {
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 4px 14px !important;
    min-width: 142px !important;
    white-space: nowrap !important;
    border-radius: 16px !important;
    line-height: 1.2 !important;
    height: 27px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  }
  .choose-stat-pill i {
    font-size: 10.5px !important;
    margin-right: 4px !important;
  }
  .choose-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    padding: 12px 10px 10px;
    height: 150px !important;
    max-height: 150px !important;
    padding: 12px 10px 12px !important;
    height: 100% !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible !important;
    box-shadow: 0 2px 10px rgba(0, 20, 60, 0.04);
  }
  .choose-step-num {
    top: 6px;
    right: 6px;
    font-size: 8.5px;
    padding: 1px 5px;
    border-radius: 4px;
    color: var(--primary-blue);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
  }
  .choose-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
    margin-bottom: 6px;
  }
  .choose-card-title {
    font-size: 12.5px !important;
    margin-bottom: 3px;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
  }
  .choose-card-desc {
    font-size: 10.5px !important;
    line-height: 1.4;
    margin-bottom: 6px;
    display: block;
    color: #64748b;
  }
  .choose-tag-pill {
    font-size: 9.5px !important;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: auto;
  }
  .choose-cta-inner {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #071228 0%, #004ecc 100%);
    color: #ffffff;
  }

  /* Android App Style Testimonials on Mobile */
  .testimonials-section {
    padding: 36px 0 28px;
  }
  .testimonials-carousel-wrapper {
    padding: 6px 0 20px;
  }
  .app-testimonial-card {
    padding: 16px 15px 14px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 20, 60, 0.06);
    max-width: 100%;
  }
  .app-testi-header {
    gap: 8px;
    margin-bottom: 10px;
  }
  .app-testi-avatar {
    width: 40px;
    height: 40px;
  }
  .app-testi-name {
    font-size: 13.5px;
    font-weight: 700;
    gap: 4px;
    color: #ffffff;
  }
  .app-verified-badge {
    font-size: 9.5px;
    padding: 0 5px;
  }
  .app-testi-role {
    font-size: 11px;
    color: #94a3b8;
  }
  .app-testi-rating {
    padding: 3px 6px;
    border-radius: 6px;
  }
  .app-rating-score {
    font-size: 11px;
    margin-right: 2px;
  }
  .app-testi-stars {
    font-size: 10px;
  }
  .app-testi-text {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #f1f5f9;
  }
  .app-testi-footer {
    padding-top: 8px;
    font-size: 11px;
  }
  .app-testi-tag {
    padding: 2px 7px;
    font-size: 10.5px;
    border-radius: 4px;
  }
  .app-testi-time {
    font-size: 10px;
  }
  .testimonial-nav-btn {
    display: none;
  }
  .testimonial-indicators {
    margin-top: 12px;
    gap: 4px;
  }
  .testimonial-indicators [data-bs-target] {
    width: 16px;
    height: 3px;
    border-radius: 2px;
  }

  /* Mobile Styles for New IT Agency Sections */
  .brand-ticker-section {
    padding: 22px 0 18px;
  }
  .brand-ticker-track {
    gap: 16px;
    animation-duration: 20s;
    padding: 6px 0;
  }
  .brand-ticker-item {
    font-size: 12.5px;
    padding: 8px 16px;
    gap: 8px;
  }
  .brand-ticker-item i {
    font-size: 15px;
  }

  .tech-stack-section {
    padding: 34px 0 28px;
  }
  .tech-category-card {
    padding: 12px 10px 14px !important;
    height: 100% !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible !important;
  }
  .tech-cat-header {
    gap: 6px;
    margin-bottom: 6px;
    padding-bottom: 6px;
  }
  .tech-cat-icon {
    width: 26px;
    height: 26px;
    font-size: 13px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .tech-cat-title {
    font-size: 12.5px !important;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
  }
  .tech-cat-subtitle {
    font-size: 10px !important;
    line-height: 1.2;
    color: #0052ff;
    font-weight: 600;
  }
  .tech-pills-wrap {
    gap: 4px !important;
    overflow: visible !important;
    display: flex;
    flex-wrap: wrap;
  }
  .tech-badge-item {
    padding: 2px 6px !important;
    font-size: 9.5px !important;
    border-radius: 10px;
    gap: 3px;
    font-weight: 600;
  }

  .process-section {
    padding: 34px 0 28px;
  }
  .process-card {
    padding: 12px 10px 14px !important;
    height: 100% !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible !important;
  }
  .process-step-num {
    font-size: 14px;
    top: 8px;
    right: 8px;
  }
  .process-icon-box {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
    margin-bottom: 6px;
    flex-shrink: 0;
  }
  .process-title {
    font-size: 12.5px !important;
    margin-bottom: 3px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
  }
  .process-desc {
    font-size: 10.5px !important;
    line-height: 1.4;
    margin: 0;
    color: #cbd5e1;
  }
  /* 2-Column Mobile Portfolio Cards Layout (Unified with Services & All Index Cards) */
  .portfolio-card-luxury,
  .portfolio-section .portfolio-card-luxury {
    padding: 12px 10px 12px !important;
    border-radius: 14px !important;
    height: 100% !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    border: 1.5px solid rgba(0, 102, 255, 0.45) !important;
    background: linear-gradient(145deg, rgba(8, 22, 54, 0.88) 0%, rgba(4, 12, 34, 0.96) 100%) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  }
  .portfolio-card-browser-bar,
  .portfolio-section .portfolio-card-browser-bar {
    display: none !important;
  }
  .portfolio-card-thumb-frame,
  .portfolio-section .portfolio-card-thumb-frame {
    height: 65px !important;
    max-height: 65px !important;
    border-radius: 8px !important;
    margin-bottom: 7px !important;
    border-bottom: none !important;
    background: rgba(0, 50, 150, 0.12) !important;
    overflow: hidden !important;
    position: relative !important;
  }
  .portfolio-card-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  .portfolio-card-body-luxury,
  .portfolio-section .portfolio-card-body-luxury {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
  }
  .project-tag-industry,
  .portfolio-section .project-tag-industry {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
    font-weight: 700 !important;
    color: #38bdf8 !important;
    margin-bottom: 2px !important;
    line-height: 1.1 !important;
  }
  .portfolio-project-title-lux,
  .portfolio-section .portfolio-project-title-lux {
    font-size: 12px !important;
    line-height: 1.25 !important;
    margin-bottom: 4px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
  }
  .portfolio-project-desc-lux,
  .portfolio-section .portfolio-project-desc-lux {
    display: none !important;
  }
  .portfolio-tech-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 3px !important;
    margin-bottom: 8px !important;
  }
  .tech-pill-badge {
    font-size: 7.5px !important;
    padding: 1px 5px !important;
    border-radius: 4px !important;
    background: rgba(0, 82, 255, 0.22) !important;
    border: 1px solid rgba(56, 189, 248, 0.35) !important;
    color: #38bdf8 !important;
  }
  .portfolio-card-action-footer {
    margin-top: auto !important;
    padding-top: 2px !important;
    width: 100% !important;
  }
  .link-view-project,
  .portfolio-section .link-view-project {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    background: #0052ff !important;
    color: #ffffff !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    padding: 5px 10px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 82, 255, 0.35) !important;
    gap: 4px !important;
  }

  .pricing-section {
    padding: 40px 0 35px;
    background: #f8fafc;
  }
  .pricing-card {
    padding: 24px 20px 22px;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-bottom: 22px;
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 6px 24px rgba(0, 30, 90, 0.06);
  }
  .pricing-card.popular {
    background: linear-gradient(145deg, #07132b 0%, #0d224d 50%, #061024 100%) !important;
    border: 2px solid #0052ff !important;
    box-shadow: 0 12px 35px rgba(0, 40, 120, 0.35) !important;
  }
  .pricing-popular-badge {
    top: -12px;
    font-size: 11px;
    padding: 4px 14px;
    font-weight: 800;
    background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%);
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 98, 255, 0.4);
  }
  .pricing-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    display: block;
    border-bottom: 1px solid #f1f5f9;
  }
  .pricing-card.popular .pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .pricing-plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #0f172a !important;
  }
  .pricing-card.popular .pricing-plan-name {
    color: #ffffff !important;
  }
  .pricing-plan-desc {
    display: block;
    font-size: 13px;
    color: #475569 !important;
    margin-bottom: 10px;
    line-height: 1.45;
  }
  .pricing-card.popular .pricing-plan-desc {
    color: #94a3b8 !important;
  }
  .pricing-plan-price {
    font-size: 26px;
    font-weight: 900;
    color: #0052ff !important;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }
  .pricing-card.popular .pricing-plan-price {
    color: #38bdf8 !important;
    text-shadow: 0 0 16px rgba(56, 189, 248, 0.45);
  }
  .pricing-plan-period {
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b !important;
  }
  .pricing-card.popular .pricing-plan-period {
    color: #94a3b8 !important;
  }
  .pricing-feature-list {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .pricing-feature-item {
    font-size: 13.5px;
    margin-bottom: 0;
    gap: 10px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.45;
    color: #1e293b !important;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
  }
  .pricing-card.popular .pricing-feature-item {
    color: #f1f5f9 !important;
  }
  .pricing-feature-item i {
    font-size: 15px;
    color: #16a34a !important;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .pricing-card.popular .pricing-feature-item i {
    color: #38bdf8 !important;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.5));
  }
  .btn-pricing {
    font-size: 14px;
    padding: 12px 18px;
    height: 44px;
    border-radius: 12px;
    font-weight: 800;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #eff6ff;
    color: #0052ff !important;
    border: 1.5px solid #bfdbfe;
    text-decoration: none;
  }
  .pricing-card.popular .btn-pricing {
    background: linear-gradient(135deg, #0062ff 0%, #00d2ff 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 98, 255, 0.45) !important;
  }

  .faq-section {
    padding: 34px 0 28px;
  }
  .faq-accordion .accordion-button {
    font-size: 12px;
    padding: 12px 14px;
    color: #ffffff;
    background: transparent;
  }
  .faq-accordion .accordion-body {
    font-size: 11px;
    padding: 10px 14px 12px;
    line-height: 1.5;
    color: #cbd5e1;
  }

  /* Touch App Feedback */
  .service-box:active,
  .project-card:active,
  .choose-card:active,
  .tech-category-card:active,
  .process-card:active,
  .pricing-card:active,
  .btn-quote:active,
  .btn-more-about:active {
    transform: scale(0.95);
  }
}

/* ==========================================================================
   21. ABOUT US DEDICATED PAGE STYLES (Exact Match with Reference Image)
   ========================================================================== */

/* Circuit PCB Background for Hero Section */
.about-hero-page-section {
  padding: 70px 0 60px;
  background-color: #ffffff;
  background-image: 
    radial-gradient(#e2e8f0 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 98, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 98, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px, 40px 40px, 40px 40px;
  position: relative;
  overflow: hidden;
}

.about-eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-eyebrow-line::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #0284c7;
}

.about-hero-title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.text-teal-gradient {
  color: #00b4d8;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #0096c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 28px;
  max-width: 530px;
}

.btn-hero-explore {
  background: linear-gradient(135deg, #0a2540 0%, #0052cc 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.25);
  transition: var(--transition-fast);
}

.btn-hero-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.35);
  background: linear-gradient(135deg, #0052cc 0%, #00b4d8 100%);
}

.btn-hero-contact {
  background: #f8fafc;
  color: #1e293b !important;
  border: 1.5px solid #cbd5e1;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-hero-contact:hover {
  background: #ffffff;
  border-color: #0052cc;
  color: #0052cc !important;
  transform: translateY(-2px);
}

/* 3 Hero Pillar Feature Icons */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pillar-icon-blue { background: #e0f2fe; color: #0284c7; border: 1.5px solid #bae6fd; }
.pillar-icon-teal { background: #ccfbf1; color: #0d9488; border: 1.5px solid #99f6e4; }
.pillar-icon-gold { background: #fef3c7; color: #d97706; border: 1.5px solid #fde68a; }

.about-pillar-title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px;
}

.about-pillar-desc {
  font-size: 11px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* High-Tech Polygon Meeting Showcase with Angled Chevron Cut */
.about-hero-visual-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.about-chevron-tech-badge-dock {
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 10;
}

.chevron-tech-node {
  width: 50px;
  height: 50px;
  background: #061838;
  border: 2px solid #00d2ff;
  border-radius: 14px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.chevron-tech-node i {
  transform: rotate(-45deg);
  font-size: 20px;
}

.chevron-tech-node:hover {
  background: #0062ff;
  border-color: #ffffff;
  color: #ffffff;
  transform: rotate(45deg) scale(1.1);
}

.about-boardroom-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.16);
  border: 5px solid #ffffff;
}

.about-boardroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   22. OUR STORY & RADIAL MILESTONES (Exact Match)
   -------------------------------------------------------------------------- */
.our-story-section {
  padding: 70px 0 50px;
  background-color: #ffffff;
}

.story-eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.story-heading {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.radial-timeline-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 380px;
  margin: 0 auto;
}

/* Concentric Rings Visual */
.radial-svg-arcs {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.milestone-pin-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #bfdbfe;
  box-shadow: 0 4px 14px rgba(0, 40, 120, 0.08);
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  z-index: 4;
}

.milestone-pin-node .year-tag {
  color: #0284c7;
  font-weight: 800;
}

.milestone-pin-node i {
  color: #0284c7;
  font-size: 13px;
}

.pin-2015 { top: 35px; left: 10px; }
.pin-2010 { top: 120px; left: -10px; }
.pin-2023 { top: 20px; right: 100px; }
.pin-2014 { top: 90px; right: 10px; }
.pin-2016 { top: 180px; right: 20px; }
.pin-2013 { bottom: 60px; right: 60px; }

/* Floating Team Commitment Card */
.floating-team-card {
  position: absolute;
  bottom: 30px;
  left: 15px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 14px 35px rgba(0, 30, 80, 0.12);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 270px;
  z-index: 8;
}

.floating-team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0052cc;
  flex-shrink: 0;
}

.floating-team-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: #334155;
  font-weight: 600;
  margin: 0 0 6px 0;
}

.floating-team-bars {
  display: flex;
  gap: 4px;
}

.floating-team-bars span {
  display: inline-block;
  height: 3px;
  border-radius: 2px;
}

.floating-team-bars span:nth-child(1) { width: 28px; background: #0052cc; }
.floating-team-bars span:nth-child(2) { width: 14px; background: #00d2ff; }

/* Checklist Grid */
.story-checklist-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 24px;
}

.story-check-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
}

.story-check-point i {
  color: #0052cc;
  font-size: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   23. KEY STATS CARDS (4 Glass Pill Cards)
   -------------------------------------------------------------------------- */
.about-stats-row-section {
  padding: 10px 0 60px;
  background-color: #ffffff;
}

.about-stat-box {
  background: linear-gradient(135deg, rgba(230, 243, 255, 0.75) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1.5px solid #bae6fd;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 18px rgba(0, 80, 200, 0.06);
  transition: all 0.3s ease;
}

.about-stat-box:hover {
  transform: translateY(-4px);
  border-color: #0052cc;
  box-shadow: 0 10px 28px rgba(0, 80, 200, 0.12);
}

.about-stat-icon-square {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #0052cc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.about-stat-number {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 3px;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin: 0;
}

/* --------------------------------------------------------------------------
   24. WHY BUSINESSES CHOOSE US (Vibrant Ocean Blue Theme)
   -------------------------------------------------------------------------- */
.why-choose-ocean-section {
  padding: 65px 0 60px;
  background: linear-gradient(135deg, #093c74 0%, #0d5ea6 50%, #083c74 100%);
  color: #ffffff;
  position: relative;
}

.ocean-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.ocean-heading {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 36px;
}

.ocean-feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ocean-feature-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #38bdf8;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ocean-card-icon {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1;
}

.ocean-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.ocean-card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   25. MEET OUR PROFESSIONALS (Our Team Section)
   -------------------------------------------------------------------------- */
.professionals-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.team-prof-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.team-prof-avatar-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
}

.team-prof-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00b4d8;
  box-shadow: 0 6px 18px rgba(0, 180, 216, 0.2);
}

.team-prof-skill-pill {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #00b4d8 0%, #0052cc 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 8px 5px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.team-prof-name {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.team-prof-role {
  font-size: 12px;
  color: #0284c7;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-prof-socials {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.team-prof-social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.team-prof-social-btn:hover {
  background: #0052cc;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   26. TECHNOLOGIES WE WORK WITH (Brand Digital Strip)
   -------------------------------------------------------------------------- */
.tech-strip-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0, 98, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.tech-pill-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  transition: all 0.25s ease;
}

.tech-pill-box:hover {
  transform: translateY(-3px);
}

.tech-pill-box img,
.tech-pill-box i {
  font-size: 32px;
  line-height: 1;
}

.tech-pill-name {
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  margin: 0;
}

@media (max-width: 991.98px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-chevron-tech-badge-dock {
    display: none;
  }
  .story-checklist-2col {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   27. LEFT FLOATING CONTACT DOCK (WhatsApp Only on Desktop)
   -------------------------------------------------------------------------- */
.left-floating-contact-dock {
  position: fixed;
  left: 20px;
  bottom: 28px;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 991.98px) {
  .left-floating-contact-dock {
    display: none !important;
  }
}

.left-dock-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.left-dock-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
}
.left-dock-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  background: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* Tooltip on hover */
.left-dock-tooltip {
  position: absolute;
  left: 115%;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: rgba(15, 23, 42, 0.95);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.left-dock-btn:hover .left-dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 767.98px) {
  .left-dock-tooltip {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   28. RIGHT FLOATING CHATBOT WIDGET
   -------------------------------------------------------------------------- */
.right-floating-chatbot-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

@media (max-width: 767.98px) {
  .right-floating-chatbot-dock {
    display: none !important;
  }
}

.btn-floating-chatbot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff 0%, #7c3aed 100%);
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-floating-chatbot:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.65);
}

.chatbot-online-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 8px #22c55e;
  animation: chatPulse 2s infinite;
}

@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Chat Greeting Bubble */
.chat-greeting-bubble {
  background: #ffffff;
  color: #0f172a;
  border-radius: 14px 14px 2px 14px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(0, 20, 60, 0.18);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  animation: floatBubble 3s ease-in-out infinite alternate;
  max-width: 210px;
}

@keyframes floatBubble {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.greeting-avatar {
  font-size: 20px;
  line-height: 1;
}

.greeting-text {
  display: flex;
  flex-direction: column;
}

.greeting-text strong {
  font-size: 11.5px;
  color: #0052ff;
  line-height: 1.15;
}

.greeting-text span {
  font-size: 10px;
  color: #475569;
  line-height: 1.2;
}

.greeting-close {
  position: absolute;
  top: -4px;
  right: 4px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1;
  cursor: pointer;
}
.greeting-close:hover {
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   29. WEBSITE DESIGN PACKAGES & PRICING (White Background Modern Matrix)
   -------------------------------------------------------------------------- */
.pricing-section-white {
  padding: 70px 0 75px;
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0, 82, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  position: relative;
}

.pricing-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0052ff;
  background: #e0edff;
  border: 1px solid #bfdbfe;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 82, 255, 0.08);
}

.pricing-title-gradient {
  background: linear-gradient(135deg, #0052ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-matrix-card-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(0, 30, 90, 0.06);
  overflow: hidden;
  margin-top: 35px;
}

.pricing-table-desktop {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 0;
}

.pricing-table-desktop thead th {
  vertical-align: bottom;
  padding: 24px 14px 20px;
  background: #ffffff;
  border-bottom: 2px solid #edf2f7;
  position: relative;
}

.pricing-table-desktop thead th.th-features-label {
  width: 19%;
  text-align: left;
  padding-left: 24px;
  vertical-align: middle;
}

.pricing-table-desktop thead th.th-plan {
  width: 16.2%;
  text-align: center;
}

.plan-header-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 14px 18px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.plan-header-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 30, 80, 0.09);
}

.plan-card-starter {
  border-top: 4px solid #f97316;
}
.plan-card-starter .plan-icon-circle {
  background: #fff7ed;
  color: #f97316;
  border-color: #ffedd5;
}
.plan-card-starter .btn-plan-action {
  border: 1.5px solid #f97316;
  color: #f97316;
  background: #ffffff;
}
.plan-card-starter .btn-plan-action:hover {
  background: #f97316;
  color: #ffffff !important;
}

.plan-card-business {
  border-top: 4px solid #0052ff;
}
.plan-card-business .plan-icon-circle {
  background: #eff6ff;
  color: #0052ff;
  border-color: #dbeafe;
}
.plan-card-business .btn-plan-action {
  border: 1.5px solid #0052ff;
  color: #0052ff;
  background: #ffffff;
}
.plan-card-business .btn-plan-action:hover {
  background: #0052ff;
  color: #ffffff !important;
}

.plan-card-advance {
  background: #f0fdf4;
  border: 2px solid #10b981;
  border-top: 4px solid #10b981;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.16);
  transform: scale(1.02);
  z-index: 2;
}
.plan-card-advance:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.24);
}
.plan-card-advance .plan-icon-circle {
  background: #dcfce7;
  color: #10b981;
  border-color: #bbf7d0;
}
.plan-card-advance .btn-plan-action {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.plan-card-advance .btn-plan-action:hover {
  background: #047857;
}

.popular-top-pill {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

.plan-card-delux {
  border-top: 4px solid #8b5cf6;
}
.plan-card-delux .plan-icon-circle {
  background: #f5f3ff;
  color: #8b5cf6;
  border-color: #ede9fe;
}
.plan-card-delux .btn-plan-action {
  border: 1.5px solid #8b5cf6;
  color: #8b5cf6;
  background: #ffffff;
}
.plan-card-delux .btn-plan-action:hover {
  background: #8b5cf6;
  color: #ffffff !important;
}

.plan-card-premium {
  border-top: 4px solid #f59e0b;
}
.plan-card-premium .plan-icon-circle {
  background: #fffbeb;
  color: #f59e0b;
  border-color: #fef3c7;
}
.plan-card-premium .btn-plan-action {
  border: 1.5px solid #f59e0b;
  color: #d97706;
  background: #ffffff;
}
.plan-card-premium .btn-plan-action:hover {
  background: #f59e0b;
  color: #ffffff !important;
}

.plan-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1.5px solid;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.plan-name-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 4px;
}

.plan-price-tag {
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 4px;
}

.plan-audience-desc {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 14px;
  min-height: 30px;
  line-height: 1.35;
}

.btn-plan-action {
  width: 100%;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.features-header-box {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.pricing-table-desktop tbody tr {
  transition: background-color 0.2s ease;
}

.pricing-table-desktop tbody tr:nth-child(even) {
  background-color: #f8fafc;
}

.pricing-table-desktop tbody tr:hover {
  background-color: #f1f5f9;
}

.pricing-table-desktop tbody td {
  padding: 15px 14px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
  text-align: center;
  color: #334155;
  vertical-align: middle;
}

.pricing-table-desktop tbody td.td-feature-title {
  text-align: left;
  font-weight: 700;
  color: #0f172a;
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-table-desktop tbody td.td-feature-title i {
  font-size: 16px;
  color: #0052ff;
}

.pricing-table-desktop tbody td.td-highlight-col {
  background-color: rgba(16, 185, 129, 0.05);
  font-weight: 700;
}

.badge-check-yes {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.badge-check-no {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.feature-val-badge {
  display: inline-block;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.pricing-trust-bar {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-bar-item i {
  color: #0052ff;
  font-size: 16px;
}
.trust-bar-divider {
  color: #cbd5e1;
}

@media (max-width: 991.98px) {
  .pricing-table-desktop {
    display: none;
  }
  .pricing-mobile-container {
    display: block;
  }

  .mobile-plan-nav-pills {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mobile-plan-nav-pills::-webkit-scrollbar {
    display: none;
  }

  .mobile-plan-pill-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-plan-pill-btn.active {
    background: #0052ff;
    color: #ffffff;
    border-color: #0052ff;
    box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3);
  }

  .mob-pricing-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 10px 30px rgba(0, 20, 60, 0.06);
    margin-bottom: 20px;
    position: relative;
  }

  .mob-pricing-card.is-popular {
    border: 2px solid #10b981;
    background: #fcfdfc;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15);
  }

  .mob-plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 14px;
    margin-bottom: 16px;
  }

  .mob-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .mob-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-size: 12.5px;
  }

  .mob-feat-label {
    color: #475569;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mob-feat-label i {
    color: #0052ff;
    font-size: 14px;
  }

  .mob-feat-val {
    font-weight: 700;
    color: #0f172a;
  }
}

/* --------------------------------------------------------------------------
   30. ULTRA-PREMIUM NATIVE MOBILE APP SERVICES BOTTOM SHEET
   -------------------------------------------------------------------------- */
.mobile-services-bottom-sheet {
  height: 88vh !important;
  max-height: 88vh !important;
  border-top-left-radius: 28px !important;
  border-top-right-radius: 28px !important;
  background: #f8fafc !important;
  border: none !important;
  box-shadow: 0 -16px 50px rgba(0, 20, 60, 0.28) !important;
  z-index: 1060 !important;
}

.sheet-drag-pill-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0 3px;
  cursor: pointer;
}

.sheet-drag-pill {
  width: 44px;
  height: 4.5px;
  background: #cbd5e1;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.sheet-drag-pill-container:active .sheet-drag-pill {
  background: #0062ff;
  width: 52px;
}

.app-sheet-header {
  padding: 6px 16px 12px;
  border-bottom: 1px solid #edf2f7;
  background: #ffffff;
}

.app-sheet-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 82, 255, 0.35);
  flex-shrink: 0;
}

.app-sheet-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.app-sheet-subtitle {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

.btn-sheet-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-sheet-close:hover,
.btn-sheet-close:active {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
  transform: scale(0.92);
}

/* Spotlight Search Bar */
.sheet-search-container {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.sheet-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sheet-search-icon {
  position: absolute;
  left: 14px;
  color: #0062ff;
  font-size: 14px;
  pointer-events: none;
}

.sheet-search-input {
  width: 100%;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 25px;
  padding: 8px 36px 8px 38px;
  font-size: 12px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.25s ease;
}

.sheet-search-input:focus {
  background: #ffffff;
  border-color: #0062ff;
  box-shadow: 0 0 0 3.5px rgba(0, 98, 255, 0.14);
}

.sheet-search-clear {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Pill Tabs Bar */
.sheet-pills-nav {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  padding-top: 2px;
}

.sheet-pills-nav::-webkit-scrollbar {
  display: none;
}

.sheet-tab-btn {
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 25px !important;
  font-size: 11.5px;
  font-weight: 700;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #334155 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.2;
  cursor: pointer;
}

.sheet-tab-btn.active {
  background: linear-gradient(135deg, #0052ff 0%, #0095ff 100%) !important;
  color: #ffffff !important;
  border-color: #0052ff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35) !important;
}

.sheet-tab-btn.active i {
  color: #ffffff !important;
}

.app-sheet-body {
  overflow-y: auto;
  background: #f8fafc;
}

.app-sheet-tab-content {
  overflow-y: auto;
}

/* Category Hero Summary Banner */
.app-cat-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.app-hero-blue { background: #eff6ff; border-color: #dbeafe; color: #1e40af; }
.app-hero-cyan { background: #ecfeff; border-color: #cffafe; color: #0e7490; }
.app-hero-purple { background: #f5f3ff; border-color: #ede9fe; color: #6d28d9; }
.app-hero-green { background: #ecfdf5; border-color: #d1fae5; color: #065f46; }
.app-hero-amber { background: #fffbeb; border-color: #fef3c7; color: #92400e; }
.app-hero-rose { background: #fff1f2; border-color: #ffe4e6; color: #9f1239; }

.app-hero-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.app-hero-title {
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}

.app-hero-sub {
  font-size: 10px;
  opacity: 0.82;
  font-weight: 500;
  line-height: 1.15;
  display: block;
}

/* Gradients for category icons */
.bg-gradient-blue { background: linear-gradient(135deg, #2563eb 0%, #38bdf8 100%) !important; }
.bg-gradient-cyan { background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%) !important; }
.bg-gradient-purple { background: linear-gradient(135deg, #7c3aed 0%, #c084fc 100%) !important; }
.bg-gradient-green { background: linear-gradient(135deg, #059669 0%, #34d399 100%) !important; }
.bg-gradient-amber { background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%) !important; }
.bg-gradient-rose { background: linear-gradient(135deg, #e11d48 0%, #fb7185 100%) !important; }

/* Ultra-Sleek Native App Cards (2-Column Grid) */
.mob-app-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 16px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 20, 60, 0.025);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mob-app-card:active {
  transform: scale(0.96);
  border-color: #0062ff;
  background: #f8fbff;
  box-shadow: 0 6px 20px rgba(0, 98, 255, 0.15);
}

.mob-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mob-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.mob-arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.2s ease;
}

.mob-app-card:active .mob-arrow-circle {
  background: #0062ff;
  color: #ffffff;
  border-color: #0062ff;
  transform: translateX(2px);
}

.mob-card-info {
  display: flex;
  flex-direction: column;
}

.mob-title {
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mob-desc {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sticky Action Bar at Bottom */
.app-sheet-footer {
  box-shadow: 0 -6px 20px rgba(0, 20, 60, 0.08);
  z-index: 5;
  background: #ffffff;
}

.btn-sheet-cta-wa {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.btn-sheet-cta-call {
  background: linear-gradient(135deg, #0052ff 0%, #0045c7 100%) !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  padding: 8px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 82, 255, 0.3) !important;
}

.btn-sheet-cta-quote {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  border-radius: 25px !important;
  padding: 8px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25) !important;
}

/* ==========================================================================
   29. MOBILE APP-STYLE PROMO HERO BANNER (Matches User Uploaded Reference)
   ========================================================================== */
.mob-app-banner-section {
  padding: 12px 0 10px;
  background-color: #000b20;
}

.mob-app-banner-card {
  position: relative;
  background: linear-gradient(135deg, #071533 0%, #0e2454 50%, #06132e 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.28);
  border-radius: 16px;
  padding: 16px 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 5, 20, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Background Ambient Glows */
.mob-app-banner-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -30px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mob-app-banner-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.mob-app-banner-left {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.mob-app-banner-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mob-app-banner-title {
  font-size: 16.5px;
  font-weight: 900;
  line-height: 1.22;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.mob-app-banner-title .highlight {
  color: #38bdf8;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.mob-app-banner-desc {
  font-size: 11.5px;
  color: #cbd5e1;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mob-app-banner-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff7a00 0%, #ff5500 100%);
  color: #ffffff !important;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5.5px 13px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.4);
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.mob-app-banner-cta-pill:active {
  transform: scale(0.94);
}

.mob-app-banner-right {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 96px;
}

.mob-app-banner-discount-badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2.5px 6px;
  border-radius: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  text-align: right;
  line-height: 1.1;
}

.mob-app-banner-discount-badge span {
  font-size: 11px;
  color: #facc15;
}

.mob-app-banner-img {
  width: 90px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
}

/* ==========================================================================
   GLOBAL MOBILE CARD SPACING & ANTI-COLLISION ENGINE (PHONE VIEW)
   Ensures all card grids maintain perfectly equal 14px horizontal, center & vertical gaps
   ========================================================================== */
@media (max-width: 767.98px) {
  .container-custom {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* 1. Services Section 3D Cyber Cards */
  .services-section-wrapper .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
  .services-section-wrapper .row > * {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .cyber-service-card {
    height: 100% !important;
    margin-bottom: 0 !important;
  }

  /* 2. Tech Stack Category Cards */
  .tech-stack-section .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
  .tech-stack-section .row > * {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .tech-category-card {
    height: 100% !important;
    margin-bottom: 0 !important;
  }

  /* 3. Why Choose Us Feature Cards */
  .choose-section .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
  .choose-section .row > * {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .choose-card {
    height: 100% !important;
    margin-bottom: 0 !important;
  }

  /* 4. Working Process 4-Step Cards */
  .process-section .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
  .process-section .row > * {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .process-card {
    height: 100% !important;
    margin-bottom: 0 !important;
  }

  /* 5. Pricing Package Cards */
  .pricing-section .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
  }
  .pricing-section .row > * {
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .pricing-card {
    margin-bottom: 0 !important;
  }

  /* 6. Portfolio Split & Featured Cards */
  .portfolio-section .row {
    --bs-gutter-x: 14px !important;
    --bs-gutter-y: 14px !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
  .portfolio-section .row > * {
    padding-left: 7px !important;
    padding-right: 7px !important;
    margin-top: 14px !important;
    margin-bottom: 0 !important;
  }
  .portfolio-featured-hero-card {
    margin-bottom: 14px !important;
  }
  .portfolio-split-card {
    height: 100% !important;
    margin-bottom: 0 !important;
  }

  /* 7. Testimonial Review Cards */
  .app-testimonial-card {
    margin-bottom: 0 !important;
  }

  /* 8. Contact Form & Dark Card */
  .contact-section-clean .row {
    --bs-gutter-x: 16px !important;
    --bs-gutter-y: 16px !important;
    row-gap: 0 !important;
  }
  .contact-section-clean .row > * {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
  }
  .contact-dark-card {
    margin-bottom: 0 !important;
  }
  .quote-box {
    margin-bottom: 0 !important;
  }
}

/* ==========================================================================
   NEXORA-STYLE CYBERNETIC 3D DESKTOP HERO SLIDER (Exact Match to Reference)
   ========================================================================== */
/* ==========================================================================
   NEXORA-STYLE CYBERNETIC 3D DESKTOP HERO SLIDER (VIP Animation & Design)
   ========================================================================== */
.hero-cyber-stage-section {
  position: relative;
  background: radial-gradient(circle at 75% 45%, #0f1638 0%, #070b1e 50%, #03050c 100%);
  color: #ffffff;
  overflow: hidden;
  padding: 65px 0 60px;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Radial Glow Flare with Smooth Color Transition */
.hero-cyber-ambient-flare {
  position: absolute;
  top: 10%;
  right: 12%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.24) 0%, rgba(0, 82, 255, 0.18) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  transition: background 0.8s ease;
  animation: cyberPulseFlare 5.5s ease-in-out infinite alternate;
}
@keyframes cyberPulseFlare {
  0% { transform: scale(0.92) translate(0, 0); opacity: 0.75; }
  100% { transform: scale(1.12) translate(-15px, 10px); opacity: 1; }
}

/* 1. Left Vertical Counter & Slider Navigation (01 | 02 | 03 | 04) */
.hero-cyber-vertical-nav {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 25;
}
.hero-cyber-nav-item {
  font-family: 'Roboto', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #475569;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 4px 6px;
}
.hero-cyber-nav-item:hover {
  color: #c084fc;
  transform: scale(1.1);
}
.hero-cyber-nav-item.is-active {
  color: #a855f7;
  text-shadow: 0 0 14px rgba(168, 85, 247, 0.8);
}
.hero-cyber-nav-line {
  width: 2.5px;
  height: 24px;
  background: #1e293b;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.hero-cyber-nav-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #a855f7 0%, #0052ff 100%);
  box-shadow: 0 0 10px #a855f7;
  transition: height 0.1s linear;
}
.hero-cyber-nav-item.is-active .hero-cyber-nav-line {
  height: 32px;
  background: rgba(168, 85, 247, 0.2);
}
.hero-cyber-nav-item.is-active .hero-cyber-nav-line::after {
  animation: cyberNavTimer 6.5s linear forwards;
}
@keyframes cyberNavTimer {
  0% { height: 0%; }
  100% { height: 100%; }
}

/* Side Navigation Arrows (< >) */
.hero-cyber-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cyber-arrow-btn:hover {
  background: #7c3aed;
  border-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.8), 0 0 10px #0052ff;
  transform: translateY(-50%) scale(1.12);
}
.hero-cyber-arrow-btn.prev-btn { left: 16px; }
.hero-cyber-arrow-btn.next-btn { right: 16px; }

/* 2. Slide Carousel Wrapper */
.hero-cyber-carousel-track {
  position: relative;
  z-index: 10;
  width: 100%;
}
.hero-cyber-slide {
  display: none;
  opacity: 0;
}
.hero-cyber-slide.is-active {
  display: block;
  opacity: 1;
}

/* Choreographed Slow-Motion Cinematic Shutter Drop Entrance on Slide Transition */
.hero-cyber-slide.is-active .hero-cyber-left-content {
  animation: cyberShutterDropSlowMo 1.35s cubic-bezier(0.19, 1, 0.22, 1) 0.05s both;
}
.hero-cyber-slide.is-active .hero-cyber-eyebrow {
  animation: cyberShutterItemSlowMo 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.05s both;
}
.hero-cyber-slide.is-active .hero-cyber-heading {
  animation: cyberShutterItemSlowMo 1.28s cubic-bezier(0.19, 1, 0.22, 1) 0.12s both;
}
.hero-cyber-slide.is-active .hero-cyber-desc {
  animation: cyberShutterItemSlowMo 1.35s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
}
.hero-cyber-slide.is-active .hero-cyber-actions {
  animation: cyberShutterItemSlowMo 1.4s cubic-bezier(0.19, 1, 0.22, 1) 0.28s both;
}
.hero-cyber-slide.is-active .hero-cyber-3d-visual-wrap {
  animation: cyberStageEnter 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.15s both;
}
.hero-cyber-slide.is-active .badge-pos-top-left {
  animation: badgePopIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both, badgeFloat1 4s ease-in-out infinite 1s alternate;
}
.hero-cyber-slide.is-active .badge-pos-bottom-left {
  animation: badgePopIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.4s both, badgeFloat2 4.5s ease-in-out infinite 1.1s alternate;
}
.hero-cyber-slide.is-active .badge-pos-top-right {
  animation: badgePopIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.5s both, badgeFloat2 4.2s ease-in-out infinite 1.2s alternate;
}
.hero-cyber-slide.is-active .badge-pos-bottom-right {
  animation: badgePopIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both, badgeFloat1 4.8s ease-in-out infinite 1.3s alternate;
}

@keyframes cyberShutterDropSlowMo {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cyberShutterItemSlowMo {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  60% {
    opacity: 0.95;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cyberStageEnter {
  0% { opacity: 0; transform: perspective(1000px) rotateY(8deg) scale(0.88); }
  100% { opacity: 1; transform: perspective(1000px) rotateY(0deg) scale(1); }
}
@keyframes badgePopIn {
  0% { opacity: 0; transform: scale(0.4) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Glowing Rotating Concentric Neon Orbital Ring Backdrop behind Text */
.hero-cyber-text-backdrop-ring {
  position: absolute;
  top: 44%;
  left: 0px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 50px rgba(124, 58, 237, 0.2), inset 0 0 40px rgba(0, 82, 255, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: textRingRotate 22s linear infinite;
}
.hero-cyber-text-backdrop-ring::after {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 50%;
  border: 1px dashed rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
  animation: textRingRotateRev 16s linear infinite;
}
.hero-cyber-text-backdrop-ring::before {
  content: "";
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(0, 82, 255, 0.1) 50%, transparent 70%);
  filter: blur(30px);
}
@keyframes textRingRotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}
@keyframes textRingRotateRev {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Left Typography & Content - Aligned at top in line with 3D stage */
.hero-cyber-left-content {
  position: relative;
  z-index: 5;
  margin-top: -15px;
}
.hero-cyber-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-cyber-eyebrow::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, transparent);
}

.hero-cyber-heading {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.15rem, 3.1vw, 3.05rem);
  font-weight: 800;
  line-height: 1.22;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-cyber-gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.4));
}

.hero-cyber-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 530px;
  margin-bottom: 22px;
}

/* Button Group */
.hero-cyber-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-cyber-primary {
  background: linear-gradient(135deg, #0052ff 0%, #7c3aed 100%);
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.btn-cyber-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}
.btn-cyber-primary:hover::before {
  left: 100%;
}
.btn-cyber-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.75), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-cyber-video {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  font-family: 'Roboto', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.btn-cyber-video:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}
.btn-cyber-video i {
  color: #a855f7;
  font-size: 1.05rem;
}

/* 3. Right 3D Cybernetic Stage (Concentric Pedestal + Stage Image + 4 Floating Badges) */
.hero-cyber-3d-stage {
  perspective: 1200px;
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Multi-Tier Glowing Cybernetic Disc Base */
.hero-cyber-pedestal-wrap {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 150px;
  pointer-events: none;
  z-index: 1;
}
.hero-cyber-pedestal-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(0, 82, 255, 0.45);
  box-shadow: 0 0 40px rgba(0, 82, 255, 0.7), inset 0 0 30px rgba(124, 58, 237, 0.6);
  background: radial-gradient(ellipse at center, rgba(16, 24, 60, 0.8) 0%, rgba(5, 8, 22, 0.9) 70%, transparent 100%);
  transform: rotateX(65deg);
}
.hero-cyber-pedestal-inner {
  position: absolute;
  inset: 18px 28px;
  border-radius: 50%;
  border: 1.8px solid rgba(168, 85, 247, 0.85);
  box-shadow: 0 0 26px #a855f7, inset 0 0 20px #0052ff;
  transform: rotateX(65deg);
  animation: pedestalRotate 12s linear infinite;
}
@keyframes pedestalRotate {
  0% { transform: rotateX(65deg) rotate(0deg); }
  100% { transform: rotateX(65deg) rotate(360deg); }
}

/* Center 3D Stage Visual Wrap (Fitting All Images Completely Without Any Clipping) */
.hero-cyber-3d-visual-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px 0;
  box-sizing: border-box;
}
.hero-cyber-stage-img {
  max-width: 100%;
  max-height: 345px;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: visualSineHover 4.5s ease-in-out infinite alternate;
  display: block;
  margin: 0 auto;
}
@keyframes visualSineHover {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(0.8deg); }
}

/* 4 Floating Hologram Glass Badges with Shimmer Border */
.hero-cyber-float-badge {
  position: absolute;
  background: rgba(15, 23, 55, 0.85);
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  border-radius: 12px;
  padding: 9px 15px;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), 0 0 16px rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-cyber-float-badge:hover {
  transform: scale(1.1) translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6), 0 10px 30px rgba(0, 0, 0, 0.6);
}
.hero-cyber-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.hero-cyber-badge-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.hero-cyber-badge-sub {
  font-size: 0.68rem;
  color: #94a3b8;
}

/* Positioning 4 Badges */
.badge-pos-top-left {
  top: 2%;
  left: 0px;
}
.badge-pos-bottom-left {
  bottom: 10%;
  left: 5px;
}
.badge-pos-top-right {
  top: 4%;
  right: 0px;
}
.badge-pos-bottom-right {
  bottom: 8%;
  right: 5px;
}

/* ==========================================================================
   HERO SLIDER TRUST CHIPS (Dark & Light Mode)
   ========================================================================== */
.hero-cyber-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}
.hero-trust-pill i {
  color: #38bdf8;
  font-size: 0.85rem;
}
.hero-trust-pill:hover {
  border-color: #a855f7;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SLIDER THEME TOGGLE SWITCH (Floating Pill Switcher)
   ========================================================================== */
.hero-theme-toggle-wrap {
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 30;
}
.hero-theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 30px;
  color: #f1f5f9;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-theme-toggle-btn:hover {
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
}
.hero-theme-toggle-btn i {
  font-size: 0.95rem;
  color: #fbbf24;
  transition: transform 0.3s ease;
}
.hero-theme-toggle-btn:hover i {
  transform: rotate(20deg);
}

/* ==========================================================================
   ULTRA-PREMIUM LIGHT EXECUTIVE EDITION (.hero-cyber-stage-section.theme-light)
   ========================================================================== */
.hero-cyber-stage-section.theme-light {
  background-color: #f8fafc !important;
  background-image: url("../img/slider/silde-bg.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #0f172a !important;
  border-bottom: 1px solid rgba(0, 82, 255, 0.12);
}

.hero-cyber-stage-section.theme-light .hero-cyber-ambient-flare {
  background: transparent !important;
  filter: none !important;
  display: none !important;
}

.hero-cyber-stage-section.theme-light .hero-theme-toggle-btn {
  background: rgba(255, 255, 255, 0.92);
  border-color: #cbd5e1;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0, 20, 60, 0.08);
}
.hero-cyber-stage-section.theme-light .hero-theme-toggle-btn:hover {
  border-color: #0052ff;
  box-shadow: 0 6px 22px rgba(0, 82, 255, 0.2);
}
.hero-cyber-stage-section.theme-light .hero-theme-toggle-btn i {
  color: #0052ff;
}

.hero-cyber-stage-section.theme-light .hero-cyber-eyebrow {
  color: #475569 !important;
  letter-spacing: 2px;
}
.hero-cyber-stage-section.theme-light .hero-cyber-eyebrow::after {
  background: linear-gradient(90deg, #0052ff, transparent) !important;
}

.hero-cyber-stage-section.theme-light .hero-cyber-heading {
  color: #09132c !important;
  letter-spacing: -0.5px;
}

.hero-cyber-stage-section.theme-light .hero-cyber-gradient-text,
.hero-cyber-stage-section.theme-light .hero-cyber-heading span {
  color: #0042BF !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #0042BF !important;
  filter: none !important;
}

.hero-cyber-stage-section.theme-light .hero-cyber-desc {
  color: #334155 !important;
  font-size: 1.05rem;
}

.hero-cyber-stage-section.theme-light .hero-trust-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 82, 255, 0.18);
  color: #334155;
  box-shadow: 0 3px 10px rgba(0, 30, 90, 0.05);
}
.hero-cyber-stage-section.theme-light .hero-trust-pill i {
  color: #0052ff;
}
.hero-cyber-stage-section.theme-light .hero-trust-pill:hover {
  border-color: #0052ff;
  background: #ffffff;
  color: #0052ff;
}

.hero-cyber-stage-section.theme-light .btn-cyber-primary {
  background: linear-gradient(135deg, #0052ff 0%, #4338ca 100%);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(0, 82, 255, 0.35);
}
.hero-cyber-stage-section.theme-light .btn-cyber-primary:hover {
  box-shadow: 0 14px 32px rgba(0, 82, 255, 0.5);
  transform: translateY(-2px);
}

.hero-cyber-stage-section.theme-light .btn-cyber-video {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 4px 14px rgba(0, 20, 60, 0.06) !important;
}
.hero-cyber-stage-section.theme-light .btn-cyber-video:hover {
  background: #f1f5f9 !important;
  border-color: #0052ff !important;
  color: #0052ff !important;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.16) !important;
}

.hero-cyber-stage-section.theme-light .hero-cyber-text-backdrop-ring {
  border-color: rgba(0, 82, 255, 0.16) !important;
  box-shadow: 0 0 60px rgba(0, 82, 255, 0.08), inset 0 0 45px rgba(99, 102, 241, 0.06) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-text-backdrop-ring::after {
  border-color: rgba(0, 82, 255, 0.24) !important;
  box-shadow: 0 0 30px rgba(0, 82, 255, 0.08) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-text-backdrop-ring::before {
  background: radial-gradient(circle, rgba(0, 82, 255, 0.1) 0%, rgba(99, 102, 241, 0.04) 55%, transparent 70%) !important;
}

.hero-cyber-stage-section.theme-light .hero-cyber-nav-item {
  color: #94a3b8 !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-nav-item.is-active {
  color: #0052ff !important;
  text-shadow: none !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-nav-line {
  background: #e2e8f0 !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-nav-item.is-active .hero-cyber-nav-line {
  background: rgba(0, 82, 255, 0.2) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-nav-item.is-active .hero-cyber-nav-line::after {
  background: linear-gradient(180deg, #0052ff 0%, #6366f1 100%) !important;
  box-shadow: 0 0 10px #0052ff !important;
}

.hero-cyber-stage-section.theme-light .hero-cyber-arrow-btn {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #0f172a !important;
  box-shadow: 0 6px 20px rgba(0, 20, 60, 0.1) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-arrow-btn:hover {
  background: #0052ff !important;
  border-color: #0052ff !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(0, 82, 255, 0.4) !important;
}

/* Light Theme Crystal 3D Pedestal */
.hero-cyber-stage-section.theme-light .hero-cyber-pedestal-outer {
  border: 2px solid rgba(0, 82, 255, 0.26) !important;
  box-shadow: 0 25px 60px rgba(0, 60, 160, 0.12), inset 0 0 35px rgba(0, 82, 255, 0.08) !important;
  background: radial-gradient(ellipse at center, rgba(235, 245, 255, 0.95) 0%, rgba(243, 248, 255, 0.85) 65%, transparent 100%) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-pedestal-inner {
  border: 1.5px dashed rgba(0, 82, 255, 0.45) !important;
  box-shadow: 0 0 25px rgba(0, 82, 255, 0.25), inset 0 0 18px rgba(99, 102, 241, 0.15) !important;
}

/* Light Theme Floating Hologram Badges */
.hero-cyber-stage-section.theme-light .hero-cyber-float-badge {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1.5px solid rgba(0, 82, 255, 0.18) !important;
  box-shadow: 0 14px 35px rgba(0, 30, 90, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-float-badge:hover {
  border-color: #0052ff !important;
  box-shadow: 0 16px 40px rgba(0, 82, 255, 0.2) !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-badge-lbl {
  color: #09132c !important;
}
.hero-cyber-stage-section.theme-light .hero-cyber-badge-sub {
  color: #64748b !important;
}

/* ==========================================================================
   MOBILE VIEW COMPACT BUTTON UNIFICATION (Matches Card Button Size)
   ========================================================================== */
@media (max-width: 768px) {
  .btn-quote,
  .btn-primary,
  .btn-brand,
  .btn-primary-brand,
  .btn-main,
  .btn-theme,
  .btn-more-about,
  .btn-view-all,
  .btn-explore-all-projects,
  .btn-cyber-primary,
  .btn-cyber-video,
  .btn-hero-ecom-cta,
  .btn-contact-submit,
  .btn-submit-quote,
  .btn-soft-hero-primary,
  .btn-soft-hero-whatsapp,
  .btn-hero-explore,
  .btn-hero-contact,
  .btn-hero-primary,
  .btn-hero-glass {
    min-height: 34px !important;
    height: auto !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    gap: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.25 !important;
    overflow: visible !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .btn-quote i,
  .btn-primary i,
  .btn-more-about i,
  .btn-view-all i,
  .btn-explore-all-projects i,
  .btn-cyber-primary i,
  .btn-cyber-video i,
  .btn-hero-primary i,
  .btn-hero-glass i {
    font-size: 12px !important;
    flex-shrink: 0;
  }

  .drawer-action-buttons-wrap {
    margin-top: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 25px !important;
  }

  .drawer-btn-whatsapp,
  .drawer-btn-support {
    min-height: 34px !important;
    height: auto !important;
    padding: 7px 10px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    gap: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .drawer-btn-whatsapp i,
  .drawer-btn-support i {
    font-size: 13px !important;
    flex-shrink: 0;
  }

  .hero-buttons,
  .hero-cyber-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 8px !important;
    margin-bottom: 14px !important;
  }
}




/* ==========================================================================
   GLOBAL UNIFIED 2-COLOR HEADING & TYPOGRAPHY THEME (HIGH-CONTRAST MASTER)
   Ensures 100% Crystal-Clear Visibility on BOTH Dark and Light Backgrounds
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif;
  letter-spacing: -0.3px;
}

/* --------------------------------------------------------------------------
   1. LIGHT BACKGROUND HEADINGS (Default High-Contrast Slate + Royal Blue)
   -------------------------------------------------------------------------- */
.section-title,
.about-heading,
.about-hero-title,
.page-section-title {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #0f172a;
}

/* Light Background 2nd Color: Electric Royal Blue (Logo Primary) */
.section-title span,
.section-title .gradient-text,
.section-title strong,
.about-heading span,
.about-heading .hero-teal-gradient-text,
.about-hero-title span,
.about-hero-title .hero-teal-gradient-text,
.page-section-title span,
.touch-section-heading span,
.form-title-lead span,
.light-heading-highlight {
  color: #0052ff;
  background: linear-gradient(135deg, #0052ff 0%, #0088ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

/* Light Background Underline Accent Bar */
.section-title.with-underline::after,
.about-heading.with-underline::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #0052ff, #00d2ff);
  border-radius: 3px;
  margin: 10px auto 0;
}

/* --------------------------------------------------------------------------
   2. UNIFIED HERO SECTION & DARK BACKGROUND HEADINGS (All Pages)
   Ultra-High Contrast: Pure White (#ffffff) + Logo Electric Cyan (#00d2ff / #38bdf8)
   -------------------------------------------------------------------------- */
.hero-cyber-heading,
.soft-hero-title,
.about-hero-title,
.services-hero-title,
.career-hero-title,
.contact-hero-title,
.port-hero-title,
.portfolio-hero-title,
.pricing-main-title,
.blog-hero-title,
.blog-detail-title,
.training-hero-title,
.course-hero-title-lead,
.faq-hero-title,
.quote-hero-title,
.privacy-hero-title,
.terms-hero-title,
.pay-hero-title,
.page-hero-title,
.curriculum-section-title-dark,
.course-dark-section .section-title,
.course-dark-roles-section .section-title,
.dark-section .section-title,
.bg-dark .section-title,
.section-dark .section-title,
[class*="dark-section"] .section-title,
[class*="dark-roles"] .section-title,
.course-dark-section h2,
.course-dark-roles-section h2,
.cta-section h2 {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif !important;
  color: #ffffff !important;
  font-size: clamp(24px, 3.4vw, 38px) !important;
  font-weight: 700 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.4px !important;
  margin-bottom: 12px !important;
}

/* Dark Background 2nd Color: Ultra-Vibrant Electric Cyan (Logo Secondary - 100% Visible Glow) */
.hero-cyber-heading span,
.hero-cyber-heading .hero-cyber-gradient-text,
.hero-cyber-gradient-text,
.soft-hero-title span,
.soft-hero-title .gradient-text,
.services-hero-title span,
.services-hero-title .text-gradient-cyan,
.services-hero-title .gradient-text,
.career-hero-title span,
.career-hero-title .gradient-text,
.contact-hero-title span,
.contact-hero-title .gradient-text,
.port-hero-title span,
.port-hero-title .gradient-text,
.portfolio-hero-title span,
.portfolio-hero-title .gradient-text,
.pricing-main-title span,
.pricing-main-title .gradient-text,
.blog-hero-title span,
.blog-hero-title .gradient-text,
.blog-detail-title span,
.training-hero-title span,
.training-hero-title .gradient-text,
.course-hero-title-lead span,
.course-hero-title-lead .gradient-text,
.faq-hero-title span,
.faq-hero-title .gradient-text,
.quote-hero-title span,
.quote-hero-title .gradient-text,
.privacy-hero-title span,
.privacy-hero-title .gradient-text,
.terms-hero-title span,
.terms-hero-title .gradient-text,
.pay-hero-title span,
.pay-hero-title .gt,
.pay-hero-title .gradient-text,
.page-hero-title span,
.page-hero-title .gradient-text,
.curriculum-section-title-dark span,
.course-dark-section .section-title span,
.course-dark-roles-section .section-title span,
.dark-section .section-title span,
.bg-dark .section-title span,
.section-dark .section-title span,
[class*="dark-section"] .section-title span,
[class*="dark-roles"] .section-title span,
.course-dark-section h2 span,
.course-dark-roles-section h2 span,
.cta-section h2 span,
.dark-heading-highlight,
.text-gradient-cyan {
  color: #00d2ff !important;
  background: linear-gradient(135deg, #38bdf8 0%, #00d2ff 50%, #80e5ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  font-weight: 700 !important;
  text-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Dark Background Underline Accent Bar */
.curriculum-section-title-dark.with-underline::after,
.course-dark-section .section-title.with-underline::after,
.dark-section .section-title.with-underline::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, #00d2ff, #38bdf8) !important;
  border-radius: 3px;
  margin: 10px auto 0;
}

/* --------------------------------------------------------------------------
   3. UNIVERSAL HERO & SECTION EYEBROWS & SUBTITLES
   -------------------------------------------------------------------------- */
.hero-cyber-eyebrow,
.soft-eyebrow-pill,
.about-hero-eyebrow-text,
.about-eyebrow,
.services-badge-pill,
.career-eyebrow-pill,
.contact-hero-pill,
.contact-eyebrow-pill,
.port-eyebrow-pill,
.pricing-eyebrow-pill,
.blog-eyebrow-pill,
.training-eyebrow-pill,
.course-eyebrow-pill,
.faq-hero-pill,
.quote-hero-pill,
.privacy-hero-pill,
.terms-hero-pill,
.pay-hero-pill,
.section-eyebrow,
.eyebrow-dark {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #38bdf8 !important;
  background: rgba(56, 189, 248, 0.12) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  padding: 4px 14px !important;
  border-radius: 30px !important;
  margin-bottom: 12px;
  backdrop-filter: blur(8px) !important;
}

/* Service Number Badge & Section Eyebrow Alignment - Perfectly Centered & Inline ("Samne-Samne") */
.service-num-badge {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  background: var(--primary-blue, #0052ff);
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

.service-num-badge[style*="#00d2ff"],
.service-num-badge[style*="00d2ff"] {
  background: #00d2ff !important;
  color: #07132b !important;
}

.service-num-badge + .section-eyebrow,
.service-num-badge + .eyebrow-dark,
.d-flex > .section-eyebrow,
.d-flex > .eyebrow-dark,
.section-eyebrow.mb-0,
.eyebrow-dark.mb-0,
.soft-eyebrow-pill.mb-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  min-height: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 14px !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}

.hero-cyber-desc,
.soft-hero-desc,
.about-hero-desc,
.services-hero-desc,
.services-hero-content p,
.career-hero-subtitle,
.contact-hero-subtitle,
.port-hero-subtitle,
.pricing-main-subtitle,
.blog-hero-subtitle,
.training-hero-subtitle,
.course-hero-desc-lead,
.faq-hero-desc,
.quote-hero-desc,
.privacy-hero-desc,
.terms-hero-desc,
.pay-hero-desc,
.curriculum-section-subtitle-dark,
.form-subtitle-lead {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #cbd5e1 !important;
  margin-bottom: 22px !important;
  max-width: 620px;
}

/* All Light Theme Section Subtitles (Exact #000 color requested) */
.tech-stack-section .section-subtitle,
.choose-section .section-subtitle,
.pricing-section .section-subtitle,
.about-section .section-subtitle,
.about-section .about-text,
.why-boffin-light-section .section-subtitle,
.soft-faq-section .section-subtitle,
.story-exact-subtitle,
.light-section .section-subtitle,
.bg-light .section-subtitle,
.bg-white .section-subtitle,
.section-subtitle:not(.process-section .section-subtitle):not(.services-section-wrapper .section-subtitle):not(.testimonials-section .section-subtitle):not(.soft-portfolio-dark-section .section-subtitle):not(.curriculum-section-subtitle-dark):not([class*="dark"] .section-subtitle) {
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  color: #000000 !important;
  margin-bottom: 22px !important;
  max-width: 620px;
}

/* --------------------------------------------------------------------------
   4. MOBILE HEADING & HERO RESPONSIVENESS (< 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .hero-cyber-heading,
  .soft-hero-title,
  .about-hero-title,
  .services-hero-title,
  .career-hero-title,
  .contact-hero-title,
  .port-hero-title,
  .portfolio-hero-title,
  .pricing-main-title,
  .blog-hero-title,
  .blog-detail-title,
  .training-hero-title,
  .course-hero-title-lead,
  .faq-hero-title,
  .quote-hero-title,
  .privacy-hero-title,
  .terms-hero-title,
  .pay-hero-title,
  .page-hero-title {
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 10px !important;
  }

  .section-title,
  .about-heading,
  .curriculum-section-title-dark,
  .page-section-title,
  .touch-section-heading,
  .form-title-lead {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
  }

  .hero-cyber-desc,
  .soft-hero-desc,
  .about-hero-desc,
  .services-hero-desc,
  .services-hero-content p,
  .career-hero-subtitle,
  .contact-hero-subtitle,
  .port-hero-subtitle,
  .pricing-main-subtitle,
  .blog-hero-subtitle,
  .training-hero-subtitle,
  .course-hero-desc-lead,
  .faq-hero-desc,
  .quote-hero-desc,
  .privacy-hero-desc,
  .terms-hero-desc,
  .pay-hero-desc,
  .section-subtitle,
  .curriculum-section-subtitle-dark,
  .form-subtitle-lead {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }
}

/* ==========================================================================
   AUTHENTIC CENTERED WORKFLOW FUNNEL (Original Shape Preserved)
   ========================================================================== */
.funnel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
}

.funnel-tier-bar {
  min-height: 48px;
  height: auto;
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.funnel-tier-bar i {
  margin-right: 6px;
}

@media (max-width: 767.98px) {
  .funnel-container {
    gap: 8px;
  }
  .funnel-tier-bar {
    min-height: 40px;
    height: auto;
    padding: 6px 10px;
    font-size: 10.5px;
    line-height: 1.25;
    border-radius: 8px;
  }
  .funnel-tier-bar i {
    font-size: 12px;
    margin-right: 4px;
  }
}

/* ==========================================================================
   GLOBAL DESKTOP CARD TYPOGRAPHY UNIFICATION & HARMONIZATION (min-width: 768px)
   Standardizes all card titles (16px), descriptions (13.5px), and meta text 
   across every single page (Home, Services, Portfolio, Training, Software, etc.)
   ========================================================================== */
@media (min-width: 768px) {
  /* 1. Universal Desktop Card Titles */
  .cyber-service-title,
  .choose-card-title,
  .process-title,
  .tech-cat-title,
  .portfolio-card-title,
  .split-card-title,
  .svc-card-title,
  .soft-value-title,
  .why-card-elevated .soft-value-title,
  .soft-trust-card-title,
  .pro-title-dark,
  .pro-card-title,
  .core-card-title,
  .course-title,
  .module-title-dark,
  .role-card-title-dark,
  .job-card-title,
  .perk-card-title,
  .why-feature-title,
  .advantage-title,
  .pro-advantage-card h4,
  .channel-card-title,
  .touch-channel-card h4,
  .quote-card-title,
  .sidebar-trust-title,
  .sidebar-direct-title,
  .sidebar-widget-title,
  .ocean-card-title,
  .step-process-title,
  .roadmap-step-title,
  .capstone-title,
  .stat-glass-card-exact .stat-title,
  .faq-card-question-title,
  .trust-title,
  .card .card-title,
  .card h3,
  .card h4,
  .card h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
  }

  /* Specific Featured / Header Card Titles that deserve slightly more prominence */
  .featured-project-title,
  .pricing-plan-name,
  .cs-focus-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  /* 2. Universal Desktop Card Descriptions / Body Text */
  .cyber-service-desc,
  .choose-card-desc,
  .process-desc,
  .tech-cat-subtitle,
  .portfolio-card-desc,
  .featured-project-desc,
  .split-card-desc,
  .svc-card-desc,
  .soft-value-desc,
  .why-card-elevated .soft-value-desc,
  .soft-trust-card-desc,
  .pro-sub-dark,
  .pro-card-desc,
  .curriculum-desc-dark,
  .course-desc,
  .roadmap-step-desc,
  .capstone-desc,
  .job-card-desc,
  .perk-card-desc,
  .pricing-plan-desc,
  .plan-audience-desc,
  .ocean-card-desc,
  .channel-card-desc,
  .touch-channel-card p,
  .quote-card-subtitle,
  .cs-numbered-card-desc,
  .cs-focus-card-desc,
  .sidebar-direct-sub,
  .step-process-desc,
  .why-feature-desc,
  .advantage-desc,
  .trust-sub,
  .card .card-text,
  .card p {
    font-size: 13.5px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
  }

  /* 3. Universal Desktop Card Feature Items / Check Lists */
  .pricing-feature-item,
  .check-item,
  .soft-check-grid li,
  .soft-check-grid span,
  .ref-perk-item-compact,
  .ref-topic-item-compact,
  .sidebar-checklist li {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  /* 4. Universal Desktop Card Badges, Tags, Pills, Step Numbers & Meta */
  .choose-step-num,
  .choose-tag-pill,
  .choose-stat-pill,
  .process-step-num,
  .step-process-number,
  .tech-pill-name,
  .tech-badge-item,
  .tech-tag-pill,
  .tech-orbit-badge,
  .ring-arch-tag,
  .trust-badge-pill-dark,
  .portfolio-card-stack,
  .portfolio-badge-tag,
  .pro-tech-tag,
  .pro-cat-tech,
  .job-type-pill,
  .job-skill-chip,
  .job-exp-tag,
  .module-duration-pill-dark,
  .module-number-badge-dark,
  .cs-card-phase-pill,
  .feature-val-badge,
  .form-trust-item-pill,
  .service-num-badge,
  .trust-stat-card-tile .font-xxs,
  .trust-stat-card-tile .text-light-muted {
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  /* Hero & Card Metric Pill Labels */
  .soft-metric-box .metric-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.4px !important;
  }
  .soft-metric-box .metric-val {
    font-size: 13.5px !important;
    font-weight: 700 !important;
  }

  /* 5. Desktop Card Action Links & Buttons */
  .btn-cyber-readmore,
  .service-action-link,
  .btn-choose-cta,
  .course-filter-btn,
  .job-filter-btn {
    font-size: 13px !important;
    font-weight: 600 !important;
  }

  /* Explicit High-Contrast Colors for Light Section Elements */
  .choose-card-title {
    color: #0f172a !important;
    font-weight: 700 !important;
  }
  .choose-card-desc {
    color: #475569 !important;
    font-weight: 400 !important;
  }
  .choose-tag-pill {
    color: #0052ff !important;
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
    font-weight: 700 !important;
  }
  .choose-stat-pill {
    color: #1e293b !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    font-weight: 700 !important;
  }
  .tech-cat-title {
    color: #0f172a !important;
    font-weight: 700 !important;
  }
  .tech-cat-subtitle {
    color: #0052ff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
  }
  .tech-badge-item {
    color: #334155 !important;
    font-weight: 600 !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
  }
  .about-text {
    color: #334155 !important;
    line-height: 1.7 !important;
  }

  /* Why Businesses Choose Boffin Cards (.why-card-elevated) */
  .why-boffin-light-section {
    padding: 60px 0 50px !important;
    background: #ffffff !important;
  }
  .why-card-elevated {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 22px 18px 20px !important;
    min-height: auto !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    box-shadow: 0 4px 18px rgba(0, 20, 60, 0.04) !important;
    transition: all 0.25s ease !important;
  }
  .why-card-elevated:hover {
    transform: translateY(-4px) !important;
    border-color: #bfdbfe !important;
    box-shadow: 0 12px 30px rgba(0, 82, 255, 0.1) !important;
  }
  .why-icowrap-light {
    width: 42px !important;
    height: 42px !important;
    font-size: 19px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #eff6ff !important;
    color: #0052ff !important;
    border: 1px solid #bfdbfe !important;
  }
  html body .why-card-elevated .soft-value-title,
  .why-card-elevated .soft-value-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
  }
  html body .why-card-elevated .soft-value-desc,
  .why-card-elevated .soft-value-desc {
    font-size: 15px !important;
    line-height: 26px !important;
    color: #475569 !important;
    margin-bottom: 0 !important;
  }

  /* Sleek, Spacious & Highly Readable Contact Typography */
  .touch-section-heading {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 20px !important;
  }
  .form-title-lead {
    font-size: 21px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 8px !important;
  }
  .form-subtitle-lead {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }
  .contact-dark-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    letter-spacing: -0.3px !important;
  }
  .contact-dark-card > div > p.text-light-muted {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    margin-bottom: 28px !important;
  }
  .contact-item-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 26px !important;
  }
  .contact-item-row:last-child {
    margin-bottom: 0 !important;
  }
  .contact-dark-card h5,
  .contact-item-row h5 {
    font-size: 15.5px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.2px !important;
  }
  .contact-dark-card p,
  .contact-item-row p,
  .contact-item-row a {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #cbd5e1 !important;
    margin-bottom: 0 !important;
  }
  .quote-box h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
  }
  .channel-card-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .channel-data-list {
    font-size: 13.5px !important;
    line-height: 1.65 !important;
    color: #475569 !important;
  }
  .channel-data-list li {
    margin-bottom: 8px !important;
  }
  .channel-data-list a {
    font-size: 13.5px !important;
    font-weight: 600 !important;
  }
  .office-badge-flag {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  .office-address-text {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
  }
  .office-contacts-grid {
    font-size: 13.5px !important;
    gap: 18px !important;
    margin-bottom: 18px !important;
  }
  .field-label-custom,
  .form-label-orig {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    margin-bottom: 6px !important;
  }
  .field-input-custom,
  .form-control-orig,
  .form-select-orig {
    font-size: 13.5px !important;
    padding: 10px 14px !important;
    border-radius: 9px !important;
  }
  .phone-flag-prefix {
    font-size: 13px !important;
    padding: 10px 12px !important;
  }
  .btn-submit-message,
  .btn-send-lead {
    font-size: 14.5px !important;
    padding: 12px 28px !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
  }
  .metric-stat-num {
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 4px !important;
  }
  .metric-stat-label {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* Text Justification for Long Paragraphs & Narratives */
  .story-lead-desc,
  .story-sub-desc,
  .about-text,
  .about-desc,
  .about-lead,
  .soft-desc-exact,
  .why-boffin-desc,
  .career-desc-lead,
  .job-detail-desc,
  .course-desc-lead,
  .curriculum-desc-dark,
  .blog-content-body p,
  .blog-detail-p,
  .privacy-body p,
  .terms-body p,
  .text-justify-custom,
  .text-justify {
    text-align: justify !important;
    text-justify: inter-word !important;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM OBSIDIAN & SAPPHIRE GLASS DARK THEME ENGINE (LOGO BRAND MATCH)
   Unique tailored tech background images mapped across the entire website:
   1. Hero Slider & Mobile Cyber Hero -> hero-cyber-tech-bg.jpg
   2. Services Section & Services Hero -> services-cloud-tech-bg.jpg
   3. Working 4-Step Process -> process-pipeline-tech-bg.jpg
   4. Software & App Development Pages -> software-hero-ultra-bg.jpg
   5. Training & Course Academy Pages -> training-course-tech-bg.jpg
   6. Pricing & Packages Pages -> pricing-plans-tech-bg.jpg
   7. Career, Contact, Pay Now, Renewal & Legal -> career-contact-tech-bg.jpg
   8. Portfolio Showcase & Hero -> portfolio-tech-agency-bg.jpg
   9. About Page Why Choose & CTA -> about-why-choose-tech-bg.jpg & about-cta-tech-bg.jpg
   10. Testimonials & Brand Mesh -> dark-tech-cyber-bg.jpg
   ========================================================================== */

/* 1. HERO SLIDER (Dedicated AI & Holographic Tech Grid - Desktop Only) */
.hero-cyber-stage-section {
  background: linear-gradient(135deg, rgba(6, 14, 42, 0.72) 0%, rgba(10, 24, 68, 0.78) 50%, rgba(4, 9, 28, 0.85) 100%),
              url('../img/hero-cyber-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

.mobile-cyber-hero-section {
  background: transparent !important;
  background-image: none !important;
  color: #ffffff !important;
  position: relative;
}

/* 2. SERVICES SECTION & SERVICES HERO (Dedicated Cloud Architecture & Data Streams) */
.services-section-wrapper,
.services-hero-section {
  background: linear-gradient(180deg, rgba(6, 15, 45, 0.74) 0%, rgba(11, 28, 75, 0.80) 50%, rgba(5, 12, 36, 0.88) 100%),
              url('../img/services-cloud-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* Dedicated Scoped Styling for Services Section Cards Only */
.services-section-wrapper .cyber-service-card {
  background: linear-gradient(145deg, rgba(10, 26, 66, 0.86) 0%, rgba(5, 14, 40, 0.94) 100%) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-top: 1.5px solid rgba(0, 210, 255, 0.6) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 38px -10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 82, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  z-index: 2 !important;
}

.services-section-wrapper .cyber-service-card:hover {
  transform: translateY(-6px) !important;
  position: relative !important;
  z-index: 20 !important;
  border-color: #00d2ff !important;
  border-top-color: #38bdf8 !important;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.85), 0 0 32px rgba(0, 210, 255, 0.4), inset 0 0 14px rgba(0, 210, 255, 0.14) !important;
  background: linear-gradient(145deg, rgba(14, 34, 82, 0.92) 0%, rgba(7, 18, 50, 0.98) 100%) !important;
}

.services-section-wrapper .cyber-service-thumb-wrap {
  background: rgba(4, 12, 32, 0.75) !important;
  border: 1px solid rgba(56, 189, 248, 0.22) !important;
  border-radius: 12px !important;
}

/* 3. WORKING 4-STEP PROCESS SECTION (Dedicated Agile Workflow & Circuit Pipeline) */
.process-section {
  background: linear-gradient(180deg, rgba(5, 12, 38, 0.75) 0%, rgba(9, 22, 60, 0.82) 50%, rgba(4, 10, 30, 0.88) 100%),
              url('../img/process-pipeline-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* 4. SOFTWARE & APP DEVELOPMENT PAGES (20+ Pages: Hero, Portfolio Showcase & Tech Orbit) */
.soft-hero-ultra,
.soft-portfolio-dark-section,
.soft-tech-orbit-section,
.soft-trust-dark-section {
  background: linear-gradient(180deg, rgba(5, 14, 42, 0.76) 0%, rgba(9, 24, 68, 0.82) 50%, rgba(4, 11, 32, 0.88) 100%),
              url('../img/software-hero-ultra-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* 5. TRAINING & ACADEMY COURSE PAGES (7+ Pages: Hero, Curriculum & Roles) */
.training-hero-section,
.course-hero-ultra,
.course-dark-section,
.course-dark-roles-section,
.training-roadmap-section,
.training-cta-banner {
  background: linear-gradient(180deg, rgba(5, 13, 38, 0.78) 0%, rgba(8, 22, 62, 0.84) 50%, rgba(3, 9, 28, 0.90) 100%),
              url('../img/training-course-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* 6. PRICING & PACKAGES PAGES (Hero, Custom Quote CTA & Tier Cards) */
.pricing-hero-header,
.pricing-custom-cta {
  background: linear-gradient(180deg, rgba(4, 12, 34, 0.76) 0%, rgba(8, 20, 56, 0.82) 50%, rgba(3, 8, 26, 0.90) 100%),
              url('../img/pricing-plans-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* 7. CAREER, CONTACT, GET A QUOTE, PAY NOW, RENEWAL & LEGAL PAGES */
.career-hero-ultra,
.career-dark-roles-section,
.contact-hero-header,
.pay-hero,
.privacy-hero-ultra,
.terms-hero-ultra,
.renewal-hero,
.renewal-hero-ultra,
.cs-hero-stage-split {
  background: linear-gradient(180deg, rgba(5, 14, 40, 0.78) 0%, rgba(9, 25, 68, 0.84) 50%, rgba(3, 10, 30, 0.90) 100%),
              url('../img/career-contact-tech-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* 8. TESTIMONIALS & BRAND MESH SECTIONS */
.testimonials-section,
.brand-ticker-section,
.dark-section,
.bg-dark,
[class*="dark-section"],
[class*="dark-roles"] {
  background: linear-gradient(180deg, rgba(5, 14, 40, 0.78) 0%, rgba(9, 24, 65, 0.84) 50%, rgba(4, 11, 32, 0.90) 100%),
              url('../img/dark-tech-cyber-bg.jpg') center center/cover no-repeat !important;
  color: #ffffff !important;
  position: relative;
}

/* Subtle Ambient Aurora Light Flares behind Content */
.hero-cyber-stage-section::before,
.services-section-wrapper::before,
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 82, 255, 0.22) 0%, transparent 55%),
              radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.16) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* 2. Frosted Glassmorphic Dark Cards (Luminous Highlights, Rich Navy Surface) */
.cyber-service-card,
.process-card,
.pro-card-dark,
.contact-dark-card,
.curriculum-module-card-dark,
.career-role-card-dark,
.why-choose-glass-card,
.testimonials-section .app-testimonial-card {
  background: linear-gradient(145deg, rgb(21 37 70) 0%, rgb(0 63 196) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(56, 189, 248, 0.22) !important;
  border-top: 1.5px solid rgba(255, 255, 255, 0.24) !important;
  border-radius: 16px !important;
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Top Glass Shimmer Line */
.cyber-service-card::before,
.process-card::before,
.pro-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #0052ff, transparent);
  transition: left 0.6s ease;
  z-index: 2;
}

/* Hover Physics - Elevated Luminous Micro-Glow */
.cyber-service-card:hover,
.process-card:hover,
.pro-card-dark:hover,
.contact-dark-card:hover,
.curriculum-module-card-dark:hover,
.career-role-card-dark:hover,
.why-choose-glass-card:hover,
.testimonials-section .app-testimonial-card:hover {
  transform: translateY(-6px) !important;
  position: relative !important;
  z-index: 20 !important;
  border-color: rgba(56, 189, 248, 0.75) !important;
  border-top-color: #38bdf8 !important;
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.8),
              0 0 32px rgba(0, 82, 255, 0.4),
              0 0 16px rgba(56, 189, 248, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.cyber-service-card:hover::before,
.process-card:hover::before,
.pro-card-dark:hover::before {
  left: 100%;
}

/* 3. High-Tech Glass Badges & Glowing Icon Circles */
.cyber-service-icon-badge,
.process-icon-box,
.soft-trust-card-icon,
.role-icon-box-dark,
.tech-orbit-badge {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.32) 0%, rgba(56, 189, 248, 0.2) 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #38bdf8 !important;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease !important;
}

.cyber-service-card:hover .cyber-service-icon-badge,
.process-card:hover .process-icon-box {
  background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.7) !important;
  transform: scale(1.08) !important;
}

/* 4. Luxury Pill Eyebrows on Dark Backgrounds */
.process-section .section-eyebrow,
.section-eyebrow.eyebrow-dark,
.contact-eyebrow-pill,
.curriculum-section-title-dark .section-eyebrow,
.course-eyebrow-pill {
  background: rgba(0, 82, 255, 0.2) !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  color: #38bdf8 !important;
  box-shadow: 0 0 20px rgba(0, 82, 255, 0.3) !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 5px 14px !important;
  border-radius: 30px !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* 5. 3-Tier Crystal-Clear Typography on Dark */
.dark-section h1, .dark-section h2, .dark-section h3,
.dark-section h4, .dark-section h5, .dark-section h6,
.hero-cyber-heading, .page-hero-title,
.process-section .section-title,
.services-section-wrapper .section-title,
.testimonials-section .section-title,
.soft-portfolio-dark-section .section-title,
.curriculum-section-title-dark {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6) !important;
}

/* Electric Cyan Logo Highlight Accent */
.hero-cyber-heading span,
.page-hero-title span,
.process-section .section-title span,
.services-section-wrapper .section-title span,
.testimonials-section .section-title span,
.soft-portfolio-dark-section .section-title span,
.curriculum-section-title-dark span,
.hero-cyber-gradient-text,
.text-gradient-cyan,
.dark-heading-highlight {
  color: #38bdf8 !important;
  background: linear-gradient(135deg, #38bdf8 0%, #00d2ff 45%, #60a5fa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  font-weight: 700 !important;
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.4) !important;
}

/* High Contrast Accent on Light Sections (Index & Inner Pages) */
.choose-section .text-gradient-cyan,
.choose-section .section-title span,
.tech-stack-section .section-title span,
.about-section .about-heading span,
.pricing-section .section-title span {
  color: #0052ff !important;
  background: linear-gradient(135deg, #0052ff 0%, #0077ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
  text-shadow: none !important;
  font-weight: 800 !important;
}

/* Dark Section Subtitles & Card Descriptions */
.process-section .section-subtitle,
.services-section-wrapper .section-subtitle,
.testimonials-section .section-subtitle,
.soft-portfolio-dark-section .section-subtitle,
.curriculum-section-subtitle-dark,
.cyber-service-desc,
.process-desc,
.curriculum-desc-dark {
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
}

/* Global Premium Hero Action Buttons (Solid Blue & WhatsApp Green) */
.btn-soft-hero-primary {
  background: #0052ff !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  padding: 11px 24px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.4) !important;
  transition: all 0.3s ease !important;
  border: none !important;
}

.btn-soft-hero-primary:hover {
  background: #003ec7 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(0, 82, 255, 0.55) !important;
}

.btn-soft-hero-whatsapp {
  background: rgba(37, 211, 102, 0.14) !important;
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  border-radius: 30px !important;
  border: 1.5px solid #25d366 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25) !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px) !important;
}
.btn-soft-hero-whatsapp i {
  color: #25d366 !important;
  font-size: 16px !important;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6)) !important;
}
.btn-soft-hero-whatsapp:hover {
  background: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45) !important;
}
.btn-soft-hero-whatsapp:hover i {
  color: #ffffff !important;
  filter: none !important;
}

/* 6. High-Tech Tech Orbit Center Piece */
.tech-orbit-center {
  background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%) !important;
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.4) !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
}

/* 7. Action Buttons on Dark Sections */
.btn-cyber-primary,
.btn-cyber-readmore,
.btn-submit-message {
  background: linear-gradient(135deg, #0052ff 0%, #0066ff 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(0, 82, 255, 0.45) !important;
  transition: all 0.25s ease !important;
}

.btn-cyber-primary:hover,
.btn-cyber-readmore:hover,
.btn-submit-message:hover {
  background: linear-gradient(135deg, #003ec7 0%, #0052ff 100%) !important;
  box-shadow: 0 6px 24px rgba(0, 82, 255, 0.6), 0 0 18px rgba(56, 189, 248, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   PORTFOLIO FILTER TABS (Desktop Layout & Sleek Mobile Horizontal Swipe Scroll)
   ========================================================================== */
.portfolio-filter-tabs-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 0 auto 30px !important;
  padding: 4px 6px !important;
  position: relative !important;
  z-index: 5 !important;
}

.portfolio-tab-pill {
  background: rgba(8, 22, 54, 0.75) !important;
  color: #cbd5e1 !important;
  border: 1.5px solid rgba(56, 189, 248, 0.28) !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  cursor: pointer !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

.portfolio-tab-pill:hover {
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  background: rgba(0, 82, 255, 0.25) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.4) !important;
}

.portfolio-tab-pill.active {
  background: linear-gradient(135deg, #0052ff 0%, #00d2ff 100%) !important;
  color: #ffffff !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.03) !important;
}

.portfolio-tab-pill i {
  font-size: 14px !important;
}

/* Mobile & Tablet Horizontal Touch Scroll */
@media (max-width: 991.98px) {
  .portfolio-filter-tabs-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    gap: 8px !important;
    padding: 6px 12px 14px !important;
    margin: 0 -12px 18px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .portfolio-filter-tabs-wrap::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .portfolio-tab-pill {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    scroll-snap-align: start !important;
    font-size: 11.5px !important;
    padding: 7px 14px !important;
    border-radius: 20px !important;
    gap: 5px !important;
  }

  .portfolio-tab-pill i {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   ULTRA-MODERN 3D PORTFOLIO SHOWCASE GRID (Clean Cyber Glass Architecture)
   ========================================================================== */
.portfolio-card-luxury,
.portfolio-section .portfolio-card-luxury {
  background: linear-gradient(145deg, rgba(8, 22, 54, 0.92) 0%, rgba(4, 12, 34, 0.98) 100%) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-top: 1.5px solid rgba(0, 210, 255, 0.6) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  box-shadow: 0 14px 38px -10px rgba(0, 0, 0, 0.75), 0 0 20px rgba(0, 82, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
}

.portfolio-card-luxury:hover,
.portfolio-section .portfolio-card-luxury:hover {
  transform: translateY(-6px) !important;
  border-color: #00d2ff !important;
  border-top-color: #38bdf8 !important;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.85), 0 0 32px rgba(0, 210, 255, 0.4), inset 0 0 14px rgba(0, 210, 255, 0.14) !important;
  background: linear-gradient(145deg, rgba(14, 34, 82, 0.94) 0%, rgba(7, 18, 50, 0.98) 100%) !important;
}

.portfolio-card-thumb-frame {
  position: relative !important;
  height: 155px !important;
  background: rgba(3, 10, 28, 0.95) !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2) !important;
}

.portfolio-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.portfolio-card-luxury:hover .portfolio-card-img {
  transform: scale(1.06) !important;
}

.portfolio-floating-pill {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  background: rgba(4, 16, 44, 0.9) !important;
  border: 1px solid rgba(56, 189, 248, 0.55) !important;
  color: #38bdf8 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 10px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.portfolio-card-body-luxury {
  padding: 16px 14px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

.project-tag-industry {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  color: #00d2ff !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

.portfolio-project-title-lux {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 6px !important;
}

.portfolio-project-title-lux a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.portfolio-card-luxury:hover .portfolio-project-title-lux a {
  color: #38bdf8 !important;
}

.portfolio-project-desc-lux {
  font-size: 12.5px !important;
  color: #cbd5e1 !important;
  line-height: 1.45 !important;
  margin-bottom: 10px !important;
}

.portfolio-tech-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
  margin-bottom: 12px !important;
}

.tech-pill-badge {
  font-size: 10.5px !important;
  font-weight: 600 !important;
  color: #e0f2fe !important;
  background: rgba(0, 82, 255, 0.16) !important;
  border: 1px solid rgba(56, 189, 248, 0.28) !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
}

.portfolio-card-action-footer {
  margin-top: auto !important;
  padding-top: 6px !important;
  width: 100% !important;
}

.btn-portfolio-view {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  background: linear-gradient(135deg, #0052ff 0%, #0066ff 100%) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 7px 14px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35) !important;
  transition: all 0.25s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

.btn-portfolio-view:hover {
  background: linear-gradient(135deg, #003ec7 0%, #0052ff 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.55) !important;
}

/* Mobile 2-Column Exact Tuning */
@media (max-width: 767.98px) {
  .portfolio-card-luxury,
  .portfolio-section .portfolio-card-luxury {
    padding: 10px 9px 10px !important;
    border-radius: 14px !important;
  }
  .portfolio-card-thumb-frame,
  .portfolio-section .portfolio-card-thumb-frame {
    height: 70px !important;
    max-height: 70px !important;
    border-radius: 8px !important;
    margin-bottom: 7px !important;
    border-bottom: none !important;
  }
  .portfolio-floating-pill,
  .portfolio-badge-tag {
    display: none !important;
  }
  .portfolio-card-body-luxury,
  .portfolio-section .portfolio-card-body-luxury {
    padding: 0 !important;
  }
  .project-tag-industry,
  .portfolio-section .project-tag-industry {
    font-size: 8px !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.4px !important;
  }
  .portfolio-project-title-lux,
  .portfolio-section .portfolio-project-title-lux {
    font-size: 12px !important;
    line-height: 1.25 !important;
    margin-bottom: 3px !important;
    font-weight: 700 !important;
  }
  .portfolio-project-desc-lux,
  .portfolio-section .portfolio-project-desc-lux {
    display: none !important;
  }
  .portfolio-tech-strip,
  .portfolio-section .portfolio-tech-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 3px !important;
    margin-bottom: 7px !important;
  }
  .tech-pill-badge,
  .portfolio-section .tech-pill-badge {
    font-size: 8px !important;
    padding: 1px 4px !important;
    border-radius: 4px !important;
  }
  .btn-portfolio-view,
  .portfolio-section .btn-portfolio-view {
    font-size: 10.5px !important;
    padding: 5px 8px !important;
    border-radius: 8px !important;
  }
}

/* ==========================================================================
   GLOBAL UNIVERSAL TYPOGRAPHY: 40px SECTION HEADINGS & 15px PARAGRAPHS
   ========================================================================== */
.section-title,
.page-section-title,
.about-heading,
.about-hero-title,
.curriculum-section-title-dark,
.soft-hero-title,
.soft-enquiry-heading,
.soft-service-light-section h2,
.soft-tech-orbit-section h2,
.soft-portfolio-dark-section h2,
.why-boffin-light-section h2,
.soft-trust-dark-section h2,
.soft-faq-section h2,
.choose-section h2,
.services-section-wrapper h2,
.tech-stack-section h2,
.portfolio-section h2,
.testimonials-section h2,
.blog-section h2,
.contact-section h2,
.pricing-section h2,
.process-section h2,
.faq-section h2,
.course-dark-section h2,
.course-dark-roles-section h2,
.cta-section h2 {
  font-size: 40px !important;
  line-height: 1.22 !important;
}

/* Paragraphs & Subtitles Across All Pages */
p,
.section-subtitle,
.soft-hero-desc,
.soft-enquiry-sub,
.soft-faq-body,
.soft-service-light-section p,
.soft-tech-orbit-section p,
.soft-trust-dark-section p,
.why-boffin-light-section p,
.about-desc,
.service-desc,
.lead,
.pro-sub-dark,
.soft-value-desc {
  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* Check list items */
.soft-check-grid li {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* Mobile Responsive Scale */
@media (max-width: 991.98px) {
  .section-title,
  .page-section-title,
  .about-heading,
  .about-hero-title,
  .curriculum-section-title-dark,
  .soft-hero-title,
  .soft-enquiry-heading,
  .soft-service-light-section h2,
  .soft-tech-orbit-section h2,
  .soft-portfolio-dark-section h2,
  .why-boffin-light-section h2,
  .soft-trust-dark-section h2,
  .soft-faq-section h2,
  .choose-section h2,
  .services-section-wrapper h2,
  .tech-stack-section h2,
  .portfolio-section h2,
  .testimonials-section h2,
  .blog-section h2,
  .contact-section h2,
  .pricing-section h2,
  .process-section h2,
  .faq-section h2 {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  p,
  .section-subtitle,
  .soft-hero-desc,
  .soft-enquiry-sub,
  .soft-faq-body,
  .soft-service-light-section p,
  .soft-tech-orbit-section p,
  .soft-trust-dark-section p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* Optimization: Reduce excessive mobile bottom gap between the last page section and the fixed bottom bar */
  body {
    padding-bottom: 60px !important;
  }
  
  .contact-map-section,
  .contact-section-clean,
  .career-resume-cta,
  .training-cta-banner,
  .privacy-content-section,
  .terms-content-section,
  .pay-plans-section,
  .special-offers-section,
  .quote-form-section,
  .soft-trust-dark-section:last-of-type,
  .soft-faq-section:last-of-type,
  .why-boffin-light-section:last-of-type,
  .course-dark-roles-section:last-of-type,
  .course-dark-section:last-of-type,
  .blog-section:last-of-type,
  .pricing-section:last-of-type,
  .faq-section:last-of-type,
  .portfolio-section:last-of-type,
  main > section:last-of-type,
  .custom-software-universe > section:last-of-type,
  .contact-page-universe > section:last-of-type {
    padding-bottom: 18px !important;
    margin-bottom: 0 !important;
  }

  .map-wrapper-card {
    margin-bottom: 0 !important;
  }
  .map-iframe-holder {
    height: 270px !important;
  }

  /* Service Pages Mobile Text Streamlining - Removes Unwanted Clutter Text in Phone View */
  .custom-software-universe .svc-card-desc,
  .service-card-item .svc-card-desc,
  .custom-software-universe .soft-value-desc,
  .custom-software-universe .why-card-elevated .soft-value-desc,
  .custom-software-universe .pro-sub-dark,
  .custom-software-universe .soft-trust-card-desc,
  .custom-software-universe .app-banner-pay-only {
    display: none !important;
  }

  .custom-software-universe .soft-value-card,
  .custom-software-universe .why-card-elevated {
    padding: 12px 10px !important;
    min-height: auto !important;
  }
  .custom-software-universe .soft-value-title,
  .custom-software-universe .why-card-elevated .soft-value-title {
    margin-bottom: 0 !important;
    font-size: 12px !important;
  }

  /* Universal Service Sub-Pages Hero Button Anti-Clipping Guarantee */
  .app-banner-pill-btn,
  .mob-app-banner-cta-pill,
  .btn-blue-pill,
  .btn-soft-hero-primary,
  .btn-soft-hero-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    max-width: 100% !important;
    width: fit-content !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
  }

  /* Universal Tech Orbit Badge Auto-Fit Guarantee - Fixes Text Overflow Across ALL Service Pages */
  .tech-orbit-wrap,
  .role-wheel-wrap,
  .ring-arch-wrap {
    max-width: 280px !important;
    height: 270px !important;
    margin: 0 auto 16px !important;
    overflow: visible !important;
  }

  .tech-orbit-ring {
    width: 200px !important;
    height: 200px !important;
  }

  .tech-orbit-badge {
    min-width: 46px !important;
    width: auto !important;
    max-width: 76px !important;
    min-height: 32px !important;
    height: auto !important;
    padding: 4px 6px !important;
    font-size: 8.5px !important;
    line-height: 1.15 !important;
    border-radius: 8px !important;
    transform: translate(-50%, -50%) !important;
    white-space: normal !important;
    word-break: normal !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .tech-orbit-center {
    width: 58px !important;
    height: 58px !important;
    font-size: 1.25rem !important;
  }
}
