/* ============================================================
   BLUE ARCH — MOBILE UI SYSTEM v2.0
   Complete mobile-first overhaul for ≤768px
   Applied LAST to override all other stylesheets
   ============================================================ */

/* ===== GLOBAL: Prevent horizontal overflow ===== */
html, body {
  overflow-x: hidden !important;
}

/* ===== DESKTOP: Hide mobile-only elements ===== */
.mobile-sticky-cta,
.mobile-whatsapp-fab {
  display: none !important;
}

@media (max-width: 768px) {

/* ─────────────────────────────────────────────
   A. GLOBAL RESET & BASE
   ───────────────────────────────────────────── */
* {
  max-width: 100vw;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  width: 100%;
  padding-bottom: 70px; /* room for sticky CTA bar */
}
.container {
  padding: 0 20px !important;
  overflow-x: hidden;
  max-width: 100% !important;
}

/* Kill all decorative orbs that cause overflow */
.global-orb,
.global-orb-1,
.global-orb-2,
.global-cursor-glow,
.cursor-dot,
.cursor-ring,
.cursor-trail {
  display: none !important;
}

/* Kill desktop-only interactive effects */
.mag-glow { display: none !important; }
.section-ring { opacity: 0.3 !important; }


/* ─────────────────────────────────────────────
   B. PREMIUM MOBILE NAVBAR
   ───────────────────────────────────────────── */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  background: rgba(10,10,10,0.85) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  padding: 0 !important;
  height: 60px !important;
}
.navbar .container {
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 60px !important;
}
.nav-logo img {
  max-height: 36px !important;
  width: auto !important;
}
.nav-menu,
.nav-social,
.nine-dots-toggle,
.nav-right .nav-social {
  display: none !important;
}

/* Hamburger toggle */
.mobile-menu-toggle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 10002 !important;
  background: none !important;
  border: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  position: relative;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  pointer-events: none !important;
  transition: all 0.3s ease;
}
.mobile-menu-toggle span:nth-child(2) {
  margin: 5px 0;
  width: 16px;
}


/* ─────────────────────────────────────────────
   C. GLASSMORPHISM MOBILE MENU
   ───────────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,0.7) !important;
  z-index: 10000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-menu-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
}
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: min(300px, 85vw) !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: rgba(12,12,18,0.97) !important;
  backdrop-filter: blur(30px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(150%) !important;
  z-index: 10001 !important;
  padding: 80px 28px 100px !important;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto !important;
  border-left: 1px solid rgba(255,255,255,0.06) !important;
}
.mobile-menu.open {
  right: 0 !important;
}

/* Close button */
.mobile-menu-close {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 24px !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
  padding: 0;
  font-family: Arial, sans-serif;
}
.mobile-menu-close:active {
  background: rgba(255,255,255,0.1) !important;
}

/* Menu links */
.mobile-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.mobile-menu > ul > li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu > ul > li > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px !important;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.mobile-menu > ul > li > a[style*="color: var(--accent)"],
.mobile-menu > ul > li > a.active {
  color: var(--accent) !important;
}

/* Services submenu */
.mobile-has-submenu { position: relative; }
.mobile-submenu-toggle {
  cursor: pointer;
}
.mobile-submenu-arrow {
  font-size: 12px !important;
  transition: transform 0.3s ease;
  opacity: 0.4;
}
.mobile-has-submenu.open .mobile-submenu-arrow {
  transform: rotate(180deg);
}
.mobile-submenu {
  list-style: none !important;
  padding: 0 0 8px 16px !important;
  margin: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-has-submenu.open .mobile-submenu {
  max-height: 400px;
}
.mobile-submenu li a {
  display: block !important;
  padding: 10px 12px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-left: 2px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}
.mobile-submenu li a:active {
  color: var(--accent) !important;
  border-left-color: var(--accent);
}


/* ─────────────────────────────────────────────
   D. STICKY CTA BAR + WHATSAPP FAB
   ───────────────────────────────────────────── */
.mobile-sticky-cta {
  display: block !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9998 !important;
  padding: 10px 16px !important;
  background: rgba(10,10,10,0.92) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border-top: 1px solid rgba(0,185,244,0.15) !important;
}
.mobile-sticky-cta-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 14px 24px !important;
  background: linear-gradient(135deg, #00B9F4 0%, #0090d9 100%) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border-radius: 14px !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(0,185,244,0.3), 0 0 0 1px rgba(0,185,244,0.1) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mobile-sticky-cta-btn:active {
  transform: scale(0.97);
}
.mobile-sticky-cta-btn svg {
  stroke: #fff;
  flex-shrink: 0;
}

/* WhatsApp floating button */
.mobile-whatsapp-fab {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  bottom: 80px !important;
  right: 16px !important;
  z-index: 9997 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  background: #25D366 !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 3px rgba(37,211,102,0.1) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease;
  animation: mobileWaFabPulse 3s ease-in-out infinite;
}
.mobile-whatsapp-fab:active {
  transform: scale(0.9);
}
@keyframes mobileWaFabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 3px rgba(37,211,102,0.1); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 6px rgba(37,211,102,0.15); }
}


/* ─────────────────────────────────────────────
   E. HERO SECTIONS (ALL PAGES)
   ───────────────────────────────────────────── */
/* Generic hero */
.hero,
.service-hero,
.abt-hero {
  min-height: 85vh !important;
  padding: 100px 0 60px !important;
}
.hero-content,
.service-hero-content {
  padding-top: 20px !important;
}
.hero-title,
.service-hero h1,
.abt-hero-title {
  font-size: 32px !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
}
.hero-subtitle,
.hero-desc,
.service-hero p,
.abt-hero-desc {
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin-bottom: 28px !important;
  color: rgba(255,255,255,0.6) !important;
}
/* Hero badge */
.abt-hero-badge,
.hero-badge {
  font-size: 11px !important;
  padding: 6px 16px !important;
  margin-bottom: 20px !important;
}
/* Hero CTAs stack vertically */
.hero-ctas,
.abt-hero-ctas,
.service-hero-ctas {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}
.hero-ctas .btn-pill,
.abt-hero-ctas .btn-pill,
.service-hero-ctas .btn-pill {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  border-radius: 14px !important;
}
/* Hero background video/image */
.hero-bg video,
.hero-bg img,
.abt-hero-bg video {
  object-position: center center !important;
}

/* Platform strip */
.platform-strip,
.hero-platforms {
  flex-wrap: wrap !important;
  gap: 8px !important;
  justify-content: center !important;
  margin-top: 24px !important;
}
.platform-strip img,
.hero-platforms img {
  height: 24px !important;
}


/* ─────────────────────────────────────────────
   F. SECTION STANDARDIZATION
   ───────────────────────────────────────────── */
section,
.abt-section {
  padding: 60px 0 !important;
}
.section-heading,
.abt-heading {
  font-size: 26px !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}
.section-label,
.abt-label {
  font-size: 11px !important;
  margin-bottom: 12px !important;
}
.section-text,
.abt-text {
  font-size: 15px !important;
  line-height: 1.7 !important;
}

/* CTA section (Let's Work Together) */
.cta-section {
  padding: 50px 0 !important;
}
.cta-big-text {
  font-size: 36px !important;
  line-height: 1.15 !important;
}
.cta-circle {
  width: 50px !important;
  height: 50px !important;
}
.cta-circle svg {
  width: 20px !important;
  height: 20px !important;
}


/* ─────────────────────────────────────────────
   G. CARDS & GRID COMPONENTS
   ───────────────────────────────────────────── */
/* All grids → single column on mobile */
.services-grid,
.features-grid,
.process-grid,
.benefits-grid,
.abt-why-grid,
.abt-mvv-grid,
.abt-presence-grid,
.team-grid,
.pricing-grid,
.blog-grid,
.testimonials-grid,
.contact-cards {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

/* Generic card styling */
.service-card,
.feature-card,
.process-card,
.benefit-card,
.abt-why-card,
.abt-mvv-card,
.abt-country-card,
.team-card,
.pricing-card,
.blog-card,
.testimonial-card,
.contact-card {
  padding: 24px !important;
  border-radius: 16px !important;
  /* Disable hover transforms on touch */
  transform: none !important;
  transition: none !important;
}
/* Disable hover effects on all cards */
.service-card:hover,
.feature-card:hover,
.process-card:hover,
.benefit-card:hover,
.abt-why-card:hover,
.abt-mvv-card:hover,
.abt-country-card:hover,
.team-card:hover,
.pricing-card:hover,
.blog-card:hover {
  transform: none !important;
}

/* Card headings */
.service-card h3,
.feature-card h3,
.feature-card h4,
.process-card h3,
.benefit-card h3,
.abt-why-card h4,
.abt-mvv-card h3 {
  font-size: 18px !important;
  margin-bottom: 8px !important;
}
/* Card text */
.service-card p,
.feature-card p,
.process-card p,
.benefit-card p,
.abt-why-card p,
.abt-mvv-card p {
  font-size: 14px !important;
  line-height: 1.65 !important;
}

/* Process step numbers */
.process-card .step-num,
.abt-mvv-num {
  font-size: 36px !important;
}

/* Service page icon containers */
.service-card .icon-wrap,
.feature-card .icon-wrap,
.abt-why-icon,
.abt-mvv-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  margin-bottom: 16px !important;
}

/* Two-column grids for smaller items */
.stats-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}


/* ─────────────────────────────────────────────
   H. BUTTONS
   ───────────────────────────────────────────── */
.btn-pill,
.btn-contact,
.btn,
a.btn-pill {
  padding: 13px 24px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* Remove magnetic/tilt effects */
.btn-pill {
  transform: none !important;
}


/* ─────────────────────────────────────────────
   I. ABOUT PAGE SPECIFICS
   ───────────────────────────────────────────── */
/* Stats bar → 2x2 grid */
.abt-stats-bar {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
}
.abt-stat {
  padding: 24px 16px !important;
  text-align: center;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.abt-stat:nth-child(2n) {
  border-right: none;
}
.abt-stat:nth-child(n+3) {
  border-bottom: none;
}
.abt-stat-num {
  font-size: 32px !important;
}
.abt-stat-label {
  font-size: 11px !important;
}

/* Story grid → stack */
.abt-story-grid {
  grid-template-columns: 1fr !important;
  gap: 30px !important;
}
.abt-story-visual {
  aspect-ratio: 16/10 !important;
  border-radius: 16px !important;
}
.abt-story-float-card {
  bottom: -10px !important;
  left: 16px !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
}
.abt-float-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
}
.abt-float-val {
  font-size: 16px !important;
}

/* Country cards → single col */
.abt-presence-grid {
  grid-template-columns: 1fr !important;
}
.abt-country-card {
  padding: 24px !important;
  border-radius: 16px !important;
}
.abt-country-flag {
  margin-bottom: 12px !important;
}

/* MVV cards → single col */
.abt-mvv-grid {
  grid-template-columns: 1fr !important;
}

/* Services list */
.abt-services-header {
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 30px !important;
}
.abt-svc-row {
  padding: 20px 0 !important;
}
.abt-svc-name {
  font-size: 16px !important;
}

/* CTA banner → stack */
.abt-cta-banner {
  flex-direction: column !important;
  text-align: center !important;
  padding: 36px 24px !important;
  border-radius: 16px !important;
}
.abt-cta-actions {
  flex-direction: column !important;
  width: 100% !important;
  gap: 10px !important;
}
.abt-cta-actions .btn-pill {
  width: 100% !important;
  justify-content: center !important;
}


/* ─────────────────────────────────────────────
   J. CONTACT PAGE
   ───────────────────────────────────────────── */
.contact-cards {
  grid-template-columns: 1fr !important;
}
.contact-form-section {
  padding: 40px 0 !important;
}
.contact-form {
  padding: 24px !important;
  border-radius: 16px !important;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 16px !important;
  font-size: 15px !important;
  border-radius: 12px !important;
}
.contact-form textarea {
  min-height: 120px !important;
}
.form-row {
  flex-direction: column !important;
  gap: 12px !important;
}
/* Map */
.contact-map {
  height: 250px !important;
  border-radius: 16px !important;
}


/* ─────────────────────────────────────────────
   K. TEAM PAGE
   ───────────────────────────────────────────── */
/* Force both rows to single column and override inline grid-column */
.team-row-top,
.team-row-bottom {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  width: 100% !important;
}
/* Override inline grid-column styles on individual cards */
.team-row-top .team-card,
.team-row-bottom .team-card {
  grid-column: auto !important;
  max-width: 100% !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
/* Team hero section fix */
#team-hero {
  height: auto !important;
  min-height: 85vh !important;
  margin-top: 0 !important;
}
#team-hero .hero-title {
  font-size: clamp(32px, 9vw, 50px) !important;
}
/* Team card image wrappers (background-image based) */
.tc-img-wrapper {
  aspect-ratio: 3/4 !important;
  border-radius: 14px !important;
  background-size: cover !important;
  background-position: center top !important;
}
/* Team card info */
.tc-info {
  padding: 14px 4px 0 !important;
}
.tc-name {
  font-size: 20px !important;
  margin-bottom: 4px !important;
}
.tc-position {
  font-size: 13px !important;
}
/* Disable hover overlay on touch (no hover on mobile) */
.tc-overlay {
  display: none !important;
}
/* Team ticker sizing */
.team-ticker .ticker-content {
  font-size: 18px !important;
  letter-spacing: 1px !important;
}
/* Core Team heading padding */
.team-grid-section {
  padding: 30px 0 60px !important;
}


/* ─────────────────────────────────────────────
   L. SERVICE PAGE SPECIFICS
   ───────────────────────────────────────────── */
/* Service hero image */
.service-hero-image,
.service-hero-visual {
  margin-top: 30px !important;
  border-radius: 16px !important;
  max-height: 260px !important;
  overflow: hidden;
}
.service-hero-image img,
.service-hero-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
}

/* Process/timeline steps */
.process-timeline {
  padding-left: 20px !important;
}
.timeline-item {
  padding-left: 24px !important;
  padding-bottom: 30px !important;
}

/* Service pricing tables */
.pricing-grid {
  grid-template-columns: 1fr !important;
}
.pricing-card {
  padding: 28px 20px !important;
}
.pricing-card .price {
  font-size: 32px !important;
}

/* Checklist items */
.checklist-item,
.benefit-item {
  padding: 12px 0 !important;
  font-size: 14px !important;
}

/* Technology/platform badges */
.tech-stack,
.platform-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

/* Before/after sections */
.before-after-grid {
  grid-template-columns: 1fr !important;
}

/* Portfolio gallery */
.portfolio-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
.portfolio-item {
  border-radius: 14px !important;
  overflow: hidden;
}

/* FAQ / Accordion */
.faq-item {
  padding: 16px 0 !important;
}
.faq-question {
  font-size: 15px !important;
}
.faq-answer {
  font-size: 14px !important;
}


/* ─────────────────────────────────────────────
   M. SMM PAGE SPECIFICS
   ───────────────────────────────────────────── */
.smm-process-grid,
.smm-features-grid {
  grid-template-columns: 1fr !important;
}
.smm-hero-image {
  margin-top: 24px !important;
  border-radius: 16px !important;
}


/* ─────────────────────────────────────────────
   N. FOOTER REDESIGN
   ───────────────────────────────────────────── */
.footer {
  padding: 40px 0 20px !important;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 30px !important;
}
.footer-brand {
  margin-bottom: 0 !important;
}
.footer-brand .nav-logo img {
  max-height: 36px !important;
}
/* Footer columns → 2-col grid */
.footer-grid > .footer-col {
  display: block !important;
}
.footer-col h4 {
  font-size: 15px !important;
  margin-bottom: 14px !important;
}
.footer-col ul {
  padding: 0 !important;
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px !important;
}
.footer-col a {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
}

/* Newsletter */
.footer-newsletter {
  margin-top: 0 !important;
}
.footer-newsletter h4 {
  font-size: 15px !important;
  margin-bottom: 14px !important;
}
.newsletter-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.newsletter-input {
  width: 100% !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
}
.newsletter-btn {
  width: 100% !important;
  padding: 14px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  background: var(--accent) !important;
  color: #0a0a0a !important;
  border: none !important;
  cursor: pointer;
}

/* Footer socials */
.footer-socials {
  display: flex !important;
  gap: 12px !important;
  margin-top: 24px !important;
}
.footer-socials a {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,0.03) !important;
}
.footer-socials a svg {
  width: 18px !important;
  height: 18px !important;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  text-align: center !important;
}
.footer-bottom p {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  padding-bottom: 10px !important;
}


/* ─────────────────────────────────────────────
   O. SIDE PANEL (Desktop only — hide on mobile)
   ───────────────────────────────────────────── */
.side-panel,
.side-panel-overlay {
  display: none !important;
}


/* ─────────────────────────────────────────────
   P. PAGE LOADER
   ───────────────────────────────────────────── */
#page-loader {
  z-index: 99999 !important;
}
.loader-logo-wrap img {
  max-height: 50px !important;
}


/* ─────────────────────────────────────────────
   Q. SCROLL REVEAL ANIMATIONS (lighter on mobile)
   ───────────────────────────────────────────── */
.reveal {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.reveal.active {
  transform: translateY(0);
  opacity: 1;
}
/* Disable stagger delays on mobile for faster feel */
.reveal-delay-1 { transition-delay: 0.05s !important; }
.reveal-delay-2 { transition-delay: 0.1s !important; }
.reveal-delay-3 { transition-delay: 0.15s !important; }
.reveal-delay-4 { transition-delay: 0.2s !important; }


/* ─────────────────────────────────────────────
   R. TESTIMONIALS SLIDER
   ───────────────────────────────────────────── */
.testimonial-slide {
  padding: 24px !important;
  border-radius: 16px !important;
}
.testimonial-text {
  font-size: 15px !important;
  line-height: 1.65 !important;
}
.testimonial-author {
  margin-top: 20px !important;
}
.testimonial-author img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
}
.testimonial-controls {
  margin-top: 20px !important;
  gap: 12px !important;
}
.testimonial-controls button {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
}


/* ─────────────────────────────────────────────
   S. BLOG CARDS
   ───────────────────────────────────────────── */
.blog-grid {
  grid-template-columns: 1fr !important;
}
.blog-card {
  border-radius: 16px !important;
}
.blog-card img {
  aspect-ratio: 16/9 !important;
  object-fit: cover !important;
  border-radius: 16px 16px 0 0 !important;
}
.blog-card-content {
  padding: 20px !important;
}
.blog-card h3 {
  font-size: 17px !important;
}


/* ─────────────────────────────────────────────
   T. INDEX/HOME PAGE SPECIFICS
   ───────────────────────────────────────────── */
/* Service cards on home */
.services-grid {
  grid-template-columns: 1fr !important;
}

/* "Our Process" section */
.process-grid {
  grid-template-columns: 1fr !important;
}

/* Clients/logos strip */
.clients-strip,
.logo-strip {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  padding: 10px 0;
}
.clients-strip img,
.logo-strip img {
  height: 28px !important;
  flex-shrink: 0;
}

/* Hero video overlay adjustments */
.hero-bg video {
  min-height: 100% !important;
  object-fit: cover !important;
}


/* ─────────────────────────────────────────────
   U. SCROLL PROGRESS BAR
   ───────────────────────────────────────────── */
#scroll-progress {
  height: 2px !important;
  top: 60px !important; /* Below mobile navbar */
}


/* ─────────────────────────────────────────────
   V. MISC / UTILITY OVERRIDES
   ───────────────────────────────────────────── */
/* Image containers */
img {
  max-width: 100% !important;
  height: auto;
}

/* Tables */
table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

/* Prevent text overflow */
h1, h2, h3, h4, h5, h6, p, span, a, li {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Disable parallax transforms on mobile */
.hero-bg,
.hero-bg video,
.section-heading {
  transform: none !important;
}

/* Horizontal rule spacing */
hr {
  margin: 30px 0 !important;
}

/* Contact info items */
.footer-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
  font-size: 14px !important;
}
.footer-contact-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 10px !important;
}
.footer-contact-icon svg {
  width: 16px !important;
  height: 16px !important;
}

/* ─────────────────────────────────────────────
   W. SEO PAGE SPECIFICS
   ───────────────────────────────────────────── */
.seo-audit-card,
.seo-ranking-card {
  padding: 24px !important;
  border-radius: 16px !important;
}

/* ─────────────────────────────────────────────
   X. ECOMMERCE / AD MANAGEMENT SPECIFICS
   ───────────────────────────────────────────── */
.ecom-features-grid,
.ad-platform-grid,
.ad-features-grid {
  grid-template-columns: 1fr !important;
}
.ecom-platform-logos,
.ad-platform-logos {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
}

/* ─────────────────────────────────────────────
   Y. BRANDING PAGE SPECIFICS
   ───────────────────────────────────────────── */
.brand-preview-grid,
.brand-elements-grid,
.identity-grid {
  grid-template-columns: 1fr !important;
}
.brand-preview-card {
  border-radius: 16px !important;
}

/* ─────────────────────────────────────────────
   Z. FULLSTACK DEV PAGE SPECIFICS
   ───────────────────────────────────────────── */
.tech-stack-grid,
.dev-features-grid,
.dev-process-grid {
  grid-template-columns: 1fr !important;
}
.code-snippet-card {
  padding: 20px !important;
  border-radius: 14px !important;
  font-size: 13px !important;
  overflow-x: auto;
}


} /* END @media (max-width: 768px) */
