/* ============================================
   PrintNShip Marketing Website — Custom Styles
   Design: Codz Home Version 4 Inspired
   ============================================ */

/* ── CSS Variables (Codz Home Version 4 Exact Palette) ── */
:root {
  --primary: #F2775B;            /* Vibrant Coral Orange */
  --primary-dark: #d85e43;
  --primary-light: rgba(242, 119, 91, 0.12);
  --secondary: #6E7C90;          /* Suitable Slate Grey */
  --secondary-dark: #4B586B;
  --secondary-light: rgba(110, 124, 144, 0.12);
  --accent-pink: #F2775B;
  --dark-bg: #231834;            /* Deep Codz Navy */
  --darker-bg: #191026;          /* Darker Navy Background */
  --light-bg: #F5F7FA;           /* Soft Cool Grey Off-White */
  --white: #ffffff;
  --text-color: #5A6B82;         /* Slate Grey Text */
  --heading-color: #231834;      /* Deep Navy Heading Text */
  --light-text: #8A98A8;         /* Muted Text */
  --border-color: #E2E8F0;       /* Soft Grey Border */
  --shadow-sm: 0 2px 10px rgba(35, 24, 52, 0.06);
  --shadow-md: 0 8px 30px rgba(35, 24, 52, 0.08);
  --shadow-lg: 0 15px 50px rgba(35, 24, 52, 0.12);
  --shadow-hover: 0 12px 40px rgba(35, 24, 52, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  --transition: all 0.3s ease-in-out;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
section { padding: 100px 0; }

/* ── Typography ── */
.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 15px auto 0;
}
.section-subtitle {
  text-align: center;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}
.dark-section .section-title,
.dark-section .section-subtitle { color: var(--white); }
.dark-section .section-subtitle { color: rgba(255,255,255,0.7); }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ── Buttons (Codz Home 4 Styling) ── */
.btn-primary-custom {
  background: var(--secondary);        /* Codz Coral #F2775B */
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 119, 91, 0.4);
}
.btn-secondary-custom {
  background: transparent;
  color: var(--primary);              /* Codz Mint #6E7C90 */
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-secondary-custom:hover {
  background: var(--primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(110, 124, 144, 0.35);
}
.btn-coral {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-coral:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 119, 91, 0.4);
}
.hero-section .btn-secondary-custom {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero-section .btn-secondary-custom:hover {
  background: var(--primary);
  color: var(--dark-bg);
  border-color: var(--primary);
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.navbar-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand .brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
#navbar.navbar-scrolled .navbar-brand { color: var(--heading-color) !important; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
#navbar.navbar-scrolled .navbar-nav .nav-link { color: var(--text-color) !important; }
#navbar.navbar-scrolled .navbar-nav .nav-link:hover,
#navbar.navbar-scrolled .navbar-nav .nav-link.active { color: var(--primary) !important; }
.nav-cta { margin-left: 15px; }
.nav-phone {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  text-decoration: none;
}
.nav-phone i {
  width: 35px;
  height: 35px;
  border-radius: var(--radius-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}
#navbar.navbar-scrolled .nav-phone { color: var(--heading-color) !important; }
.navbar-toggler {
  border: none;
  padding: 4px 8px;
  color: var(--white);
  font-size: 1.4rem;
}
#navbar.navbar-scrolled .navbar-toggler { color: var(--heading-color); }

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(35,24,52,0.94) 0%, rgba(25,16,38,0.92) 50%, rgba(61,44,58,0.90) 100%),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.play-btn {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.play-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.3);
  animation: pulse-ring 1.5s ease-out infinite;
}
.play-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.hero-visual { position: relative; z-index: 2; }
.hero-mockup {
  background: linear-gradient(135deg, rgba(110, 124, 144, 0.08), rgba(15, 52, 96, 0.15));
  border: 1px solid rgba(110, 124, 144, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
}
.mockup-header { display: flex; gap: 6px; margin-bottom: 20px; }
.mockup-dot { width: 10px; height: 10px; border-radius: var(--radius-full); }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-bar { height: 12px; border-radius: 6px; margin-bottom: 12px; }
.mockup-bar-1 { width: 80%; background: rgba(110, 124, 144, 0.3); }
.mockup-bar-2 { width: 60%; background: rgba(242, 119, 91, 0.3); }
.mockup-bar-3 { width: 90%; background: rgba(110, 124, 144, 0.15); }
.mockup-bar-4 { width: 45%; background: rgba(255,255,255, 0.1); }
.mockup-bar-5 { width: 70%; background: rgba(110, 124, 144, 0.2); }
.mockup-card-row { display: flex; gap: 12px; margin-top: 16px; }
.mockup-card {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.08);
}
.mockup-card .mc-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.mockup-card:nth-child(1) .mc-icon { background: rgba(110, 124, 144, 0.3); }
.mockup-card:nth-child(2) .mc-icon { background: rgba(242, 119, 91, 0.3); }
.mockup-card:nth-child(3) .mc-icon { background: rgba(100, 149, 237, 0.3); }
.mockup-card .mc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); margin-bottom: 6px; }
.mockup-card .mc-line:last-child { width: 60%; }

/* Hero Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.08;
  z-index: 1;
}
.hero-shape-1 {
  width: 300px; height: 300px;
  background: var(--primary);
  top: -80px; right: -80px;
  animation: float 6s ease-in-out infinite;
}
.hero-shape-2 {
  width: 200px; height: 200px;
  background: var(--secondary);
  bottom: -50px; left: -50px;
  animation: float 8s ease-in-out infinite reverse;
}
.hero-shape-3 {
  width: 150px; height: 150px;
  background: var(--primary);
  top: 50%; left: 45%;
  animation: float 7s ease-in-out infinite 1s;
}

/* ── Clients Section ── */
#clients { padding: 60px 0; background: var(--light-bg); }
#clients .section-title::after { display: none; }
#clients .section-title { font-size: 1rem; color: var(--light-text); font-weight: 500; margin-bottom: 30px; }
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition);
  cursor: default;
}
.client-logo:hover { filter: grayscale(0%); opacity: 1; }
.client-logo i { font-size: 2.2rem; color: var(--text-color); }
.client-logo span { font-size: 0.75rem; color: var(--light-text); font-weight: 500; }

/* ── Services Section ── */
#services { background: var(--white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-left: 4px solid transparent;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--primary);
}
.service-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h4 { margin-bottom: 14px; font-weight: 600; }
.service-card p { color: var(--light-text); font-size: 0.93rem; flex-grow: 1; }
.service-link {
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }

/* ── About / Why Choose Us ── */
#about { background: var(--light-bg); }
.about-content { padding-right: 40px; }
.feature-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.feature-item:last-child { border-bottom: none; }
.feature-icon-sm {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.feature-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--light-text); margin-bottom: 0; }
.about-visual { position: relative; }
.dashboard-mockup {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.dash-row { display: flex; gap: 15px; margin-bottom: 15px; }
.dash-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dash-card .dc-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.dash-card .dc-value {
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  font-family: var(--font-heading);
}
.dash-card .dc-bar {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 10px;
  position: relative; overflow: hidden;
}
.dash-card .dc-bar-fill { height: 100%; border-radius: 2px; position: absolute; top: 0; left: 0; }
.dc-bar-green { background: var(--primary); }
.dc-bar-coral { background: var(--secondary); }
.dc-bar-blue { background: #6495ED; }
.about-accent {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  bottom: -30px; right: -30px;
  animation: float 5s ease-in-out infinite;
}
.counters-row { margin-top: 50px; padding-top: 50px; border-top: 1px solid var(--border-color); }
.counter-item { text-align: center; }
.stat-number {
  font-size: 2.5rem; font-weight: 700; color: var(--primary);
  font-family: var(--font-heading); line-height: 1;
}
.counter-item p { font-size: 0.88rem; color: var(--light-text); margin-top: 6px; margin-bottom: 0; }

/* ── How It Works ── */
#how-it-works {
  background: linear-gradient(135deg, rgba(35,24,52,0.94) 0%, rgba(25,16,38,0.94) 100%),
              url('../images/dark-section-bg.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
}
.process-timeline { display: flex; position: relative; margin-top: 20px; }
.process-timeline::before {
  content: '';
  position: absolute; top: 35px; left: 0; right: 0;
  height: 2px; background: rgba(110, 124, 144, 0.2);
}
.step-item { flex: 1; text-align: center; padding: 0 10px; position: relative; }
.step-number {
  width: 70px; height: 70px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  background: var(--dark-bg);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative; z-index: 2;
}
.step-item:hover .step-number { background: var(--primary); color: var(--white); }
.step-item h5 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.step-item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; }

/* ── Features Tabs ── */
#features { background: var(--white); }
.feature-tabs-nav {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 50px; flex-wrap: wrap;
}
.feature-tab-btn {
  padding: 12px 24px; border: none;
  background: var(--light-bg); color: var(--text-color);
  font-weight: 500; font-size: 0.9rem;
  border-radius: 50px; cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.feature-tab-btn:hover { color: var(--primary); background: var(--primary-light); }
.feature-tab-btn.active { background: var(--primary); color: var(--white); }
.feature-tab-panel { display: none; }
.feature-tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
.feat-item {
  display: flex; gap: 16px; padding: 24px;
  border-radius: var(--radius-md);
  background: var(--light-bg);
  transition: var(--transition); height: 100%;
}
.feat-item:hover {
  background: var(--white); box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feat-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.1rem;
}
.feat-item h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.feat-item p { font-size: 0.85rem; color: var(--light-text); margin-bottom: 0; }

/* ── Market Stats ── */
#stats {
  background: linear-gradient(135deg, rgba(35,24,52,0.92) 0%, rgba(25,16,38,0.92) 100%),
              url('../images/dark-section-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
}
.stat-counter { text-align: center; padding: 30px 20px; }
.stat-counter .stat-number {
  font-size: 3rem; color: var(--primary);
  display: block; margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(110, 124, 144, 0.3);
}
.stat-counter p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0; }

/* ── PrintNShip B2C ── */
#printnship {
  background: linear-gradient(135deg, rgba(110, 124, 144, 0.05) 0%, rgba(110, 124, 144, 0.12) 100%);
}
.b2c-badge {
  display: inline-block;
  background: var(--secondary); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 50px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.journey-steps { display: flex; position: relative; margin: 50px 0; }
.journey-steps::before {
  content: '';
  position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.journey-step { flex: 1; text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.journey-num {
  width: 60px; height: 60px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 3px solid var(--secondary);
  color: var(--secondary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 18px;
  transition: var(--transition);
}
.journey-step:hover .journey-num { background: var(--secondary); color: var(--white); }
.journey-step h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.journey-step p { font-size: 0.83rem; color: var(--light-text); line-height: 1.5; }
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-md); padding: 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-color);
  height: 100%; transition: var(--transition);
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.highlight-card .hl-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(242, 119, 91, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 1.2rem;
  margin-bottom: 18px;
}
.highlight-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.highlight-card p { font-size: 0.88rem; color: var(--light-text); margin-bottom: 0; }

/* ── Industries ── */
#industries { background: var(--light-bg); }
.industry-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  height: 100%; background: var(--white);
}
.industry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.industry-header { padding: 35px 25px; color: var(--white); }
.industry-header i { font-size: 2.5rem; margin-bottom: 15px; display: block; opacity: 0.9; }
.industry-header h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 0; }
.industry-header.bg-finance { background: linear-gradient(135deg, #667eea, #764ba2); }
.industry-header.bg-healthcare { background: linear-gradient(135deg, #231834, #4B586B); }
.industry-header.bg-government { background: linear-gradient(135deg, #191026, #6E7C90); }
.industry-header.bg-insurance { background: linear-gradient(135deg, #F2775B, #e05e41); }
.industry-body { padding: 25px; }
.industry-body p { font-size: 0.88rem; color: var(--light-text); margin-bottom: 0; line-height: 1.7; }

/* ── Testimonials ── */
#testimonials {
  background: url('../images/testimonial-bg.jpg') center/cover no-repeat;
}
.testimonials-carousel { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%; padding: 50px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  text-align: center; position: relative;
}
.testimonial-card .quote-icon { font-size: 3rem; color: var(--primary); opacity: 0.3; margin-bottom: 20px; }
.testimonial-card blockquote {
  font-size: 1.1rem; color: var(--text-color); line-height: 1.8;
  max-width: 800px; margin: 0 auto 30px; font-style: italic;
}
.testimonial-card .stars { color: #f5a623; margin-bottom: 15px; font-size: 1rem; }
.testimonial-author h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.testimonial-author p { color: var(--light-text); font-size: 0.88rem; margin-bottom: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  border: none; cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active { background: var(--primary); width: 30px; border-radius: 6px; }

/* ── Pricing ── */
#pricing { background: var(--light-bg); }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 35px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.pricing-featured { border-color: var(--primary); box-shadow: var(--shadow-md); transform: scale(1.05); }
.pricing-featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 20px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
}
.pricing-card .plan-name {
  font-size: 1rem; font-weight: 600; color: var(--light-text);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.pricing-card .plan-price {
  font-size: 2.5rem; font-weight: 700; color: var(--heading-color);
  margin-bottom: 6px; font-family: var(--font-heading);
}
.pricing-card .plan-desc { font-size: 0.9rem; color: var(--light-text); margin-bottom: 25px; }
.pricing-features {
  list-style: none; padding: 0;
  text-align: left; margin-bottom: 30px; flex-grow: 1;
}
.pricing-features li {
  padding: 10px 0; border-bottom: 1px solid var(--border-color);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--primary); font-size: 0.85rem; }
.pricing-card .btn-primary-custom,
.pricing-card .btn-secondary-custom { width: 100%; justify-content: center; }

/* ── Contact ── */
#contact { background: var(--white); }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 24px; }
.contact-info-item .ci-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.contact-info-item h6 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.contact-info-item p { font-size: 0.88rem; color: var(--light-text); margin-bottom: 0; }
.contact-form { background: var(--light-bg); border-radius: var(--radius-lg); padding: 40px; }
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 0.9rem;
  color: var(--text-color); font-family: var(--font-body);
  transition: var(--transition); background: var(--white);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(110, 124, 144, 0.15);
}
.contact-form textarea.form-control { min-height: 120px; resize: vertical; }

/* ── Footer ── */
.site-footer {
  background-color: #231834 !important;
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.85);
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 700; color: #ffffff !important;
  display: flex; align-items: center; gap: 8px; margin-bottom: 15px;
}
.footer-brand .brand-icon {
  width: 35px; height: 35px;
  background: var(--primary); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 0.9rem;
}
.site-footer p { font-size: 0.88rem; line-height: 1.7; color: rgba(255, 255, 255, 0.8); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.8); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #ffffff; }
.footer-heading { font-size: 1rem; font-weight: 600; color: #ffffff !important; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.8) !important; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary) !important; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px 0; margin-top: 50px;
  text-align: center; font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75) !important;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.75) !important; margin-bottom: 5px; }
.footer-bottom .compliance-badges {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 8px; flex-wrap: wrap;
}
.footer-bottom .compliance-badges span {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255, 255, 255, 0.75) !important; font-size: 0.78rem;
}
.footer-bottom .compliance-badges span i { color: var(--primary); }

/* ── Back to Top ── */
#backToTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  border: none; z-index: 999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.visible { opacity: 1; visibility: visible; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.animated { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.animated { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1200px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .hero-content h1 { font-size: 3rem; }
}
@media (max-width: 992px) {
  section { padding: 70px 0; }
  .hero-content h1 { font-size: 2.5rem; }
  .about-content { padding-right: 0; margin-bottom: 40px; }
  .process-timeline {
    flex-direction: column; gap: 30px;
    align-items: flex-start; padding-left: 60px;
  }
  .process-timeline::before {
    top: 0; bottom: 0; left: 34px;
    width: 2px; height: 100%; right: auto;
  }
  .step-item { text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .step-number { min-width: 60px; height: 60px; width: 60px; }
  .step-item h5, .step-item p { text-align: left; }
  .journey-steps {
    flex-direction: column; gap: 25px; padding-left: 50px;
  }
  .journey-steps::before {
    top: 0; bottom: 0; left: 30px;
    width: 2px; height: 100%; right: auto;
  }
  .journey-step {
    text-align: left; display: flex;
    gap: 18px; align-items: flex-start;
  }
  .journey-num { min-width: 50px; height: 50px; width: 50px; }
  .pricing-featured { transform: scale(1); }
  .pricing-featured:hover { transform: translateY(-8px); }
  .nav-phone { display: none !important; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 40px; }
  .testimonial-card { padding: 30px 20px; }
  .testimonial-card blockquote { font-size: 1rem; }
  .contact-form { padding: 25px; }
  .hero-section { padding-top: 100px; min-height: auto; padding-bottom: 80px; }
  .feature-tabs-nav { gap: 5px; }
  .feature-tab-btn { padding: 10px 16px; font-size: 0.82rem; }
  .stat-counter .stat-number { font-size: 2.2rem; }
  .process-timeline { padding-left: 50px; }
  .process-timeline::before { left: 29px; }
}
@media (max-width: 576px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .clients-row { gap: 30px; }
  .client-logo i { font-size: 1.8rem; }
  .counters-row .col-6 { margin-bottom: 20px; }
  .stat-number { font-size: 2rem; }
  .pricing-card { padding: 30px 25px; }
  .contact-form { padding: 20px; }
  #backToTop { bottom: 20px; right: 20px; }
}

/* ════════════════════════════════════════════
   DESIGN ENHANCEMENTS — Images & Visual Polish
   ════════════════════════════════════════════ */

/* Gradient text effect on hero heading */
.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #a8edda 50%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero dashboard image — replaces CSS mockup */
.hero-dashboard-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 40px rgba(113,222,187,0.15);
  border: 1px solid rgba(113,222,187,0.2);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  width: 100%;
}
.hero-dashboard-img:hover {
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  box-shadow: 0 30px 90px rgba(0,0,0,0.5), 0 0 60px rgba(113,222,187,0.25);
}

/* Platform workflow illustration — About section */
.about-illustration {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  transition: var(--transition);
}
.about-illustration:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* B2C Marketplace illustration */
.b2c-illustration {
  max-width: 480px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.b2c-illustration:hover {
  transform: translateY(-5px);
}

/* Wave divider between sections */
.wave-divider {
  position: relative;
  margin-top: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Enhanced service cards — colored icon accents per card */
.service-card:nth-child(1) .service-icon { background: rgba(110, 124, 144, 0.12); color: #6E7C90; }
.service-card:nth-child(2) .service-icon { background: rgba(100, 149, 237, 0.12); color: #6495ED; }
.service-card:nth-child(3) .service-icon { background: rgba(242, 119, 91, 0.12); color: #F2775B; }
.service-card:nth-child(4) .service-icon { background: rgba(155, 89, 182, 0.12); color: #9b59b6; }
.service-card:hover:nth-child(1) .service-icon { background: #6E7C90; color: #fff; }
.service-card:hover:nth-child(2) .service-icon { background: #6495ED; color: #fff; }
.service-card:hover:nth-child(3) .service-icon { background: #F2775B; color: #fff; }
.service-card:hover:nth-child(4) .service-icon { background: #9b59b6; color: #fff; }

/* Enhanced pricing featured card glow */
.pricing-featured {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(110, 124, 144, 0.15), 0 0 0 1px rgba(110, 124, 144, 0.1);
}
.pricing-featured:hover {
  box-shadow: 0 15px 50px rgba(110, 124, 144, 0.25), 0 0 0 1px rgba(110, 124, 144, 0.2);
}

/* Industry cards — image header overlay pattern */
.industry-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.industry-header { position: relative; overflow: hidden; }

/* Footer background subtle pattern */
.site-footer {
  background-color: #231834 !important;
  background-image: linear-gradient(180deg, #231834 0%, #170f23 100%);
  padding: 70px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Glowing stat numbers */
.stat-counter .stat-number {
  font-size: 3rem; color: var(--primary);
  display: block; margin-bottom: 10px;
  text-shadow: 0 0 30px rgba(110, 124, 144, 0.4), 0 0 60px rgba(110, 124, 144, 0.15);
}

/* Subtle gradient border on service cards hover */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--primary);
  border-image: linear-gradient(to bottom, var(--primary), var(--secondary)) 1;
  border-image-slice: 1;
  border-left-width: 4px;
  border-left-style: solid;
}

/* Contact section subtle background */
#contact {
  background: var(--white);
  background-image: radial-gradient(circle at 10% 20%, rgba(110, 124, 144, 0.04) 0%, transparent 50%),
                     radial-gradient(circle at 90% 80%, rgba(242, 119, 91, 0.04) 0%, transparent 50%);
}

/* Responsive adjustments for images */
@media (max-width: 992px) {
  .hero-dashboard-img {
    transform: none;
    margin-top: 40px;
  }
  .hero-dashboard-img:hover {
    transform: none;
  }
  .b2c-illustration {
    max-width: 360px;
    margin-bottom: 30px;
  }
}

/* ════════════════════════════════════════════
   PRECISION 3D ISOMETRIC DIAGRAM STREAM SYSTEM
   ════════════════════════════════════════════ */
.workflow-3d-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(35, 24, 52, 0.2);
  border: 1px solid var(--border-color);
  background: #ffffff;
}
.workflow-3d-card img {
  display: block;
  width: 100%;
  height: auto;
}

.iso-svg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 12;
}

.iso-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iso-path-pdf {
  stroke: #F2775B;
  stroke-width: 5;
  stroke-dasharray: 10 14;
  animation: isoFlowPdf 1.5s linear infinite;
}

.iso-path-data {
  stroke: #6E7C90;
  stroke-width: 5;
  stroke-dasharray: 10 14;
  animation: isoFlowData 1.8s linear infinite;
}

.iso-path-azure {
  stroke: #6E7C90;
  stroke-width: 6;
  stroke-dasharray: 12 16;
  animation: isoFlowAzure 1.6s linear infinite;
}

.iso-path-conveyor {
  stroke: #6E7C90;
  stroke-width: 5;
  stroke-dasharray: 10 14;
  animation: isoFlowConveyor 2s linear infinite;
}

.iso-path-carrier {
  stroke: #F2775B;
  stroke-width: 4;
  stroke-dasharray: 8 12;
  animation: isoFlowCarrier 1.8s linear infinite;
}

@keyframes isoFlowPdf {
  from { stroke-dashoffset: 48; }
  to { stroke-dashoffset: 0; }
}

@keyframes isoFlowData {
  from { stroke-dashoffset: 48; }
  to { stroke-dashoffset: 0; }
}

@keyframes isoFlowAzure {
  from { stroke-dashoffset: 56; }
  to { stroke-dashoffset: 0; }
}

@keyframes isoFlowConveyor {
  from { stroke-dashoffset: 48; }
  to { stroke-dashoffset: 0; }
}

@keyframes isoFlowCarrier {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

/* Pulsing radar dots on 3D diagram hubs */
.iso-hub-pulse {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 15;
}
.iso-hub-pulse::after {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: isoPulseRing 1.8s ease-out infinite;
}
.hub-azure { top: 27%; left: 45%; color: #6E7C90; background: #6E7C90; }
.hub-factory { top: 61%; left: 68%; color: #F2775B; background: #F2775B; }

@keyframes isoPulseRing {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Live Pipeline Badge */
.iso-live-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: rgba(35, 24, 52, 0.88);
  backdrop-filter: blur(8px);
  color: #6E7C90;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(110, 124, 144, 0.35);
  display: flex; align-items: center; gap: 8px;
  z-index: 20;
}





