@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES (SCALE ON INSIGHTS)
   ========================================== */
:root {
  /* Colors */
  --primary-navy: #001331;
  --navy-darker: #000c16;
  --cyan: #0097A6;
  --cyan-hover: #007c8a;
  --cyan-light: rgba(0, 151, 166, 0.15);
  
  --bg-white: #ffffff;
  --bg-light-blue: #f3f8fc;
  --bg-ice-blue: #e8f3fc;
  
  --text-white: #ffffff;
  --text-dark: #011627;
  --text-muted-light: #cbd5e1;
  --text-muted-dark: #5e6e7f;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Shadows */
  --shadow-sm: 0 2px 4px rgba(1, 22, 39, 0.05);
  --shadow-md: 0 10px 30px rgba(1, 22, 39, 0.08);
  --shadow-lg: 0 20px 40px rgba(1, 22, 39, 0.12);
  --shadow-glow: 0 0 25px rgba(0, 180, 216, 0.4);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-pill: 50px;

  /* Max width for centered content on large screens */
  --content-width: 1280px;
}

/* ==========================================
   CSS RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
}

button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.no-wrap {
  white-space: nowrap !important;
}

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  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;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.highlight {
  color: var(--cyan);
}

.highlight-cyan {
  color: var(--cyan);
}

/* ==========================================
   BUTTONS SYSTEM
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-slow);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--text-white);

}

.btn-primary:hover {
  background: var(--cyan-hover);
  transform: translateY(-2px);

}

.btn-secondary {
  background: var(--cyan);
  color: var(--text-white);
  padding: 10px 24px;

}

.btn-secondary:hover {
  background: var(--cyan-hover);
  transform: translateY(-2px);

}

.btn-secondary-solid {
  background: var(--cyan);
  color: var(--text-white);
  padding: 12px 28px;
}

.btn-secondary-solid:hover {
  background: var(--cyan-hover);
  transform: translateY(-2px);
}

.btn-contact {
  background: var(--cyan);
  color: var(--text-white);
  padding: 12px 28px;
  font-size: 1.15rem;
  font-weight: 600;
  gap: 12px;
  border-radius: var(--border-radius-pill);
}

.btn-contact:hover {
  background: var(--cyan-hover);

  transform: translateY(-1px);
}

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
  transition: var(--transition-normal);
}

.btn-contact:hover .arrow-circle {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.4);
}

.arrow-inline {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-normal);
}

.btn:hover .arrow-inline {
  transform: translateX(4px);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 21, 48, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  transition: transform 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}

.main-header.header-hidden {
  transform: translateY(-100%);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 40px;
}

/* Logo Design */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 180, 216, 0.3));
}

.logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.logo-top {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-bottom {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--text-muted-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  padding: 10px 0;
  position: relative;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--cyan);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-white);
  left: 0;
  transition: var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hamburger open state */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  background-color: #001530;
  background-image: url('image/Hero.jpg');
  background-size: cover;
  background-position: calc(100% + 50px) center;
  background-repeat: no-repeat;
  padding: 80px 0;
  width: 100%;
  min-height: clamp(620px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: -1px;
}

/* Geometric Overlay Shapes matching screenshot */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}

.glow-1 {
  background: rgba(0, 180, 216, 0.25);
  width: 450px;
  height: 450px;
  top: -10%;
  right: -5%;
}

.glow-2 {
  background: rgba(20, 184, 166, 0.15);
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
}

.glow-3 {
  background: transparent;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: none;
  border-radius: 0;
}

.hero-dots-1, .hero-dots-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 180, 216, 0.2) 20%, transparent 20%);
  background-size: 15px 15px;
  pointer-events: none;
  z-index: 2;
}

.hero-dots-1 { top: 25%; right: 40%; }
.hero-dots-2 { bottom: 20%; right: 15%; }

/* Hero layout */
.hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 3;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.hero-content {
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px; /* Increased from 580px to accommodate larger text */
}

.hero-title {
  font-size: clamp(3.25rem, 5.5vw, 4.75rem); /* Increased size */
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-divider {
  width: 48px;
  height: 4px;
  background-color: var(--cyan);
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 1.25rem; /* Increased size */
  color: var(--text-muted-light);
  max-width: 540px; /* Increased max-width to match the layout balance */
  margin-bottom: 40px;
  font-weight: 300;
  text-align: left;
}

/* Right-side high-fidelity geometric circles mockup */
.hero-visual {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-shapes {
  position: relative;
  width: 400px;
  height: 400px;
}

.geo-circle-lg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(1, 22, 39, 0.9) 0%, rgba(0, 56, 100, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 40px;
  right: 0px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.geo-circle-md {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.9) 0%, rgba(20, 184, 166, 0.4) 100%);
  border-radius: 50%;
  bottom: 0px;
  right: 60px;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(0, 180, 216, 0.4);
}

.geo-circle-sm {
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--primary-navy);
  border: 4px solid var(--cyan);
  border-radius: 50%;
  top: 80px;
  left: 20px;
  z-index: 4;
}

.geo-circle-teal {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #14b8a6;
  border-radius: 50%;
  bottom: 120px;
  left: 60px;
  z-index: 5;
}

.geo-arc-1 {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 2px dashed rgba(0, 180, 216, 0.2);
  border-radius: 50%;
  top: 10px;
  right: -30px;
  z-index: 1;
}

.geo-arc-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(20, 184, 166, 0.15);
  border-radius: 50%;
  bottom: 20px;
  left: 10px;
  z-index: 1;
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.intro-section {
  padding: 40px 0 100px 0;
  background-color: var(--bg-white);
}

.intro-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.intro-desc {
  font-size: 1rem;
  color: var(--text-muted-dark);
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 0 20px;
}

/* ==========================================
   FEATURES SECTION (ALTERNATING ROWS)
   ========================================== */
.features-section {
  padding: 0 0 100px 0;
  background-color: var(--bg-white);
  box-sizing: border-box;
}

/* Neutralize legacy inline `min-height:100vh` on combined screens so section
   height is driven by content + padding, not the viewport (prevents huge
   vertical gaps on tall/large monitors). */
.combined-screen {
  min-height: auto !important;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 40px;
  padding: 70px 0;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-row.reverse .feature-content {
  order: 1;
}

.feature-content {
  padding: 20px 0;
}

.feature-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.feature-desc {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ILLUSTRATION CONSTRUCTORS (HIGH FIDELITY) */
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img {
    max-width: 480px;
    height: auto;
    border-radius: var(--border-radius-md);
    transition: transform 0.5s var(--transition-slow);
  }



  
  .feature-img:hover {
    transform: translateY(-8px) scale(1.015);
  }



  @media (min-width: 993px) {
    .features-section .feature-title,
    .features-section .feature-desc {
      white-space: nowrap;
    }
  }

.illustration-container {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 380px;
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Row 1 Visuals (AI-Powered Laptop) */
.visual-r1 {
  background: radial-gradient(circle, rgba(1,22,39,0.05) 0%, rgba(1,22,39,0.01) 70%);
}

.dashed-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 2px dashed rgba(0, 180, 216, 0.25);
  border-radius: 50%;
  animation: spin 50s linear infinite;
}

.floating-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition-normal);
}

.floating-icon:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--cyan);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.2);
}

.icon-r1-1 { top: 15%; left: 10%; }
.icon-r1-2 { top: 15%; right: 10%; }
.icon-r1-3 { bottom: 15%; left: 10%; }
.icon-r1-4 { bottom: 15%; right: 10%; }

.central-laptop {
  position: relative;
  width: 220px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laptop-screen {
  width: 200px;
  height: 125px;
  background-color: var(--primary-navy);
  border: 8px solid #000c16;
  border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
  box-shadow: var(--shadow-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-base {
  width: 240px;
  height: 10px;
  background-color: #e2e8f0;
  border-bottom: 4px solid #cbd5e1;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
}

/* Row 2 Visuals (Operational Efficiency Arch) */
.visual-r2 {
  background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%);
}

.arch-bg {
  position: relative;
  width: 320px;
  height: 320px;
  background-color: var(--primary-navy);
  border-radius: 160px 160px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.r2-card-1 {
  width: 110px;
  height: 90px;
  top: 15%;
  left: 8%;
}

.r2-card-2 {
  width: 90px;
  height: 70px;
  top: 30%;
  right: 8%;
  color: var(--cyan);
}

.r2-card-3 {
  width: 80px;
  height: 70px;
  bottom: 12%;
  left: 10%;
}

.central-gears {
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 2;
}

.robot-face {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  border: 1px solid var(--cyan);
}

/* Row 3 Visuals (Marketplace Growth UI) */
.visual-r3 {
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
}

.window-mockup {
  width: 320px;
  height: 260px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.window-header {
  height: 36px;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}

.window-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

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

.window-body {
  flex-grow: 1;
  padding: 16px;
  background-color: #f8fafc;
}

.r3-interior {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px dashed #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.r3-chair {
  width: 80px;
  height: 80px;
}

.r3-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--cyan);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.3);
}

.r3-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.r3-chart-bar .bar {
  width: 16px;
  background: var(--cyan);
  border-radius: 4px 4px 0 0;
  transition: var(--transition-slow);
}

.bar-1 { height: 30px; }
.bar-2 { height: 55px; }
.bar-3 { height: 75px; }

/* Row 4 Visuals (Brand Experience UI) */
.visual-r4 {
  background: radial-gradient(circle, rgba(20,184,166,0.06) 0%, transparent 70%);
}

.r4-window {
  border-color: #cbd5e1;
}

.r4-window .window-body {
  background-color: #f1f5f9;
}

.r4-interior {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 12px;
  height: 100%;
}

.r4-left-pane {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid #cbd5e1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-badge {
  background: var(--cyan);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
  align-self: flex-start;
}

.card-sm {
  height: 24px;
  background-color: #f1f5f9;
  border-radius: 4px;
  width: 100%;
}

.card-sm.font-small {
  width: 75%;
}

.r4-right-pane {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid #cbd5e1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.chair-mini {
  width: 50px;
  height: 50px;
}

.user-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--cyan-light);
  border: 1px solid var(--cyan);
}

.user-line {
  height: 6px;
  background-color: #f1f5f9;
  border-radius: 2px;
  flex-grow: 1;
}

/* ==========================================
   PARTNER LOGO BANNER
   ========================================== */
.partner-section {
  position: relative;
  background-color: var(--primary-navy);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-bg-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.partner-text {
  color: var(--text-white);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.partner-text strong {
  font-weight: 600;
  color: var(--text-white);
}

/* Logos Container & Individual Brand Cards matching image */
.partner-logos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    color: var(--primary-navy);
  }

.partner-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================
   OUR APPROACH SECTION
   ========================================== */
.approach-section {
  padding: 100px 0;
  background-color: var(--bg-light-blue);
  border-bottom: 1px solid #e2e8f0;
}

.approach-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 0;
}

/* Interactive Orbit Timeline layout */
.interactive-orbit-container {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: radial-gradient(circle at 10% 10%, rgba(0, 180, 216, 0.03) 0%, transparent 80%);
}

.orbit-diagram-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}

/* Central Hub Logo */
.orbit-center-hub {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(1, 22, 39, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  animation: hubBreathing 4s ease-in-out infinite;
}

@keyframes hubBreathing {
  0%, 100% { box-shadow: 0 0 15px rgba(0, 151, 166, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 151, 166, 0.5); border-color: rgba(0, 151, 166, 0.5); }
}

.orbit-center-hub:hover {
  transform: translate(-50%, -50%) scale(1.03);
  border-color: var(--cyan);
}

.orbit-center-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* Glowing Energy Lines SVG overlay */
.orbit-connect-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.orbit-energy-line {
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 6 12;
  animation: energyFlow 1.5s linear infinite;
  opacity: 0.6;
}

@keyframes energyFlow {
  to {
    stroke-dashoffset: -18;
  }
}

/* Orbit Node Circle */
.orbit-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), z-index 0.3s ease;
  animation: nodeFloating 6s ease-in-out infinite;
}

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

.orbit-node:hover {
  transform: scale(1.08) translateY(-5px);
}

.node-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  z-index: 6;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.orbit-node:hover .node-icon-wrap {
  color: var(--cyan);
  border-color: var(--cyan);
}

.orbit-node.active .node-icon-wrap {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 8px 20px rgba(0, 151, 166, 0.18);
}

/* Curved positions for the 4 nodes */
.node-pos-1 { top: 8%; left: 60%; animation-delay: 0s; }
.node-pos-2 { top: 34%; left: 74%; animation-delay: 1.5s; }
.node-pos-3 { top: 60%; left: 74%; animation-delay: 3s; }
.node-pos-4 { top: 86%; left: 60%; animation-delay: 4.5s; }

/* Right side approach list centered dynamic container */
.approach-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 380px;
  height: 100%;
  gap: 28px;
  max-width: max-content;
  margin: 0 auto;
}

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

.approach-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--border-radius-md);
  border: 1.5px solid rgba(0, 151, 166, 0.1);
  box-shadow: 0 5px 15px rgba(0, 12, 22, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.approach-item:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 15px 30px rgba(0, 151, 166, 0.12);
}

.approach-icon {
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-light-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.approach-item:hover .approach-icon {
  transform: scale(1.08);
}

.approach-item .divider-line {
  width: 2px;
  height: 30px;
  background-color: rgba(0, 151, 166, 0.2);
  flex-shrink: 0;
}

.approach-item-content {
  width: 100%;
}

.approach-item-title {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 700;
}

.approach-buttons {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centered buttons */
  gap: 20px;
}

/* ==========================================
   GROW WITH US & CAREERS
   ========================================== */
.grow-section {
  position: relative;
  margin: 40px 0;
  padding: 0;
  background-color: transparent;
  color: var(--text-white);
  border-bottom: none;
  overflow: visible;
  z-index: 1;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grow-section::before {
  content: '';
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  right: 0;
  background-color: #011531;
  z-index: -1;
}

/* Floating abstract shapes matching screenshot */
.grow-shape {
  position: absolute;
  pointer-events: none;
}

.grow-shape-1 {
  top: calc(16% - 90px);
  left: 5%;
  width: 90px;
  height: 90px;
  background-color: var(--cyan);
  border-radius: 0 100% 0 0;
  z-index: 1;
}

.grow-shape-2 {
  top: 40px;
  left: 2%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 151, 166, 0.25);
  border-radius: 50%;
  z-index: 1;
}

.grow-shape-dots {
  bottom: -35px;
  left: 3%;
  width: 80px;
  height: 60px;
  background-image: radial-gradient(rgba(0, 151, 166, 0.3) 20%, transparent 20%);
  background-size: 10px 10px;
  z-index: 1;
}

.grow-shape-circle-1 {
  bottom: -50px;
  left: 40%;
  width: 110px;
  height: 110px;
  border: 2.5px solid rgba(0, 151, 166, 0.3);
  border-radius: 50%;
  z-index: 10;
}

.grow-shape-circle-2 {
  bottom: -30px;
  left: 43%;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(1, 22, 39, 0.2);
  border-radius: 50%;
  z-index: 10;
}

.grow-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.grow-content {
  padding: 0;
}

.grow-title {
  font-size: 2.75rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.grow-desc {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 100%; /* Allows 2 lines */
}

.grow-desc strong {
  color: var(--text-white);
}

/* Team Illustration Visual */
.grow-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.grow-img {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-top: 25px;
    margin-bottom: -25px;
    display: block;
    transition: transform 0.5s var(--transition-slow);
  }

.grow-img:hover {
  transform: translateY(-6px) scale(1.01);
}

/* ==========================================
   SCHEDULE MEETING CARD CONTAINER
   ========================================== */
.schedule-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: visible;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-strip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 48px, var(--content-width));
  height: 120px;
  background-color: #011531;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.schedule-section .container {
  position: relative;
  z-index: 2;
}
  
  .schedule-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid rgba(0, 151, 166, 0.15);
    border-radius: 40px;
    padding: 40px 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(1, 21, 49, 0.05);
    overflow: hidden;
  }

/* Abstract Background Shapes matching screenshot exactly */
.shape {
  position: absolute;
  pointer-events: none;
}

/* Solid Teal Triangles in Corners */
.shape-triangle-tl {
  width: 140px;
  height: 140px;
  background: #0097a6;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
}

.shape-triangle-br {
  width: 140px;
  height: 140px;
  background: #0097a6;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  bottom: 0;
  right: 0;
  opacity: 1;
  z-index: 1;
}

/* Soft light blue curved semi-circle/quadrant overlays */
.shape-curve-tl {
  width: 250px;
  height: 250px;
  background: rgba(0, 151, 166, 0.06);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.shape-curve-br {
  width: 250px;
  height: 250px;
  background: rgba(0, 151, 166, 0.06);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* 4x4 Grid of Teal/Cyan Dots */
.shape-dots-tl {
  width: 72px;
  height: 72px;
  background-image: radial-gradient(#0097a6 25%, transparent 25%);
  background-size: 18px 18px;
  top: 35px;
  left: 175px;
  opacity: 0.85;
  z-index: 1;
}

.shape-dots-br {
  width: 72px;
  height: 72px;
  background-image: radial-gradient(#0097a6 25%, transparent 25%);
  background-size: 18px 18px;
  bottom: 35px;
  right: 175px;
  opacity: 0.85;
  z-index: 1;
}

/* Large Thin Teal Circle Outlines */
.shape-circle-bl {
  width: 220px;
  height: 220px;
  border: 2px solid rgba(0, 151, 166, 0.4);
  border-radius: 50%;
  left: -60px;
  bottom: -60px;
  opacity: 1;
  z-index: 1;
}

.shape-circle-tr {
  width: 220px;
  height: 220px;
  border: 2px solid rgba(0, 151, 166, 0.4);
  border-radius: 50%;
  right: -60px;
  top: -60px;
  opacity: 1;
  z-index: 1;
}

/* Custom Cyan Rounded Button for Schedule Card */
.schedule-card .btn-primary {
  background: #0097a6;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 45px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.schedule-card .btn-primary:hover {
  background: #00838f;
  transform: translateY(-2px);

}

.schedule-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
  }
  
  .schedule-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
  }
  
  .schedule-desc {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 32px;
  }

/* ==========================================
   FOOTER SECTION
   ========================================== */
.main-footer {
  background-color: #011128;
  color: var(--text-white);
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--content-width);
  margin: 0 auto 40px auto;
  padding: 0 24px 40px 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Left info side */
.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding-left: 0; /* Centered container handles the offset */
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .footer-info {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-info {
    padding-left: 0;
  }
}

.footer-logo .logo-image {
  height: 48px;
}

.footer-logo .logo-top {
  font-size: 0.85rem;
}

.footer-logo .logo-bottom {
  font-size: 1.3rem;
}

.branch-offices {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted-light);
  margin-top: 12px;
}

/* Right links side */
.footer-links-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-width: 350px;
  padding-right: 0; /* Centered container handles the offset */
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .footer-links-container {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .footer-links-container {
    padding-right: 0;
    min-width: 0;
  }
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.links-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

/* Bottom metadata bar */
.footer-bottom {
  border-top: none;
  padding: 0 0 10px;
  background-color: transparent;
}

.footer-bottom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.footer-legal a:hover {
  color: var(--cyan);
}

.legal-divider {
  opacity: 0.3;
}

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

.disclaimer {
  font-size: 0.75rem;
  color: #475569;
  max-width: 600px;
  line-height: 1.4;
}

/* ==========================================
   ANIMATIONS SYSTEM
   ========================================== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
  .hero-section {
    aspect-ratio: auto;
    height: auto !important;
    min-height: 85vh;
    padding: 140px 0 80px;
  }

  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
    padding-top: 40px !important;
  }
  
  .geometric-collage-container {
    height: auto !important;
    max-height: 380px !important;
    margin-top: 20px !important;
    justify-content: center !important;
  }
  
  .geometric-collage {
    transform: none !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-section {
    padding: 0 40px 80px 40px;
  }

  .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .feature-row.reverse .feature-visual {
    order: 0;
  }
  
  .partner-logos-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .grow-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .grow-visual {
    order: -1;
  }
  
  .grow-visual .office-mockup {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  .features-section {
    padding: 0 20px 60px 20px;
  }

  /* Navigation Menu Panel toggle styles */
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-slow);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    display: block;
  }
  
  .btn-contact {
    width: 100%;
  }

  .partner-logos-container {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  
  .links-subgrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .schedule-card {
    padding: 40px 20px;
  }
  
  .schedule-title {
    font-size: 2rem;
  }
}

/* ==========================================
   SERVICES PAGE STYLES (NEW)
   ========================================== */

/* Badge */
.pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cyan);
  color: var(--text-white);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--border-radius-pill);
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(0, 151, 166, 0.2);
}

/* Services Hero */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f3fc 100%);
  padding: 160px 0 100px;
  min-height: clamp(460px, 64vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: none;
}

.services-hero-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.services-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
  text-align: left;
}

/* Careers Page Hero Text Colors */
.careers-page .hero-title {
  color: #0D213C !important;
}
.news-page-title {
  color: #0C1F3C;
}
.careers-page .hero-subtitle {
  color: #475569 !important;
}

.geometric-collage-container {
  position: relative;
  width: 100%;
  height: 620px; /* Significantly increased for a large, imposing presence */
  display: flex;
  align-items: center;
  justify-content: center;
}

.geometric-collage {
  width: 100%;
  max-width: 680px; /* Expanded maximum width to make it exceptionally big */
  height: auto;
  transition: transform 0.5s var(--transition-slow);
  transform: scale(1.28); /* Increased zoom scale to make the graphic shapes bold and fill the hero area */
}

.geometric-collage:hover {
  transform: translateY(-8px) scale(1.32);
}

/* ==========================================
   EXPLORE SERVICES PAGE 2-INCH SIDE GAPS
   ========================================== */
@media (min-width: 993px) {
  .services-page .why-scale-section,
  .services-page .service-section,
  .services-page .testimonial-section,
  .services-page .schedule-section {
    padding-left: 1in !important;
    padding-right: 1in !important;
    box-sizing: border-box;
  }
}

@media (max-width: 992px) {
  .services-page .why-scale-section,
  .services-page .service-section,
  .services-page .testimonial-section,
  .services-page .schedule-section {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (max-width: 768px) {
  .services-page .why-scale-section,
  .services-page .service-section,
  .services-page .testimonial-section,
  .services-page .schedule-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Solutions / Orbit Section */
.why-scale-section {
  background-color: var(--primary-navy);
  color: var(--text-white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-scale-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  margin-top: 60px;
}

.why-scale-subtitle {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-white);
}

.why-scale-desc {
  font-size: 1.25rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  font-weight: 300;
}

.orbit-diagram-container {
  position: relative;
  width: 380px;
  height: 380px;
  max-width: none;
  flex-shrink: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.orbit-center-logo {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #011128;
  border: 1px solid #ffffff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.orbit-center-logo img {
  width: 100%;
  height: auto;
}

.orbit-diagram-container .orbit-node {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background-color: rgba(1, 17, 40, 0.8);
  border: 1.5px solid var(--cyan);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 15px rgba(0, 178, 198, 0.15), 0 0 15px rgba(0, 178, 198, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.orbit-diagram-container .orbit-node svg {
  transition: transform 0.3s ease;
}

.orbit-diagram-container .orbit-node:hover {
  background-color: var(--cyan);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.orbit-diagram-container .orbit-node:hover svg {
  transform: scale(1.2);
}

/* Pause the orbit rotation when user hovers over the entire orbit container */
.orbit-diagram-container:hover .orbit-node {
  animation-play-state: paused;
}

/* Position nodes in circle using rotation variables and perfect trigonometry */
.orbit-diagram-container .node-1 { animation: orbit-node-1 25s linear infinite; }
.orbit-diagram-container .node-2 { animation: orbit-node-2 25s linear infinite; }
.orbit-diagram-container .node-3 { animation: orbit-node-3 25s linear infinite; }
.orbit-diagram-container .node-4 { animation: orbit-node-4 25s linear infinite; }
.orbit-diagram-container .node-5 { animation: orbit-node-5 25s linear infinite; }

@keyframes orbit-node-1 {
  from { transform: rotate(0deg) translateY(-140px) rotate(0deg); }
  to { transform: rotate(360deg) translateY(-140px) rotate(-360deg); }
}
@keyframes orbit-node-2 {
  from { transform: rotate(72deg) translateY(-140px) rotate(-72deg); }
  to { transform: rotate(432deg) translateY(-140px) rotate(-432deg); }
}
@keyframes orbit-node-3 {
  from { transform: rotate(144deg) translateY(-140px) rotate(-144deg); }
  to { transform: rotate(504deg) translateY(-140px) rotate(-504deg); }
}
@keyframes orbit-node-4 {
  from { transform: rotate(216deg) translateY(-140px) rotate(-216deg); }
  to { transform: rotate(576deg) translateY(-140px) rotate(-576deg); }
}
@keyframes orbit-node-5 {
  from { transform: rotate(288deg) translateY(-140px) rotate(-288deg); }
  to { transform: rotate(648deg) translateY(-140px) rotate(-648deg); }
}

/* Services List alternating rows */
.service-section {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  border-bottom: 1px solid #f1f5f9;
}

.service-section.alt-bg {
  background-color: var(--bg-light-blue);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.service-row.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-row.reverse .service-visual-col {
  order: 2;
}

.service-row.reverse .service-content-col {
  order: 1;
}

.service-title-lg {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.service-desc-lg {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-bullets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
}

.service-bullets-grid.active {
  max-height: 1200px;
  opacity: 1;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-dark);
}

.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cyan);
  flex-shrink: 0;
}

.service-link-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cyan);
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.service-link-label::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  margin-left: 10px;
  order: 1;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-link-label.active::before {
  content: '-';
  transform: rotate(180deg);
  background-color: var(--cyan);
  color: #fff;
}

/* Show + icon on desktop (removed display: none override) */
/*
@media (min-width: 993px) {
  .services-page .service-link-label::before {
    display: none !important;
  }
}
*/

.service-link-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cyan);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-content-col:hover .service-link-label::after {
  transform: scaleX(1);
}

.service-visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.service-illustration-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--border-radius-md);
  filter: drop-shadow(0 15px 30px rgba(1, 22, 39, 0.05));
  transition: transform 0.5s var(--transition-slow), filter 0.5s var(--transition-slow);
  transform: scale(1);
}

.service-illustration-svg:hover {
  transform: translateY(-8px) scale(1.365);
  filter: drop-shadow(0 25px 45px rgba(0, 151, 166, 0.2));
}

/* Stats Container & Cards (About Us Page) */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
.stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 151, 166, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  width: 340px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 5rem;
  font-weight: 800;
  color: #2f6a7c;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.stat-number span {
  font-size: 2.2rem;
  font-weight: 700;
}
.stat-desc {
  color: #011531;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  max-width: 250px;
}

/* Testimonial Section */
.testimonial-section {
  padding: 60px 0;
  background-color: #f0f9ff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e0f2fe;
}

.testimonial-banner-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(0, 180, 216, 0.08);
  filter: blur(100px);
  top: -10%;
  left: -5%;
}

.testimonial-banner-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(20, 184, 166, 0.08);
  filter: blur(100px);
  bottom: -10%;
  right: -5%;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.testimonial-arrow {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background-color: var(--cyan);
  color: var(--text-white);
  border-color: var(--cyan);
  box-shadow: var(--shadow-glow);
}

.testimonial-content {
  text-align: center;
  flex-grow: 1;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
}

@keyframes testimonial-fade {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.testimonial-animate {
  animation: testimonial-fade 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Abstract designs in testimonial banner */
.t-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
}

.t-shape-dots {
  top: 30px;
  left: 30px;
  width: 80px;
  height: 60px;
  background-image: radial-gradient(rgba(0, 151, 166, 0.25) 20%, transparent 20%);
  background-size: 10px 10px;
}

.t-shape-dots-br {
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 60px;
  background-image: radial-gradient(rgba(0, 151, 166, 0.25) 20%, transparent 20%);
  background-size: 10px 10px;
}

.t-shape-triangle-tl {
  width: 100px;
  height: 100px;
  background: rgba(0, 151, 166, 0.1);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  top: 0;
  left: 0;
}

.t-shape-triangle-br {
  width: 100px;
  height: 100px;
  background: rgba(0, 151, 166, 0.1);
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  bottom: 0;
  right: 0;
}

.t-shape-circle-left {
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(0, 151, 166, 0.15);
  border-radius: 50%;
  left: -60px;
  top: calc(50% - 60px);
}

.t-shape-circle-right {
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(0, 151, 166, 0.15);
  border-radius: 50%;
  right: -60px;
  top: calc(50% - 60px);
}

/* Animations */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(0, 180, 216, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(0, 180, 216, 0.6); }
}

/* Responsive Overrides for Services */
@media (max-width: 992px) {
  .services-hero {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .services-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .services-hero-desc {
    margin: 0 auto;
    text-align: center;
  }
  
  .why-scale-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .why-scale-desc {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .service-row.reverse .service-visual-col {
    order: 0;
  }
  
  .service-bullets-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto 32px;
    text-align: left;
  }
  
  .testimonial-wrapper {
    gap: 20px;
  }
  
  .testimonial-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .testimonial-quote {
    font-size: 1.15rem;
  }
  
  .testimonial-arrow {
    display: none; /* Hide arrows on mobile to save space */
  }
  
  .testimonial-content {
    padding: 0 16px;
  }
}

/* ==========================================
   ABOUT PAGE STYLES (NEW)
   ========================================== */

/* About Hero Bullet List */
.about-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.about-bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--cyan-light);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Core Values Grid Section */
.values-staggered-section {
  padding: 40px 0;
  background-color: var(--bg-white);
  overflow: hidden;
}

.values-staggered-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 90px; /* 90px (~1 inch) gap perfectly maintained on both sides */
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 30px; /* Reduced gap between image and text */
  max-width: 1100px; /* Widened significantly so text can spread into 3 lines */
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: none;
}

.value-row:nth-child(even) {
  align-self: flex-end;
}

.value-row:nth-child(odd) {
  align-self: flex-start;
}

.value-visual {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-row:hover .value-visual {
  transform: scale(1.08);
}

.value-illustration {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin-top: -10px;
  mix-blend-mode: multiply;
}

.value-content {
  flex-grow: 1;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-desc {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* Accordion E-Commerce Growth Approach */
.approach-accordion-section {
  padding: 100px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.approach-accordion-header {
  margin-bottom: 60px;
  text-align: center;
}

.approach-accordion-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.approach-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(1, 22, 39, 0.015);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(0, 151, 166, 0.2);
}

.accordion-item.active {
  border-color: var(--primary-navy);
  box-shadow: 0 10px 25px rgba(1, 22, 39, 0.05);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-navy);
  color: var(--text-white);
}

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--cyan);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 24px;
  background: var(--bg-white);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid #f1f5f9;
}

.accordion-desc-text {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin: 0;
}

.approach-visual-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.approach-mockup-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(1, 22, 39, 0.08));
}

/* Proud of our people section */
.people-section {
  padding: 100px 0;
  background-color: var(--bg-white);
  text-align: center;
}

.people-title-accent {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.people-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.people-stat-card {
  background: var(--bg-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.people-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 151, 166, 0.2);
}

.stat-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--cyan-light);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-number .highlight-cyan {
  color: var(--cyan);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  font-weight: 500;
  max-width: 250px;
  margin: 0 auto;
}

/* Want to build brands CTA Section */
.build-brands-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background-color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands-collage-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.25;
  z-index: 1;
}

.brands-cta-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  padding: 0 24px;
}

.brands-cta-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.brands-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.btn-gold {
  background-color: #ffb703;
  color: var(--text-white);

}

.btn-gold:hover {
  background-color: #fb8500;
  transform: translateY(-2px);

  color: var(--text-white);
}

/* Keyframes */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive media query overrides for About page */
@media (max-width: 992px) {
  .values-staggered-container {
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
  }
  
  .value-row {
    align-self: center !important;
    margin: 0 !important;
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }
  
  .approach-accordion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .approach-visual-mockup {
    order: 1; /* Keep visual below accordion list on tablet/mobile */
  }
}

@media (max-width: 768px) {
  .people-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .brands-cta-card {
    padding: 35px 20px;
  }

  .cta-white-box {
    padding: 40px 20px !important;
  }
  
  .cta-white-box h2 {
    font-size: 1.85rem !important;
    margin-bottom: 25px !important;
  }

  .job-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 24px 20px !important;
  }
  
  .job-card .btn {
    width: 100% !important;
    text-align: center !important;
  }
}

/* --- SCROLL REVEAL IMAGE FADE-IN ANIMATION --- */
.scroll-reveal {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.85s cubic-bezier(0.215, 0.61, 0.355, 1) !important, 
              transform 0.85s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Standard feature row styling applies to all 4 sections for perfect layout uniformity */

/* ==========================================
   GLOBAL SCALE UP (All Sections & Pages)
   ========================================== */

/* Titles */
.intro-title, .section-title, .schedule-title, .feature-title {
  font-size: 3.2rem !important;
  line-height: 1.15;
}

.grow-title, .service-title-lg {
  font-size: 3.4rem !important;
  line-height: 1.15;
}

.hero-title {
  font-size: clamp(3.75rem, 6.5vw, 5.5rem) !important;
}

/* Descriptions */
.intro-desc, .section-subtitle, .schedule-desc, .feature-desc, .grow-desc, .hero-subtitle, .service-desc-lg {
  font-size: 1.3rem !important;
  line-height: 1.6;
}

/* Images */
.feature-img {
  max-width: 100% !important;
  width: 600px;
}

.grow-img {
  max-width: 100% !important;
  width: 550px;
}

.service-illustration-svg {
  max-width: 480px !important;
  width: 100%;
}

/* Hide all inline button arrows globally */
.arrow-inline {
  display: none !important;
}

/* --- NEWS & RESOURCES PAGE STYLES --- */
.featured-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 151, 166, 0.1) !important;
  border-color: rgba(0, 151, 166, 0.3) !important;
}

.news-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0, 151, 166, 0.1) !important;
  border-color: var(--cyan) !important;
}

/* --- CAREERS PAGE STYLES --- */
.careers-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 90px;
  width: 100%;
}

@media (max-width: 992px) {
  .careers-container {
    padding: 0 40px;
  }
}

@media (max-width: 576px) {
  .careers-container {
    padding: 0 20px;
  }
}

.benefit-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 15px 30px rgba(0, 151, 166, 0.08) !important;
  border-color: rgba(0, 151, 166, 0.3) !important;
}

.job-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px rgba(0, 151, 166, 0.1) !important;
  border-color: var(--cyan) !important;
}


/* --- HERO TYPEWRITER ANIMATION --- */
.typewriter-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 9vw, 6.5rem) !important;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  min-height: 1.2em;
}
.typewriter-cursor {
  color: var(--cyan);
  animation: cursorBlink 0.8s infinite;
  font-weight: 400;
  margin-left: 2px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ==========================================================================
   PREMIUM RESPONSIBILITY & NAVIGATION NAVIGATION (SCALE ON INSIGHTS ADDITIONS)
   ========================================================================== */

/* --- 1. SERVICES INTERACTIVE DROPDOWN MENU (DESKTOP MODE) --- */
@media (min-width: 1025px) {
  .nav-item.dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 260px;
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md, 12px);
    box-shadow: var(--shadow-lg), 0 10px 40px rgba(0,0,0,0.4);
    padding: 15px 0;
    margin-top: 12px;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
    z-index: 1002;
  }
  
  /* Sleek pointer arrow on desktop dropdown */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
  }

  .nav-item.dropdown:hover .dropdown-menu,
  .nav-item.dropdown:focus-within .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #011530;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.25s ease;
    text-align: left;
  }
  
  .dropdown-item:hover {
    color: #011530;
    background: rgba(0, 151, 166, 0.2);
    padding-left: 28px;
  }
  
  .dropdown-arrow {
    font-size: 0.8rem;
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    vertical-align: middle;
  }
  
  .nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--cyan);
  }
}

/* --- 2. MOBILE NAVIGATION DRAWER & ACCORDION (MAX 1024PX) --- */
@media (max-width: 1024px) {
  .main-header {
    padding: 12px 0 !important;
  }
  
  .header-container {
    padding-left: 20px !important;
    padding-right: 15px !important;
  }
  
  .mobile-nav-toggle {
    display: block !important;
    padding-right: 5px !important;
  }
  
  /* Glassmorphism Navigation Panel */
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 320px !important;
    max-width: 85% !important;
    height: 100vh !important;
    background: #ffffff !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 110px 35px 50px 35px !important;
    gap: 35px !important;
    box-shadow: -10px 0 45px rgba(0, 0, 0, 0.35) !important;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 999 !important;
    overflow-y: auto !important;
  }
  
  .nav-menu.active {
    right: 0 !important;
  }
  
  .nav-list {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 25px !important;
    width: 100% !important;
  }
  
  .nav-link {
    font-size: 1.3rem !important;
    width: 100% !important;
    display: block !important;
    color: #011530 !important;
  }
  
  .btn-contact {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 15px !important;
  }
  
  /* Collapsible Accordion Dropdown Menu for Mobile/Tablet */
  .dropdown-menu {
    position: static !important;
    display: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-left: 2px solid rgba(0, 151, 166, 0.3) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 10px 0 0 15px !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
    min-width: 0 !important;
  }
  
  .dropdown-active .dropdown-menu {
    display: block !important;
    animation: menuSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  
  @keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .dropdown-item {
    display: block !important;
    padding: 8px 16px !important;
    color: #011530 !important;
    font-family: var(--font-heading) !important;
    font-size: 0.98rem !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
  }
  
  .dropdown-item:hover {
    color: var(--cyan) !important;
  }
  
  .dropdown-arrow {
    font-size: 0.75rem;
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
  }
}

/* --- 3. PREMIUM ANIMATED 3-LINE HAMBURGER TO X --- */
.mobile-nav-toggle {
  outline: none;
  border-radius: 4px;
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.hamburger {
  width: 25px;
  height: 2px;
  background-color: var(--text-white);
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger::before,
.hamburger::after {
  background-color: var(--text-white);
  width: 25px;
  height: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s ease, bottom 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent !important;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) !important;
  top: 0 !important;
  background-color: #011530 !important;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) !important;
  bottom: 0 !important;
  background-color: #011530 !important;
}

/* --- 4. COMPREHENSIVE DEVICES OVERFLOW & CROP-FREE FIXES --- */

/* Mobile viewport crop and overflow fixes */
@media (max-width: 767px) {
  .approach-accordion-header {
    text-align: center !important;
  }
  
  .approach-accordion-header .section-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Solid blue background for hero section on mobile to prevent layout shape overlaps */
  .hero-section {
    position: relative !important;
    background-image: none !important;
    background-color: #001530 !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('image/mobile%20hero.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.15 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .hero-bg-shapes,
  .geometric-shapes,
  .hero-glow {
    display: none !important;
  }
  
  .hero-section .hero-content {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 20px !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }

  /* Prevent horizontal grid form cropping */
  #soi-contact-form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-bottom: 15px !important;
  }
  
  #soi-contact-form {
    padding: 30px 20px !important;
  }
  
  /* Scale orbit diagram down properly to avoid scroll overflow */
  .orbit-diagram-container {
    transform: scale(0.85) !important;
    transform-origin: center !important;
    margin: 30px 0 !important;
  }
  .why-scale-grid {
    justify-items: center !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
  }
  
  .why-scale-content {
    text-align: center !important;
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Stack testimonial sections & center them */
  .testimonial-quote {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
  }
  
  .featured-card {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .featured-card .featured-img {
    min-height: 200px !important;
    width: 100% !important;
  }
  
  .featured-card .featured-content {
    padding: 20px !important;
    width: 100% !important;
  }
  
  .hero-title, .services-hero-title {
    font-size: 2.35rem !important;
    line-height: 1.2 !important;
  }
  
  .services-hero-desc, .hero-subtitle {
    font-size: 1.05rem !important;
  }
  
  .section-title, .service-title-lg, .grow-title, .intro-title, .schedule-title, .feature-title {
    font-size: 1.85rem !important;
  }
  
  .approach-video-container {
    min-height: 250px !important;
  }
  
  /* Footer stacking fixes */
  .footer-bottom-container {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }
  
  .footer-legal {
    justify-content: center !important;
  }
  
  .footer-grid {
    flex-direction: column !important;
    gap: 40px !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .footer-info, .footer-links-container {
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  
  .footer-logo {
    margin-left: 0 !important;
    justify-content: center !important;
  }
  
  .branch-offices {
    margin: 15px 0 0 0 !important;
  }
  
  .links-subgrid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    text-align: center !important;
    justify-items: center !important;
  }
  
  .footer-links-list {
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
}

/* Tablet viewport scaling adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .orbit-diagram-container {
    transform: scale(0.85) !important;
    transform-origin: center !important;
    margin: 20px auto !important;
  }
  
  .why-scale-content {
    text-align: center !important;
    padding-left: 0 !important;
  }
  
  .footer-grid {
    gap: 40px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  
  .footer-info {
    padding-left: 0 !important;
  }
  
  .footer-links-container {
    padding-right: 0 !important;
  }
}

/* Clean wrapping and general image fixes */
@media (max-width: 992px) {
  .feature-row {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }
  
  .feature-row.reverse .feature-visual {
    order: 0 !important;
  }
  
  .feature-row.reverse .feature-content {
    order: 1 !important;
  }
  
  .feature-content {
    padding: 0 !important;
  }
  
  .feature-img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  #ai-powered-row .feature-img {
    transform: scale(1) !important;
    max-width: 100% !important;
  }
  
  #ai-powered-row .feature-img:hover {
    transform: translateY(-8px) scale(1.01) !important;
  }
  
  /* Staggered value rows on about page */
  .value-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }
  
  .value-visual {
    margin-bottom: 10px !important;
  }
  
  .approach-accordion-left-col {
    padding-left: 0 !important;
  }
  
  .approach-mockup-svg {
    transform: scale(1) !important;
  }
}

/* Footer PUNE branch text alignment */
@media (min-width: 768px) {
  .footer-info {
    justify-content: flex-start !important;
    gap: 16px !important;
  }
  .footer-logo {
    margin-bottom: 0 !important;
  }
  .branch-offices {
    margin: 0 !important;
  }
}

/* --- 5. MOBILE OVERLAPPING DECORATIONS & FORMS FIXES --- */
@media (max-width: 768px) {
  .schedule-card .shape {
    display: none !important;
  }
  .testimonial-section .shape,
  .testimonial-section [class*="t-shape-"] {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 15px !important;
  }
  .newsletter-form input {
    width: 100% !important;
  }
  .newsletter-form button {
    width: 100% !important;
  }
}

/* ==========================================================================
   EXPLORE SERVICES PAGE TEXT CENTER ALIGNMENT OVERRIDES (MOBILE ONLY)
   ========================================================================== */
@media (max-width: 767px) {
  .services-page .services-hero-title,
  .services-page .services-hero-desc,
  .services-page .why-scale-subtitle,
  .services-page .why-scale-desc,
  .services-page .service-title-lg,
  .services-page .service-desc-lg,
  .services-page .service-link-label {
    text-align: center !important;
  }

  .service-link-label {
    white-space: nowrap !important;
    font-size: clamp(0.85rem, 3.8vw, 1.1rem) !important;
    justify-content: center !important;
  }

  .services-page .hero-content {
    align-items: center !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .services-page .hero-divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-page .services-hero-desc {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-page .why-scale-content {
    text-align: center !important;
    padding-left: 0 !important;
  }

  .services-page .why-scale-desc {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .services-page .service-content-col {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .services-page .service-bullets-grid {
    text-align: left !important;
    justify-content: flex-start !important;
    max-width: 480px !important;
  }

  .services-page .service-bullets-grid.active {
    margin: 20px auto !important;
    max-height: 1200px !important;
  }

  .services-page .service-bullet-item {
    justify-content: flex-start !important;
  }
}

@media (min-width: 769px) {
  .cta-white-box h2 {
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   AI-POWERED E-COMMERCE EXACT ILLUSTRATION ANIMATION SYSTEM
   ========================================================================== */

.animation-visual-exact {
  position: relative;
  width: 100%;
  max-width: 600px !important;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible !important;
  background: transparent;
}

.ai-commerce-svg-exact {
  width: 100%;
  height: 100%;
  max-height: 600px;
  overflow: visible;
  user-select: none;
}

/* --- ANIMATION KEYFRAMES --- */

/* Gentle Floating Animations */
@keyframes float-chip {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

@keyframes float-laptop {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes float-analytics {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes float-cart {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-package {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-1.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Pulsing Glows */
@keyframes glow-pulse-chip {
  0% { r: 40px; opacity: 0.1; }
  50% { r: 52px; opacity: 0.35; }
  100% { r: 40px; opacity: 0.1; }
}

@keyframes glow-pulse-icon {
  0% { r: 32px; opacity: 0.05; }
  50% { r: 44px; opacity: 0.25; }
  100% { r: 32px; opacity: 0.05; }
}

@keyframes bg-glow-breath {
  0% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.75; transform: scale(1.05); }
  100% { opacity: 0.4; transform: scale(0.95); }
}

/* Twinkling Dots Grid */
@keyframes dot-twinkle {
  0%, 100% { fill-opacity: 0.3; }
  50% { fill-opacity: 0.75; }
}

/* Slow Circle Rotation */
@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Screen Glare reflection sweep */
@keyframes glare-sweep {
  0% { transform: translate(-100px, 0); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translate(250px, 0); opacity: 0; }
}

/* Draw-up effect for analytics graph lines */
@keyframes draw-path {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}

/* --- APPLY ANIMATION TIMELINES --- */

/* Floating groups with transform-origin set to their center coordinates */
.icon-group-chip {
  transform-origin: 425px 270px;
  animation: float-chip 5s ease-in-out infinite;
}

.laptop-group {
  transform-origin: 425px 466px;
  animation: float-laptop 6s ease-in-out infinite;
}

.icon-group-analytics {
  transform-origin: 240px 420px;
  animation: float-analytics 5.5s ease-in-out infinite;
}

.icon-group-cart {
  transform-origin: 610px 460px;
  animation: float-cart 4.8s ease-in-out infinite;
}

.icon-group-package {
  transform-origin: 425px 580px;
  animation: float-package 6.2s ease-in-out infinite;
}

/* Glow Pulses */
.chip-glow-pulse {
  transform-origin: 425px 270px;
  animation: glow-pulse-chip 2.5s ease-in-out infinite;
}

.analytics-glow {
  transform-origin: 240px 420px;
  animation: glow-pulse-icon 3s ease-in-out infinite;
}

.cart-glow {
  transform-origin: 610px 460px;
  animation: glow-pulse-icon 3.2s ease-in-out infinite 0.5s;
}

.package-glow {
  transform-origin: 425px 580px;
  animation: glow-pulse-icon 2.8s ease-in-out infinite 1s;
}

.bg-glow {
  transform-origin: 425px 450px;
  animation: bg-glow-breath 8s ease-in-out infinite;
}

/* Background elements */
.bg-solid-circle {
  transform-origin: 220px 590px;
  animation: rotate-clockwise 30s linear infinite;
}

.bg-wire-circle {
  transform-origin: 160px 640px;
  animation: rotate-counter-clockwise 25s linear infinite;
}

.bg-quarter-circle {
  transform-origin: 550px 250px;
  animation: float-laptop 8s ease-in-out infinite alternate;
}

.bg-dots-grid circle {
  animation: dot-twinkle 3s ease-in-out infinite;
}

/* Stagger dots twinkle delay */
.bg-dots-grid circle:nth-child(2n) { animation-delay: 0.5s; }
.bg-dots-grid circle:nth-child(3n) { animation-delay: 1s; }
.bg-dots-grid circle:nth-child(4n) { animation-delay: 1.5s; }

/* Laptop reflection glare */
.laptop-screen-glare {
  animation: glare-sweep 6s ease-in-out infinite;
}

/* Analytics Graph Line animation */
.analytics-trend-line, .analytics-trend-arrow {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-path 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Connection cable particle movements along their paths */
.dash-particle {
  animation: energy-travel-exact 4s linear infinite;
  opacity: 0;
}

.particle-1 {
  offset-path: path("M 300,380 C 300,290 320,290 425,290 C 530,290 550,290 550,380");
  animation-delay: 0s;
}

.particle-2 {
  offset-path: path("M 425,450 C 310,450 310,580 425,580");
  animation-delay: 1.2s;
  animation-duration: 4.5s;
}

.particle-3 {
  offset-path: path("M 425,450 C 540,450 540,580 425,580");
  animation-delay: 2.3s;
  animation-duration: 4.5s;
}

@keyframes energy-travel-exact {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}


/* ==========================================================================
   AI-POWERED OPERATIONAL EFFICIENCY EXACT ILLUSTRATION ANIMATION SYSTEM
   ========================================================================== */

/* Keyframes for Gear & Process arrow rotations */
@keyframes gear-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* Floating Card Animations */
@keyframes float-checklist {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes float-analytics-eff {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

@keyframes float-dashboard-eff {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes float-bot {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Checkmarks sequential illumination */
@keyframes checkmark-illuminate {
  0%, 100% { fill: #cbd5e1; fill-opacity: 0.3; }
  30%, 70% { fill: #00B8C4; fill-opacity: 1; }
}

@keyframes check-icon-glow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(0, 184, 196, 0)); }
  30%, 70% { filter: drop-shadow(0 0 6px rgba(0, 184, 196, 0.6)); }
}

/* Graph line drawing */
@keyframes draw-graph-eff {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}

/* Data points pulsing */
@keyframes pulse-data-point {
  0%, 100% { r: 3px; fill-opacity: 1; }
  50% { r: 5px; fill-opacity: 0.7; }
}

/* Shimmer/fade for chart segments */
@keyframes chart-segment-pulse {
  0%, 100% { stroke-opacity: 0.9; }
  50% { stroke-opacity: 0.65; }
}

/* Robot face blinks */
@keyframes bot-eye-blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

/* Apply transform origins and animations */
.panel-checklist {
  transform-origin: 252px 460px;
  animation: float-checklist 5.5s ease-in-out infinite;
}

.panel-analytics {
  transform-origin: 632px 340px;
  animation: float-analytics-eff 6s ease-in-out infinite;
}

.panel-dashboard {
  transform-origin: 652px 527px;
  animation: float-dashboard-eff 5s ease-in-out infinite;
}

.icon-group-bot {
  transform-origin: 425px 575px;
  animation: float-bot 5.8s ease-in-out infinite;
}

/* Gear system rotations */
.main-gear-wheel {
  transform-origin: 430px 395px;
  animation: gear-rotate 12s linear infinite;
}

.process-arrows-cycle {
  transform-origin: 430px 395px;
  animation: arrows-rotate 8s linear infinite;
}

/* Sequenced checklist rows */
.chk-row-1 .chk-circle-1 {
  animation: checkmark-illuminate 4s infinite 0.2s;
}
.chk-row-1 {
  animation: check-icon-glow 4s infinite 0.2s;
}

.chk-row-2 .chk-circle-2 {
  animation: checkmark-illuminate 4s infinite 1.2s;
}
.chk-row-2 {
  animation: check-icon-glow 4s infinite 1.2s;
}

.chk-row-3 .chk-circle-3 {
  animation: checkmark-illuminate 4s infinite 2.2s;
}
.chk-row-3 {
  animation: check-icon-glow 4s infinite 2.2s;
}

/* Analytics Graph animation */
.analytics-path-line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw-graph-eff 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.analytics-graph-container circle {
  transform-origin: center;
  animation: pulse-data-point 3s ease-in-out infinite;
}

.analytics-graph-container circle:nth-child(2) { animation-delay: 0.3s; }
.analytics-graph-container circle:nth-child(3) { animation-delay: 0.6s; }
.analytics-graph-container circle:nth-child(4) { animation-delay: 0.9s; }
.analytics-graph-container circle:nth-child(5) { animation-delay: 1.2s; }

/* Dashboard segment pulsing */
.donut-dark-slice, .donut-light-slice {
  animation: chart-segment-pulse 3s ease-in-out infinite;
}
.donut-light-slice {
  animation-delay: 1.5s;
}

/* Bot & Gear Animations */
.bot-glow-pulse {
  transform-origin: 425px 575px;
  animation: glow-pulse-chip 2.5s ease-in-out infinite;
}

.gear-glow-pulse {
  transform-origin: 430px 395px;
  animation: glow-pulse-chip 2s ease-in-out infinite;
}

.bot-eye {
  transform-origin: center;
  animation: bot-eye-blink 4s infinite;
}
.bot-eye.bot-eye-left, .bot-eye:nth-child(8) {
  transform-origin: 417px 570px;
}
.bot-eye.bot-eye-right, .bot-eye:nth-child(9) {
  transform-origin: 433px 570px;
}

/* Intersecting dots cross grid twinkling */
.bg-dots-grid circle {
  animation: dot-twinkle 3s ease-in-out infinite;
}

.bg-dots-grid circle:nth-child(2n) { animation-delay: 0.4s; }
.bg-dots-grid circle:nth-child(3n) { animation-delay: 0.8s; }
.bg-dots-grid circle:nth-child(4n) { animation-delay: 1.2s; }

/* Cable network particle flows */
.particle-eff-1 {
  offset-path: path("M 255,480 L 255,590 L 390,590");
  animation: energy-travel-exact 4s linear infinite;
}

.particle-eff-2 {
  offset-path: path("M 460,590 L 530,590 L 530,540 L 570,540");
  animation: energy-travel-exact 4.5s linear infinite 1s;
}

.particle-eff-3 {
  offset-path: path("M 560,340 L 500,340 L 500,400 L 465,400");
  animation: energy-travel-exact 3.8s linear infinite 2s;
}

/* Dashboard list lines loading shimmer */
@keyframes shimmer-line {
  0%, 100% { fill: #cbd5e1; fill-opacity: 0.6; }
  50% { fill: #00B8C4; fill-opacity: 1; filter: drop-shadow(0 0 2px rgba(0, 184, 196, 0.4)); }
}

.dash-line {
  transform-origin: center;
}

.dash-line-1 {
  animation: shimmer-line 3s infinite 0.2s;
}

.dash-line-2 {
  animation: shimmer-line 3s infinite 0.8s;
}

.dash-line-3 {
  animation: shimmer-line 3s infinite 1.4s;
}


/* ==========================================================================
   AI-POWERED MARKETPLACE GROWTH EXACT ILLUSTRATION ANIMATION SYSTEM
   ========================================================================== */

/* Floating Panels and Widget Groups */
@keyframes float-dashboard-growth {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

@keyframes float-pricing {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(0.8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes bounce-cart {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes float-analytics-growth {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Apply widget transforms */
.panel-main-dashboard {
  transform-origin: 480px 510px;
  animation: float-dashboard-growth 6.5s ease-in-out infinite;
}

.panel-pricing-tag {
  transform-origin: 730px 515px;
  animation: float-pricing 5.2s ease-in-out infinite;
}

.panel-shopping-cart {
  transform-origin: 657px 692px;
  animation: bounce-cart 4.5s ease-in-out infinite;
}

.panel-analytics-card {
  transform-origin: 310px 687px;
  animation: float-analytics-growth 5.8s ease-in-out infinite;
}

/* Dashboard Slanted Glare Sweep */
@keyframes glare-sweep-growth {
  0% { transform: translate(-150px, 0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translate(300px, 0); opacity: 0; }
}

.dashboard-screen-glare {
  animation: glare-sweep-growth 7s ease-in-out infinite;
}

/* Product Showcase (Armchair breathing highlight) */
@keyframes chair-breath {
  0%, 100% { fill-opacity: 0.2; }
  50% { fill-opacity: 0.5; }
}

.armchair-artwork rect:last-child {
  animation: chair-breath 3.5s ease-in-out infinite;
}

/* Rising Chart Graph Trend Drawing */
@keyframes draw-graph-growth {
  0% { stroke-dashoffset: 150; }
  100% { stroke-dashoffset: 0; }
}

.growth-trend-line {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: draw-graph-growth 5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes arrow-glow {
  0%, 40% { opacity: 0; }
  80%, 100% { opacity: 1; filter: drop-shadow(0 0 4px #00B8C4); }
}

.growth-trend-arrow {
  animation: arrow-glow 5s ease-in-out infinite alternate;
}

/* Vertex Data Points Pulsing */
@keyframes pulse-vertex {
  0%, 100% { r: 3px; fill-opacity: 1; }
  50% { r: 4.5px; fill-opacity: 0.75; }
}

.analytics-chart-box circle {
  transform-origin: center;
  animation: pulse-vertex 3s ease-in-out infinite;
}

.analytics-chart-box circle:nth-child(2) { animation-delay: 0.3s; }
.analytics-chart-box circle:nth-child(3) { animation-delay: 0.6s; }
.analytics-chart-box circle:nth-child(4) { animation-delay: 0.9s; }
.analytics-chart-box circle:nth-child(5) { animation-delay: 1.2s; }
.analytics-chart-box circle:nth-child(6) { animation-delay: 1.5s; }

/* Pricing Tag pulse & glow */
@keyframes tag-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(0, 143, 160, 0)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 0 8px rgba(0, 143, 160, 0.45)); }
}

.pricing-tag-group {
  transform-origin: 730px 505px;
  animation: tag-pulse 4s ease-in-out infinite;
}

/* Cart success checkmark badge glow */
@keyframes success-badge-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(0, 184, 196, 0)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 6px rgba(0, 184, 196, 0.6)); }
}

.cart-success-badge {
  transform-origin: 695px 645px;
  animation: success-badge-pulse 3s ease-in-out infinite;
}

/* Bottom Left Analytics Donut Chart Segment Shimmer */
@keyframes segment-shimmer {
  0%, 100% { stroke-opacity: 0.95; }
  50% { stroke-opacity: 0.45; }
}

.donut-slice-navy {
  animation: segment-shimmer 3s ease-in-out infinite;
}
.donut-slice-teal {
  animation: segment-shimmer 3s ease-in-out infinite 1s;
}
.donut-slice-cyan {
  animation: segment-shimmer 3s ease-in-out infinite 2s;
}

@keyframes active-line-pulse {
  0%, 100% { fill: #00B8C4; fill-opacity: 1; }
  50% { fill: #cbd5e1; fill-opacity: 0.55; }
}

.analytics-active-line {
  animation: active-line-pulse 3s ease-in-out infinite;
}

/* Twinkling dots grid for growth row */
.bg-dots-grid-growth circle {
  animation: dot-twinkle 3.2s ease-in-out infinite;
}

.bg-dots-grid-growth circle:nth-child(2n) { animation-delay: 0.4s; }
.bg-dots-grid-growth circle:nth-child(3n) { animation-delay: 0.8s; }
.bg-dots-grid-growth circle:nth-child(4n) { animation-delay: 1.2s; }

/* Concentric background circles and shaded quarter circle */
.bg-quarter-circle-growth {
  transform-origin: 610px 250px;
  animation: float-dashboard-growth 8s ease-in-out infinite alternate;
}

.bg-solid-circle-growth {
  transform-origin: 150px 720px;
  animation: rotate-clockwise 32s linear infinite;
}

.bg-wire-circle-growth {
  transform-origin: 100px 770px;
  animation: rotate-counter-clockwise 28s linear infinite;
}

/* Interconnecting Cable Flows */
.particle-growth-1 {
  offset-path: path("M 415,650 L 415,700 L 390,700");
  animation: energy-travel-exact 4s linear infinite;
}

.particle-growth-2 {
  offset-path: path("M 495,650 L 495,715 L 610,715");
  animation: energy-travel-exact 4.5s linear infinite 1.2s;
}

.particle-growth-3 {
  offset-path: path("M 640,410 L 725,410 L 725,450");
  animation: energy-travel-exact 3.5s linear infinite 0.5s;
}

.particle-growth-4 {
  offset-path: path("M 730,580 L 730,675 L 705,675");
  animation: energy-travel-exact 4.2s linear infinite 2s;
}


/* ==========================================================================
   AI-POWERED BRAND EXPERIENCES EXACT ILLUSTRATION ANIMATION SYSTEM
   ========================================================================== */

/* Widget Group floats */
.panel-main-studio {
  transform-origin: 515px 510px;
  animation: float-dashboard-growth 6.8s ease-in-out infinite;
}

.panel-brand-palette {
  transform-origin: 272px 530px;
  animation: float-pricing 5.5s ease-in-out infinite 0.5s;
}

.panel-creative-backdrop {
  transform-origin: 705px 407px;
  animation: bounce-cart 4.8s ease-in-out infinite 0.3s;
}

.panel-conversion-kpi {
  transform-origin: 702px 645px;
  animation: float-analytics-growth 6.2s ease-in-out infinite 0.8s;
}

/* Background Canvas & Bottle Liquid active transition timelines (16s cycle) */
@keyframes active-amber {
  0%, 20%, 100% { opacity: 1; }
  25%, 95% { opacity: 0; }
}
@keyframes active-emerald {
  0%, 20%, 50%, 100% { opacity: 0; }
  25%, 45% { opacity: 1; }
}
@keyframes active-cyan {
  0%, 45%, 75%, 100% { opacity: 0; }
  50%, 70% { opacity: 1; }
}
@keyframes active-rose {
  0%, 70%, 100% { opacity: 0; }
  75%, 95% { opacity: 1; }
}

.canvas-bg-amber, .liquid-amber, .ring-amber {
  animation: active-amber 16s infinite ease-in-out;
}
.canvas-bg-emerald, .liquid-emerald, .ring-emerald {
  animation: active-emerald 16s infinite ease-in-out;
}
.canvas-bg-cyan, .liquid-cyan, .ring-cyan {
  animation: active-cyan 16s infinite ease-in-out;
}
.canvas-bg-rose, .liquid-rose, .ring-rose {
  animation: active-rose 16s infinite ease-in-out;
}

.swatch-ring {
  transform-origin: center;
  stroke-dasharray: 80;
  stroke-dashoffset: 0;
}

/* Bounding box dashes animation loop */
@keyframes bounding-box-dash {
  to {
    stroke-dashoffset: -20;
  }
}
.studio-bounding-box rect {
  animation: bounding-box-dash 1.5s linear infinite;
}

/* Magic Wand waving */
@keyframes wand-wave {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  50% { transform: rotate(-8deg) translate(-3px, -2px); }
}
.brand-wand {
  transform-origin: 720px 440px;
  animation: wand-wave 3s ease-in-out infinite;
}

/* Sparkles twinkling loop */
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}
.brand-sparkle path {
  transform-origin: center;
  animation: sparkle-twinkle 2.5s ease-in-out infinite;
}
.brand-sparkle path:nth-child(2) {
  animation-delay: 1.25s;
}

/* Performance curve line draw-in */
@keyframes draw-trend-line {
  0% { stroke-dashoffset: 120; }
  100% { stroke-dashoffset: 0; }
}
.brand-trend-line {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw-trend-line 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Tablet screen reflection glare sweep */
.studio-screen-glare {
  animation: glare-sweep-growth 7s ease-in-out infinite;
}

/* Dot grid, Solid/Wire concentric background circles */
.bg-dots-grid-brand circle {
  animation: dot-twinkle 3s ease-in-out infinite;
}
.bg-dots-grid-brand circle:nth-child(2n) { animation-delay: 0.3s; }
.bg-dots-grid-brand circle:nth-child(3n) { animation-delay: 0.6s; }
.bg-dots-grid-brand circle:nth-child(4n) { animation-delay: 0.9s; }

.bg-quarter-circle-brand {
  transform-origin: 610px 250px;
  animation: float-dashboard-growth 8s ease-in-out infinite alternate;
}

.bg-solid-circle-brand {
  transform-origin: 160px 700px;
  animation: rotate-clockwise 30s linear infinite;
}

.bg-wire-circle-brand {
  transform-origin: 120px 750px;
  animation: rotate-counter-clockwise 25s linear infinite;
}

/* Energy particles along connector lines */
.particle-brand-1 {
  offset-path: path("M 330,530 L 370,530");
  animation: energy-travel-exact 4s linear infinite;
}

.particle-brand-2 {
  offset-path: path("M 680,360 L 710,360 L 710,390");
  animation: energy-travel-exact 3.8s linear infinite 1s;
}

.particle-brand-3 {
  offset-path: path("M 710,500 L 710,570");
  animation: energy-travel-exact 3.5s linear infinite 2s;
}

.particle-brand-4 {
  offset-path: path("M 600,700 L 600,720 L 650,720 L 650,700");
  animation: energy-travel-exact 4.5s linear infinite 1.5s;
}




/* Feature Image Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.mobile-break {
  display: none;
}

/* Global Mobile Readability & Alignment Overrides */
@media (max-width: 768px) {
  /* Center align all primary text elements */
  h1, h2, h3, h4, h5, h6, p, 
  .hero-title, .hero-subtitle, .hero-desc, 
  .services-hero-title, .services-hero-desc,
  .section-title, .section-subtitle, .section-desc, 
  .intro-title, .intro-desc,
  .feature-title, .feature-desc, 
  .service-title-lg, .service-desc-lg, 
  .value-title, .value-desc, 
  .approach-item-title, .accordion-desc-text,
  .grow-title, .grow-desc,
  .schedule-title, .schedule-desc,
  .accordion-header {
    text-align: center !important;
    justify-content: center !important;
  }

  /* Ensure containers have padding so text doesn't touch screen edges */
  .container, 
  .hero-content, .hero-container,
  .feature-content, .feature-row,
  .service-content-col, .service-row,
  .value-content, .value-row,
  .approach-content, .approach-header,
  .grow-content,
  .cta-white-box, .schedule-content,
  .footer-grid, .footer-bottom-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box;
  }

  /* Improve typography readability (font sizes and line heights) */
  p, .hero-subtitle, .hero-desc, .services-hero-desc, 
  .section-subtitle, .section-desc, .intro-desc, 
  .feature-desc, .service-desc-lg, .value-desc, 
  .accordion-desc-text, .grow-desc, .schedule-desc {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  h1, .hero-title, .services-hero-title {
    font-size: 2.2rem !important;
    line-height: 1.3 !important;
  }

  h2, .section-title, .intro-title, .grow-title, .schedule-title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
  }

  h3, .feature-title, .service-title-lg, .value-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  /* Ensure specific text blocks inside grids wrap nicely */
  .links-subgrid, .approach-grid {
    text-align: center !important;
    justify-content: center !important;
  }

  /* For service bullets, align them to the left and keep structure clean */
  .service-bullets-grid {
    text-align: left !important;
    justify-content: flex-start !important;
    padding-left: 20px !important;
  }

  .service-bullet-item {
    justify-content: flex-start !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .service-bullet-item .bullet-dot {
    margin-top: 8px !important;
  }

  /* Home Page Hero Centering */
  .hero-section .hero-content {
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .hero-section .hero-divider {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-section .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Grow With Us Background Fit on Mobile */
  .grow-section::before {
    top: 0 !important;
    bottom: 0 !important;
  }

  /* Explore Services Hero Image Centering */
  .services-page .geometric-collage-container {
    justify-content: center !important;
  }
  .services-page .geometric-collage {
    margin: 0 auto !important;
    transform: none !important;
  }

  /* Hide scrolling background texts to prevent overlaps */
  div[style*="opacity: 0.08"][style*="position: absolute"],
  div[style*="opacity:0.08"][style*="position:absolute"],
  .people-cta-section div[style*="height: 260px"],
  .people-cta-section div[style*="height:260px"] {
    display: none !important;
  }

  /* Careers Page Open Positions Alignment */
  .open-positions .jobs-list .job-card {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 25px 20px !important;
  }
  .open-positions .jobs-list .job-card .job-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .open-positions .jobs-list .job-card .job-info div {
    justify-content: center !important;
  }

  /* About Us Page Hero & Image Hiding on Mobile */
  .mobile-break {
    display: block !important;
  }
  .rotating-text {
    white-space: nowrap !important;
  }
  /* Show subpages collage in background as a low-opacity watermark on mobile */
  .services-hero {
    position: relative !important;
    padding: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-image: none !important;
    background-color: var(--primary-navy) !important;
    border-bottom: none !important;
  }
  .services-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.15 !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  .services-page .services-hero::before {
    background-image: url('image/Exhero.jpg') !important;
  }
  .about-page .services-hero::before {
    background-image: url('image/About%20hero.jpg') !important;
  }
  .services-hero .geometric-collage-container {
    display: none !important;
  }
  .services-hero .geometric-collage {
    display: none !important;
  }
  .services-hero .hero-content {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 20px !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    text-align: center !important;
    align-items: center !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .services-hero-title {
    color: #ffffff !important;
  }
  .services-hero-desc {
    color: #cbd5e1 !important;
  }
  .careers-page .hero-title,
  .careers-page .hero-subtitle,
  .news-page-title {
    color: #ffffff !important;
  }

  /* Accordion + Icon Gap */
  .custom-accordion .accordion-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .custom-accordion .accordion-header span:first-child {
    flex: 1 !important;
    text-align: left !important;
    padding-right: 8px !important;
  }
  .custom-accordion .accordion-icon {
    font-size: 2rem !important;
    flex-shrink: 0 !important;
  }

  /* Make all modal forms display perfectly on mobile */
  form div[style*="grid-template-columns:1fr 1fr"],
  form div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  #contact-modal-card, #career-modal-card {
    width: calc(100% - 30px) !important;
    margin: 15px !important;
  }
  #contact-modal-card > div, #career-modal-card > div {
    padding: 20px 15px !important;
  }

  /* Footer logo spacing on mobile to push logo & text down */
  .footer-logo {
    margin-top: 25px !important;
    margin-bottom: 20px !important;
  }

  /* Stats Container & Cards side-by-side on Mobile */
  .stats-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 60px !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  .stat-card {
    width: calc(50% - 8px) !important;
    padding: 20px 10px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }
  .stat-number {
    font-size: 2.2rem !important;
    margin-bottom: 8px !important;
    gap: 3px !important;
  }
  .stat-number span {
    font-size: 1rem !important;
  }
  .stat-desc {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }
  .stat-card svg {
    width: 24px !important;
    height: 24px !important;
  }
  .stat-card div:first-child {
    width: 44px !important;
    height: 44px !important;
    margin-bottom: 8px !important;
  }
}

/* Global / Desktop overrides (Outside Media Query) */

/* Careers Button Background Color (Grow With Us section) */
.grow-content .btn-primary {
  background-color: var(--cyan) !important;
  border-color: var(--cyan) !important;
  color: #ffffff !important;
}
.grow-content .btn-primary:hover {
  background-color: var(--cyan-hover) !important;
  border-color: var(--cyan-hover) !important;
  color: #ffffff !important;
}

/* Specific very small screens hero title adjust */
@media (max-width: 480px) {
  .services-hero-title {
    font-size: 1.6rem !important;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 20px;
  right: 20px;
  background: rgba(1, 21, 49, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 151, 166, 0.25);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  padding: 24px;
  z-index: 9999;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .cookie-banner {
    left: auto;
    right: 40px;
    bottom: -200px;
    width: 450px;
  }
}

.cookie-banner.show {
  bottom: 24px;
  opacity: 1;
}

.cookie-banner-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-direction: column;
}

@media (min-width: 480px) {
  .cookie-banner-content {
    flex-direction: row;
  }
}

.cookie-icon-wrapper {
  background: rgba(0, 151, 166, 0.1);
  color: var(--cyan);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 151, 166, 0.15);
}

.cookie-svg {
  animation: cookie-wiggle 3s ease infinite;
}

@keyframes cookie-wiggle {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

.cookie-text-content {
  flex-grow: 1;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  letter-spacing: 0.5px;
}

.cookie-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.45;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: flex-end;
  margin-top: 10px;
  flex-shrink: 0;
}

@media (min-width: 480px) {
  .cookie-buttons {
    width: auto;
    flex-direction: column;
    margin-top: 0;
  }
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-heading);
  border: 1px solid transparent;
  outline: none;
  text-align: center;
}

.cookie-accept-btn {
  background: var(--cyan);
  color: #fff;
}

.cookie-accept-btn:hover {
  background: var(--cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 151, 166, 0.2);
}

.cookie-decline-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
}

.cookie-decline-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
