/* -------------------------------------------------------------
   NESTBEANS PREMIUM LIGHT THEME DESIGN SYSTEM
   ------------------------------------------------------------- */

/* Design Tokens & Variables */
:root {
  --bg-dark: #f6f8fa;       /* Light slate/off-white background */
  --bg-dark-alt: #ffffff;   /* Pure white sections */
  --bg-dark-card: #ffffff;  /* Pure white cards */
  --text-light: #1e293b;    /* Slate-900 dark text */
  --text-muted: #64748b;    /* Slate-500 muted text */
  --primary: #4f46e5;       /* Royal Indigo */
  --primary-rgb: 79, 70, 229;
  --secondary: #0ea5e9;     /* Electric Sky Blue */
  --secondary-rgb: 14, 165, 233;
  --accent-purple: #7c3aed;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(16px);
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CSS Reset & General Styling */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0f172a; /* Slate 900 */
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Helper spacing utilities */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.bg-alt { background-color: var(--bg-dark-alt); }
.justify-center { justify-content: center; }

/* Grid Layouts */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Brand Logo Styling - Transformed for Light Theme */
.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* Blends the white background of the logo naturally */
  transition: var(--transition);
}

.brand-logo:hover {
  opacity: 0.9;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

/* Header & Glassmorphic Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown Menu CSS */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 320px;
  background-color: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  backdrop-filter: var(--glass-blur);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
}

.dropdown-item i {
  color: var(--primary);
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}

.dropdown-item:hover {
  background-color: rgba(79, 70, 229, 0.05);
  color: var(--primary);
}

.dropdown-item h5 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.btn-outline-glow {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-outline-glow:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.35);
}

/* Mobile Menu & Hamburger Toggle */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  border-left: 1px solid var(--glass-border);
  z-index: 1100;
  padding: 2rem;
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--primary);
}

/* Accordion in Drawer */
.mobile-accordion-toggle {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
}

.mobile-accordion-toggle i {
  font-size: 0.9rem;
  transition: var(--transition);
}

.mobile-accordion-toggle.active i {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding-left: 1rem;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  border-left: 2px solid var(--glass-border);
}

.mobile-accordion-link {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.mobile-accordion-link:hover {
  color: var(--primary);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(79, 70, 229, 0.05);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.badge-glow {
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.08);
}

/* Section Headers */
.section-header {
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-tag.color-cyan { color: var(--secondary); }
.section-tag.color-red { color: var(--primary); }

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ------------------ SECTIONS ------------------ */

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title span:first-of-type {
  color: var(--primary);
}

.hero-title span:last-of-type {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-btns {
    flex-direction: row;
  }
}

/* Problems & Collateral Cards Grid */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .problems-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .problems-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.problem-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.problem-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Overlapping Text Banner Section */
.overlapping-banner-section {
  overflow: hidden;
  background-color: var(--bg-dark-alt);
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.banner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: rotate(-1deg) scale(1.02);
}

.banner-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .banner-track { font-size: 3rem; }
}

.banner-track-left {
  animation: scroll-left 35s linear infinite;
  color: transparent;
  -webkit-text-stroke: 1px rgba(15, 23, 42, 0.35);
}

.banner-track-right {
  color: var(--primary);
  opacity: 0.85;
  animation: scroll-right 35s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Premium Card design system */
.premium-glass-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.premium-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.premium-glass-card:hover::before {
  opacity: 1;
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.service-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.15);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-link i {
  font-size: 0.8rem;
  transition: var(--transition);
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* Success Stories / Case Studies list */
.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.case-study-item-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 1024px) {
  .case-study-item-row {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3.5rem;
  }
  .case-study-item-row:nth-child(even) {
    direction: rtl;
  }
  .case-study-item-row:nth-child(even) .case-study-details {
    direction: ltr;
  }
}

.case-study-mockup {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f8fafc;
}

.case-study-mockup img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.case-study-item-row:hover .case-study-mockup img {
  transform: scale(1.02);
}

.case-study-details {
  display: flex;
  flex-direction: column;
}

.case-study-title-styled {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.case-study-results-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 1.25rem;
}

.case-study-desc-box {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.case-study-meta-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.meta-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.meta-bullet-item i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* Why Choose Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.why-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(79, 70, 229, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Google Reviews Summary & Premium Grid Layout */
.reviews-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .reviews-container-grid {
    grid-template-columns: 340px 1fr;
  }
}

.rating-overview-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(79, 70, 229, 0.08);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.04);
  position: relative;
}

@media (min-width: 992px) {
  .rating-overview-card {
    position: sticky;
    top: 100px;
  }
}

.rating-overview-card .google-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #4285F4;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.rating-overview-card .google-logo-badge i {
  font-size: 1.35rem;
}

.rating-overview-card .large-rating-number {
  font-size: 4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.rating-overview-card .rating-stars {
  font-size: 1.4rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.rating-overview-card .rating-count-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* Star breakdown bars */
.star-breakdown {
  margin-top: 1.5rem;
  text-align: left;
}

.breakdown-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breakdown-star-label {
  width: 38px;
  font-weight: 500;
}

.breakdown-bar-bg {
  flex-grow: 1;
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
}

.breakdown-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 3px;
}

.breakdown-count {
  width: 12px;
  text-align: right;
  font-weight: 500;
}

.rating-overview-card .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #16a34a;
  font-size: 0.85rem;
  font-weight: 600;
  background-color: rgba(22, 163, 74, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(22, 163, 74, 0.15);
}

/* Review Cards Carousel on Right side */
.reviews-carousel-col {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Reviews Masonry Grid */
.reviews-masonry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-masonry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.reviews-masonry-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(79, 70, 229, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-item-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 20px 40px -15px rgba(79, 70, 229, 0.08), 0 4px 6px rgba(0, 0, 0, 0.02);
}

.review-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(79, 70, 229, 0.15);
}

.review-reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name-line {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.reviewer-name-line i {
  color: #4285F4;
  font-size: 0.9rem;
}

.review-date-line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars-row {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-text-paragraph {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: normal;
  margin-bottom: 0;
  flex-grow: 1;
}

.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.rev-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rev-carousel-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.rev-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.rev-carousel-btn:disabled:hover {
  background-color: var(--bg-dark-card);
  border-color: rgba(0, 0, 0, 0.08);
  color: var(--text-light);
}

.rev-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: var(--transition);
}

.rev-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--primary);
}

/* FAQ Accordion Styling */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question-btn {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-light);
  padding: 1.5rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-question-btn i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: rgba(79, 70, 229, 0.2);
}

.faq-item.active .faq-question-btn i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer-content {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
}

/* Final CTA Section styling */
.final-cta-section {
  position: relative;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.cta-actions-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-actions-grid {
    flex-direction: row;
  }
}

/* ------------------ FOOTER ------------------ */
.main-footer {
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 5rem;
}

.footer-top {
  margin-bottom: 4rem;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col {
  max-width: 320px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.social-links a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #0f172a;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.double-col {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .double-col {
    grid-column: auto;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.footer-links-grid a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links-grid a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem 0;
  background-color: #f8fafc;
}

.footer-bottom .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom .footer-container {
    flex-direction: row;
    text-align: left;
  }
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ------------------ FLOATING ELEMENTS ------------------ */
.floating-ctas {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-cta {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
}

.cta-call {
  background-color: #0088cc;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-whatsapp {
  background-color: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-cta:hover {
  transform: scale(1.08);
}

.cta-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-cta:hover .cta-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ------------------ OTHER PAGES & LAYOUTS ------------------ */

/* About Branding box styling */
.glowing-mesh-box {
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.05) 0%, transparent 60%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.01);
}

.centered-brand-logo {
  max-width: 70%;
  height: auto;
  mix-blend-mode: multiply; /* Keeps logo transparent on the light gradient backdrop */
}

/* Clients cards */
.clients-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .clients-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .clients-cards-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.client-focus-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.client-focus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: var(--shadow-md);
}

.client-focus-card .card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.client-focus-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.client-focus-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Standards checklist rows */
.standards-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.standard-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.standard-row:last-child {
  border-bottom: none;
}

.std-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--primary);
  background-color: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.15);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.05);
}

.std-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.std-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Service / Industry Checklists */
.features-checklist, .benefits-checklist, .challenges-list, .solutions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-checklist li, .benefits-checklist li, .challenges-list li, .solutions-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.features-checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
}

.benefits-checklist li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
}

.challenges-list li::before {
  content: '\f057';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #ef4444; /* Alert Red */
}

.solutions-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
}

/* Form Controls */
.form-control {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-family: var(--font-body);
  padding: 0.9rem 1.25rem;
  width: 100%;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.required {
  color: #ef4444;
}

/* Portfolio Gallery styling */
.portfolio-grid-cards {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Success details case study */
.case-studies-deep-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.case-deep-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.case-deep-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.case-deep-tagline {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.case-deep-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.case-deep-tech-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.case-deep-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .case-deep-body-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.deep-story-section {
  margin-bottom: 2.25rem;
}

.deep-story-section h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.deep-story-section h3 i {
  color: var(--primary);
}

.deep-story-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.deep-quote-box {
  background-color: rgba(79, 70, 229, 0.02);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
}

.deep-quote-box p {
  font-style: italic;
  color: var(--text-light);
}

.deep-quote-box span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.case-deep-visual-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.case-deep-image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
}

.case-deep-image-wrapper img {
  width: 100%;
  height: auto;
}

/* Resources/Blog styling */
.blog-categories-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tab-btn {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .blog-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .blog-cards-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.blog-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.15);
  box-shadow: var(--shadow-md);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.blog-card-cat {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: #0f172a;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-footer {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-footer i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.blog-card:hover .blog-card-footer i {
  transform: translateX(4px);
}

/* Modal Overlay view for Blog articles */
.blog-article-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.blog-article-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.article-modal {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3.5rem 2.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.blog-article-overlay.active .article-modal {
  transform: translateY(0);
}

.article-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.article-modal-close:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* Inside article modal content styles */
.article-modal-body h1 {
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.article-modal-body .article-meta-row {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

.article-modal-body .article-category-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.article-modal-body p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-modal-body h3 {
  font-size: 1.4rem;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.article-modal-body ul, .article-modal-body ol {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.article-modal-body li strong {
  color: #0f172a;
}

/* Contact Page Grid & Form */
.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.info-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f172a;
}

.info-link:hover {
  color: var(--primary);
}

.contact-business-note {
  background-color: rgba(79, 70, 229, 0.02);
  border: 1px dashed rgba(79, 70, 229, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.contact-business-note h4 {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-business-note p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form states */
.form-success-feedback {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success-feedback.active {
  display: flex;
}

.main-agency-form.hidden {
  display: none;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: scale-up 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scale-up {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ------------------ ANIMATIONS ------------------ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in { animation: fadeIn 1.2s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 1s ease forwards; }
.animate-fade-in-down { animation: fadeInDown 1s ease forwards; }

/* Mobile View Spacing & Header Button Centering Adjustments */
@media (max-width: 1023px) {
  /* 1. Spacing Adjustments */
  .py-6 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  
  /* Ensure hero headers have enough top padding so badges/titles are not covered by sticky navigation bar */
  .hero-section,
  .about-hero-section,
  .service-hero-section,
  .industry-hero-section,
  .location-hero-section,
  .portfolio-hero-section,
  .stories-hero-section,
  .resources-hero-section,
  .contact-hero-section,
  .services-catalog-hero {
    padding-top: 130px !important;
    padding-bottom: 3.5rem !important;
  }

  /* Reduce space between sections in mobile view */
  .about-intro-section,
  .industry-details-section,
  .location-details-section,
  .service-details-section {
    padding-top: 1.5rem !important;
  }

  /* 2. Header Mobile Spacing & Three-Column Alignment (Logo, Button, Hamburger) */
  .header-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0.5rem 1.25rem !important;
  }

  .main-header .brand-logo {
    height: 42px !important;
    order: 1 !important;
  }

  .header-cta-btn {
    display: inline-flex !important;
    font-size: 0.8rem !important;
    padding: 0.45rem 1rem !important;
    white-space: nowrap !important;
    margin: 0 auto !important; /* Forces it to center between logo and hamburger */
    order: 2 !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 3 !important;
  }
}

/* =============================================================
   GLOBAL SPACER FIXES (ELIMINATING HUGE BLANK SPOTS)
   ============================================================= */

/* Page Heroes - Desktop & Mobile */
.hero-section,
.about-hero-section,
.service-hero-section,
.industry-hero-section,
.location-hero-section,
.portfolio-hero-section,
.stories-hero-section,
.resources-hero-section,
.contact-hero-section,
.services-catalog-hero {
  padding-top: 150px !important;    /* Clears sticky header spacing */
  padding-bottom: 2.5rem !important; /* Reduces the blank gap at the bottom of hero */
}

/* Detail Content Blocks - Desktop & Mobile */
.about-intro-section,
.service-details-section,
.industry-details-section,
.portfolio-list-section,
.detailed-cases-section,
.blog-hub-section,
.contact-details-section,
.location-details-section,
.services-catalog-grid {
  padding-top: 2rem !important;      /* Reduces the blank gap at the top of detail content */
  padding-bottom: 6rem !important;   /* Keeps normal spacing at the bottom of sections */
}

/* Adjust mobile viewport top offset to prevent overlapping sticky navbar */
@media (max-width: 1023px) {
  .hero-section,
  .about-hero-section,
  .service-hero-section,
  .industry-hero-section,
  .location-hero-section,
  .portfolio-hero-section,
  .stories-hero-section,
  .resources-hero-section,
  .contact-hero-section,
  .services-catalog-hero {
    padding-top: 120px !important;   /* Pushes titles down on mobile viewports */
    padding-bottom: 2rem !important;
  }
}

/* =============================================================
   BRAND DELIVERABLES SPLIT CAPSULE LAYOUT
   ============================================================= */
.branding-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.branding-text-col {
  max-width: 500px;
}

.branding-capsules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .branding-capsules-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .branding-split-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.branding-capsule {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  padding: 1.1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.branding-capsule:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.capsule-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(79, 70, 229, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.branding-capsule:hover .capsule-icon {
  background-color: var(--primary);
  color: #ffffff;
}

.capsule-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
}

/* =============================================================
   PREMIUM CUSTOM ANIMATIONS & INTERACTIVE EFFECTS
   ============================================================= */

/* 1. Dynamic Reveal Animation styles */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered transition delays for lists/grids */
.services-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.branding-capsules-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.branding-capsules-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.branding-capsules-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.branding-capsules-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.branding-capsules-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.branding-capsules-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.why-grid .reveal:nth-child(odd) { transition-delay: 0.05s; }
.why-grid .reveal:nth-child(even) { transition-delay: 0.15s; }

/* 2. Premium Animated Text Gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-title span, 
.hero-title span {
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-purple), var(--primary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

/* 3. Button Shimmer sweep reflection on hover */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.btn-primary:hover::after, .btn-secondary:hover::after {
  transform: translate(350%, -30%) rotate(30deg);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 4. Glowing Neon Border hover effect for cards */
.service-card, .problem-card {
  position: relative;
}

.service-card::after, .problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.service-card:hover::after, .problem-card:hover::after {
  opacity: 1;
}

/* 5. Smooth Ambient Glow keyframes */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.floating-cta {
  animation: float 4s ease-in-out infinite;
}

.cta-whatsapp {
  animation-delay: 0.5s;
}

.about-branding-visual {
  animation: float 6s ease-in-out infinite;
}

/* Success Stories Mobile Responsiveness Overrides */
@media (max-width: 768px) {
  .case-deep-card {
    padding: 1.5rem !important;
  }
  .case-deep-header {
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .case-deep-tagline {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  .case-deep-body-grid {
    gap: 2rem !important;
  }
  .deep-story-section h3 {
    font-size: 1.2rem !important;
  }
  .deep-quote-box {
    padding: 1.25rem !important;
    margin-top: 1.25rem !important;
  }
  .case-deep-visual-col {
    gap: 1.5rem !important;
  }
}

/* Two-column Hero layouts for Services, Industries, Locations */
.service-hero-section,
.industry-hero-section,
.location-hero-section {
  text-align: left !important;
}

.hero-graphic-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.8);
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.hero-graphic-wrap:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.hero-illustration {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.align-center {
  align-items: center;
}

@media (max-width: 1023px) {
  .hero-section,
  .service-hero-section,
  .industry-hero-section,
  .location-hero-section {
    text-align: center !important;
  }
  .hero-section .grid-2,
  .service-hero-section .grid-2,
  .industry-hero-section .grid-2,
  .location-hero-section .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-graphic-wrap {
    margin-top: 2rem;
  }
}

/* Redesigned Premium Home Hero Style System */
.hero-section {
  text-align: left !important;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Dark Mode Hero Typography & Elements Override */
.hero-section .hero-title {
  color: #ffffff !important;
}

.hero-section .hero-subtitle {
  color: #94a3b8 !important; /* Muted Slate-400 */
}

.hero-section .badge {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e2e8f0 !important;
}

.hero-section .trust-badge {
  color: #cbd5e1 !important; /* Slate-300 */
}

.hero-section .btn-outline-glow {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.hero-section .btn-outline-glow:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}


/* Background Blur Orbs */
.bg-blur-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: float-orb 20s infinite alternate ease-in-out;
}

.orb-primary {
  width: 450px;
  height: 450px;
  background-color: var(--primary);
  top: -10%;
  right: -5%;
}

.orb-secondary {
  width: 400px;
  height: 400px;
  background-color: var(--secondary);
  bottom: -10%;
  left: -5%;
  animation-delay: -5s;
}

.orb-tertiary {
  width: 350px;
  height: 350px;
  background-color: #0ea5e9;
  top: 30%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 40px) scale(1.1); }
  100% { transform: translate(-40px, -50px) scale(0.95); }
}

/* Live Badge Indicator */
.live-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  position: relative;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Gradient Text Highlights */
.gradient-text-cyan {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Pulsing Button Glow */
.btn-glow-pulse {
  position: relative;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
  animation: btn-glow 3s infinite;
}

@keyframes btn-glow {
  0% { box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25); }
  70% { box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25), 0 0 0 10px rgba(79, 70, 229, 0); }
  100% { box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25), 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* Glass Reflective Animation */
.btn-glass-reflect {
  position: relative;
  overflow: hidden;
}

.btn-glass-reflect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
  transition: none;
}

.btn-glass-reflect:hover::after {
  left: 130%;
  transition: all 0.6s ease-in-out;
}

/* Trust Badges Row */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  max-width: 600px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  font-family: var(--font-heading);
}

.trust-badge i {
  font-size: 0.95rem;
}

.text-gold { color: #f59e0b; }
.text-cyan { color: #0ea5e9; }
.text-purple { color: #818cf8; }

/* Premium Mockup Browser Window Frame */
.mockup-window {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
}

.mockup-window:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(79, 70, 229, 0.1);
}

.mockup-header {
  height: 40px;
  background-color: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}

.mockup-dots {
  display: flex;
  gap: 6px;
  position: absolute;
  left: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background-color: #f87171; }
.dot-yellow { background-color: #fbbf24; }
.dot-green { background-color: #34d399; }

.mockup-search-bar {
  margin: 0 auto;
  width: 60%;
  max-width: 240px;
  height: 24px;
  background-color: #f1f5f9;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.mockup-body {
  background-color: #0f172a;
  position: relative;
  line-height: 0;
}

.mockup-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .hero-trust-row {
    justify-content: center;
    margin: 2.5rem auto 0 auto;
  }
  .mockup-window {
    margin-top: 2.5rem;
  }
  .case-study-mockup img {
    height: auto;
  }
}

/* Homepage Services Overview Section Styling (Soft Lighted Theme) */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f5f3ff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.success-section {
  background: linear-gradient(180deg, var(--bg-dark-alt) 0%, rgba(79, 70, 229, 0.02) 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.05);
  border-bottom: 1px solid rgba(79, 70, 229, 0.05);
  position: relative;
  overflow: hidden;
}

.reviews-section {
  background: linear-gradient(180deg, var(--bg-dark-alt) 0%, rgba(79, 70, 229, 0.02) 100%);
  border-top: 1px solid rgba(79, 70, 229, 0.05);
  border-bottom: 1px solid rgba(79, 70, 229, 0.05);
  position: relative;
  overflow: hidden;
}






