/* ==========================================================================
   Techno Tech Digital - Main Stylesheet
   ========================================================================== */

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

:root {
  /* Colors */
  --primary-navy: #0b132b;
  --secondary-navy: #0f172a;
  --dark-bg: #070d1f;
  --card-dark: #0f1a36;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Brand Colors & Accents */
  --blue-primary: #2563eb;
  --blue-light: #3b82f6;
  --purple-accent: #8b5cf6;
  --purple-dark: #6366f1;
  --pink-accent: #ec4899;
  --orange-accent: #f97316;
  --green-accent: #10b981;
  --teal-accent: #14b8a6;
  --yellow-accent: #eab308;

  /* Gradients */
  --grad-pink-orange: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --grad-blue-purple: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --grad-cta: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
  --grad-text: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  --grad-blue-text: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
  
  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --container-width: 1240px;
  --header-height: 85px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Helper Classes */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-blue {
  background: var(--grad-blue-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  color: var(--purple-dark);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

.btn-gradient {
  background: var(--grad-pink-orange);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.btn-gradient:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.5);
}

.btn-outline {
  background: var(--white);
  color: var(--purple-dark);
  border: 1.5px solid #d8b4fe;
}

.btn-outline:hover {
  background: #f3e8ff;
  border-color: var(--purple-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--secondary-navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  height: 75px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-primary);
  border-radius: 2px;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.has-dropdown {
  position: relative;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown-item {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  display: block;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: var(--blue-primary);
}

.nav-cta .btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  background: var(--blue-primary);
}

.nav-cta .btn .btn-arrow-circle {
  width: 24px;
  height: 24px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-left: 0.3rem;
  color: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary-navy);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-tag {
  color: var(--purple-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--secondary-navy);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.badge-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-icon-purple {
  background: #f3e8ff;
  color: #9333ea;
  border: 1px solid #e9d5ff;
}

.badge-icon-orange {
  background: #ffedd5;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.badge-icon-teal {
  background: #ccfbf1;
  color: #0d9488;
  border: 1px solid #99f6e4;
}

.badge-icon-blue {
  background: #dbeafe;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.feature-badge-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary-navy);
}

/* Hero Right Graphics / Interactive Dashboard */
.hero-graphics-wrapper {
  position: relative;
  background-image: url('images/smm-hero.png');
}

.dashboard-mockup-container {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
}

.window-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f1f5f9;
}

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

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.dash-main-card {
  background: #fafafa;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid #f1f5f9;
}

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

.dash-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.dash-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.dash-badge-green {
  background: #d1fae5;
  color: #059669;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-charts-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1rem;
}

/* Floating Widget Cards */
.floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid #e2e8f0;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.floating-top-right {
  top: -20px;
  right: -20px;
  width: 180px;
}

.floating-bottom-left {
  bottom: -20px;
  left: -20px;
  width: 190px;
  animation-delay: 2s;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Icon specific colors */
.card-printer .service-icon-wrapper { background: #f3e8ff; color: #9333ea; }
.card-web .service-icon-wrapper { background: #ffedd5; color: #ea580c; }
.card-smm .service-icon-wrapper { background: #fce7f3; color: #db2777; }
.card-seo .service-icon-wrapper { background: #d1fae5; color: #059669; }
.card-ppc .service-icon-wrapper { background: #dbeafe; color: #2563eb; }

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-printer .service-link { color: #9333ea; }
.card-web .service-link { color: #ea580c; }
.card-smm .service-link { color: #db2777; }
.card-seo .service-link { color: #059669; }
.card-ppc .service-link { color: #2563eb; }

/* ==========================================================================
   Stats Counter Banner Section
   ========================================================================== */
.stats-banner {
  background: var(--dark-bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%);
  padding: 4.5rem 0;
  color: #ffffff;
  position: relative;
}

.stats-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-light);
}

.stat-item:nth-child(1) .stat-icon { color: #c084fc; }
.stat-item:nth-child(2) .stat-icon { color: #60a5fa; }
.stat-item:nth-child(3) .stat-icon { color: #fb923c; }
.stat-item:nth-child(4) .stat-icon { color: #4ade80; }

.stat-details {
  text-align: left;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.about-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary-navy);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3e8ff;
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* About Right Image Box */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.video-play-badge:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: #ffffff;
}

.play-button-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 3px;
}

.play-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary-navy);
  text-transform: uppercase;
  line-height: 1.2;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.25rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  grid-column: span 1;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin: 0 auto 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.why-1 .why-icon-box { background: #f3e8ff; color: #9333ea; }
.why-2 .why-icon-box { background: #ffedd5; color: #ea580c; }
.why-3 .why-icon-box { background: #d1fae5; color: #059669; }
.why-4 .why-icon-box { background: #dbeafe; color: #2563eb; }
.why-5 .why-icon-box { background: #f3e8ff; color: #9333ea; }
.why-6 .why-icon-box { background: #ffedd5; color: #ea580c; }

.why-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.6rem;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Our Process Section
   ========================================================================== */
.process-section {
  padding: 6rem 0;
  background: #ffffff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  margin: 0 auto 1.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover .step-num-bubble {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.step-01 .step-num-bubble { border-color: #a855f7; color: #a855f7; }
.step-02 .step-num-bubble { border-color: #f97316; color: #f97316; }
.step-03 .step-num-bubble { border-color: #10b981; color: #10b981; }
.step-04 .step-num-bubble { border-color: #3b82f6; color: #3b82f6; }
.step-05 .step-num-bubble { border-color: #ec4899; color: #ec4899; }

.badge-num {
  position: absolute;
  top: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-01 .badge-num { background: #a855f7; }
.step-02 .badge-num { background: #f97316; }
.step-03 .badge-num { background: #10b981; }
.step-04 .badge-num { background: #3b82f6; }
.step-05 .badge-num { background: #ec4899; }

.step-icon {
  font-size: 1.5rem;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

/* Testimonial Carousel Layout */
.testimonial-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
  width: 100%;
}

.testimonial-track-window {
  width: 100%;
  overflow: hidden;
  padding: 0.75rem 0.25rem;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  user-select: none;
  box-sizing: border-box;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-primary);
}

.testimonial-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--secondary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 10;
  flex-shrink: 0;
}

.testimonial-arrow:hover {
  background: var(--blue-primary);
  color: #ffffff;
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}

.prev-btn {
  margin-right: 0.75rem;
}

.next-btn {
  margin-left: 0.75rem;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .testimonial-carousel-container {
    padding: 0;
  }

  .testimonial-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .prev-btn {
    margin-right: 0.25rem;
  }

  .next-btn {
    margin-left: 0.25rem;
  }

  .testimonial-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 1.5rem;
  }
}

.star-rating {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.client-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue-primary);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--blue-primary);
  width: 24px;
  border-radius: 12px;
}

/* ==========================================================================
   FAQs Section
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--secondary-navy);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--blue-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner-section {
  padding: 4.5rem 0;
  background: var(--grad-cta);
  color: #ffffff;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta-btn .btn-arrow-circle {
  width: 24px;
  height: 24px;
  background: var(--orange-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--dark-bg);
  color: #ffffff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo {
  height: 78px;
  /* margin-bottom: 1.25rem; */
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--blue-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  position: relative;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-icon {
  color: var(--blue-light);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
}

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

.footer-bottom-links a {
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Modals (Video & Quote Modal)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 19, 43, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 550px;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary-navy);
}

.modal-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Video Modal Specific */
.video-modal-content {
  max-width: 800px;
  padding: 1rem;
  background: #000;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   About Us Page Specific Styles
   ========================================================================== */
.about-hero-dots {
  position: absolute;
  top: 10px;
  right: -15px;
  width: 60px;
  height: 100px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 12px 12px;
  z-index: 1;
}

/* Mission & Values Combined Section */
.mission-values-section {
  padding: 4rem 0 3rem 0;
  background: #ffffff;
}

.mission-values-combined-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 3rem;
  align-items: center;
}

.mission-part {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #f3e8ff;
  color: #9333ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.mission-part h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 1.25rem;
}

.mission-part p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.divider-line {
  background: #cbd5e1;
  width: 1px;
  height: 80%;
  align-self: center;
}

.values-part h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 1.75rem;
}

.value-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.value-list-item:last-child {
  margin-bottom: 0;
}

.val-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.val-purple { background: #f3e8ff; color: #9333ea; }
.val-orange { background: #ffedd5; color: #ea580c; }
.val-green { background: #d1fae5; color: #059669; }
.val-blue { background: #dbeafe; color: #2563eb; }

.val-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.2rem;
}

.val-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Standalone Why Choose Us Section */
.why-choose-standalone {
  background: var(--light-bg);
  padding: 4.5rem 0;
  margin-bottom: 4rem;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 992px) {
  .mission-values-combined-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .divider-line {
    display: none;
  }
}


.why-choose-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.why-choose-container h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.why-choose-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.why-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.why-check-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-navy);
}

.why-check-item i {
  color: var(--blue-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Rocket Illustration */
.rocket-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.rocket-svg {
  width: 220px;
  height: auto;
  animation: floatRocket 3.5s ease-in-out infinite;
}

@keyframes floatRocket {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* Work Together Footer Banner */
.work-together-banner {
  background: linear-gradient(135deg, #0b132b 0%, #311b92 60%, #4a148c 100%);
  border-radius: var(--radius-md);
  padding: 2rem 3rem;
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.banner-phone-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  flex-shrink: 0;
}

.banner-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.banner-text p {
  font-size: 0.95rem;
  color: #cbd5e1;
}

@media (max-width: 992px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}



/* ==========================================================================
   Contact Us Page Specific Styles
   ========================================================================== */
.contact-hero-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.contact-hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.contact-badge-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.contact-badge-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Contact Main Section Grid */
.contact-section-bg {
  background: var(--light-bg);
  padding: 5rem 0;
}

.contact-main-card-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.95fr;
  gap: 2.5rem;
}

/* Form Styling */
.contact-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 1.5rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.input-icon-group {
  position: relative;
}

.input-icon-group i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-icon-group textarea + i,
.input-icon-group.textarea-group i {
  top: 1.2rem;
  transform: none;
}

.input-with-icon {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  background: #ffffff;
}

.input-with-icon:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.1);
}

textarea.input-with-icon {
  padding-top: 0.85rem;
  resize: vertical;
  min-height: 140px;
}

.btn-send-message {
  width: 100%;
  padding: 0.95rem;
  font-size: 1rem;
  background: linear-gradient(90deg, #6366f1 0%, #ec4899 50%, #f97316 100%);
  color: #ffffff;
  border-radius: var(--radius-sm);
}

/* Contact Info Column */
.contact-info-column h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.4rem;
}

.contact-info-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-info-list-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-badge-purple { background: #f3e8ff; color: #9333ea; }
.info-badge-blue { background: #dbeafe; color: #2563eb; }
.info-badge-orange { background: #ffedd5; color: #ea580c; }
.info-badge-green { background: #d1fae5; color: #059669; }
.info-badge-navy { background: #e0e7ff; color: #4338ca; }

.info-row-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.2rem;
}

.info-row-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Right Map & Follow Column */
.map-follow-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-wrapper-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  height: 230px;
}

.map-wrapper-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.follow-social-card {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid #e2e8f0;
}

.follow-social-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.2rem;
}

.follow-social-card p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-social-row {
  display: flex;
  gap: 0.75rem;
}

.contact-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-li { background: #0a66c2; }
.social-tw { background: #1da1f2; }
.social-yt { background: #ff0000; }

@media (max-width: 1100px) {
  .contact-main-card-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Web Development Page Specific Styles
   ========================================================================== */
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb-container a {
  color: var(--text-muted);
}

.breadcrumb-container a:hover {
  color: var(--blue-primary);
}

.breadcrumb-container span.active {
  color: var(--blue-primary);
  font-weight: 600;
}

/* Floating Performance Badges */
.badge-perf-top-left {
  position: absolute;
  top: -15px;
  left: -20px;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.badge-perf-bottom-left {
  position: absolute;
  bottom: 10px;
  left: -25px;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.badge-perf-top-right {
  position: absolute;
  top: -15px;
  right: -20px;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.badge-perf-bottom-right {
  position: absolute;
  bottom: 10px;
  right: -25px;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.circle-score-green {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #10b981;
}

/* What We Offer 6 Cards Grid */
.offers-section {
  padding: 5.5rem 0;
  background: var(--light-bg);
}

.offers-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.offer-card-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.offer-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  margin: 0 auto 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.offer-1 .offer-icon-wrapper { background: #f3e8ff; color: #9333ea; }
.offer-2 .offer-icon-wrapper { background: #dbeafe; color: #2563eb; }
.offer-3 .offer-icon-wrapper { background: #d1fae5; color: #059669; }
.offer-4 .offer-icon-wrapper { background: #ffedd5; color: #ea580c; }
.offer-5 .offer-icon-wrapper { background: #fce7f3; color: #db2777; }
.offer-6 .offer-icon-wrapper { background: #e0e7ff; color: #4338ca; }

.offer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.offer-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 6 Step Process Timeline */
.process-timeline-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  position: relative;
}

.process-timeline-6::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  width: 84%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

/* Tech Stack Dark Container */
.tech-stack-section {
  padding: 3rem 0;
}

.tech-stack-container {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.tech-stack-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.tech-icons-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-4px);
}

.tech-item i, .tech-item svg {
  font-size: 2.2rem;
}

.tech-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
}

/* Portfolio Projects Showcase Grid */
.projects-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.project-card-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.project-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.project-img-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  background: #0f172a;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card-item:hover .project-img-wrapper img {
  transform: scale(1.06);
}

.project-info {
  padding: 1.25rem;
}

.project-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.25rem;
}

.project-category {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Have a Project in Mind? Box */
.project-cta-box {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px dashed var(--blue-primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.project-cta-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.5rem;
}

.project-cta-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .offers-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-timeline-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline-6::before {
    display: none;
  }

  .projects-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .offers-grid-6 {
    grid-template-columns: 1fr;
  }

  .process-timeline-6 {
    grid-template-columns: 1fr;
  }

  .projects-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SMM Services Page Specific Styles
   ========================================================================== */
.platforms-stats-section {
  padding: 5rem 0;
  background: #ffffff;
}

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

.platforms-icons-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.platform-btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.platform-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.platform-btn-item:hover .platform-icon-circle {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.platform-fb { background: #1877f2; }
.platform-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-li { background: #0a66c2; }
.platform-yt { background: #ff0000; }
.platform-tw { background: #1da1f2; }
.platform-tt { background: #000000; }

.platform-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* SMM Stats Dark Card */
.smm-stats-card {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.smm-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.smm-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.stat-icon-orange { color: #f97316; }
.stat-icon-purple { color: #c084fc; }
.stat-icon-blue { color: #60a5fa; }
.stat-icon-green { color: #4ade80; }

.smm-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.smm-stat-text {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Results Carousel Section */
.smm-results-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.smm-results-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}

.campaign-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}

.campaign-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.campaign-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.campaign-platform-icon {
  font-size: 1.25rem;
}

.campaign-image-box {
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.campaign-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.metric-item-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.metric-item-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.metric-badge-up {
  font-size: 0.7rem;
  font-weight: 700;
  color: #059669;
  display: inline-block;
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--secondary-navy);
  font-size: 0.9rem;
  transition: var(--transition);
}

.carousel-nav-btn:hover {
  background: var(--blue-primary);
  color: #ffffff;
  border-color: var(--blue-primary);
}

@media (max-width: 1100px) {
  .platforms-stats-grid {
    grid-template-columns: 1fr;
  }

  .smm-results-grid {
    grid-template-columns: 1fr;
  }

  .campaign-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .smm-stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SEO Services Page Specific Styles
   ========================================================================== */
.seo-results-banner-section {
  padding: 3rem 0;
  background: #ffffff;
}

.seo-hero-img:hover {
  transform: translateY(-6px) scale(1.02);
}

.seo-stats-banner-5 {
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.seo-banner-title {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 2.25rem;
  color: #ffffff;
}

.seo-stats-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.seo-stat-item-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: left;
}

.seo-stat-icon-wrap {
  font-size: 2rem;
}

.seo-stat-val-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.seo-stat-val-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* Why Choose Us & Google Rank #1 Section */
.seo-why-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.seo-why-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

/* Google Rank #1 Card Graphic */
.google-rank-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  position: relative;
}

.google-search-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8fafc;
  padding: 0.65rem 1rem;
  border-radius: 30px;
  border: 1px solid #cbd5e1;
  margin-bottom: 1.25rem;
}

.google-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: sans-serif;
}

.google-g-blue { color: #4285f4; }
.google-o-red { color: #ea4335; }
.google-o-yellow { color: #fbbc05; }
.google-g-green { color: #34a853; }
.google-l-blue { color: #4285f4; }
.google-e-red { color: #ea4335; }

.google-search-input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 0.85rem;
  color: var(--secondary-navy);
  outline: none;
}

.google-result-snippet {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
  position: relative;
}

.rank-one-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.result-url-path {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.result-title-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 0.35rem;
}

.result-snippet-text {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
}

/* Benefits You Get Box */
.benefits-box-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

.benefits-box-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 1.5rem;
}

.benefits-list-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.benefit-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.benefit-title-text {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.15rem;
}

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

@media (max-width: 1200px) {
  .seo-stats-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-why-section-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .seo-stats-grid-5 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Google Ads PPC Page Specific Styles
   ========================================================================== */

/* Google Ads Dashboard Mockup */
.gads-dashboard {
  background: #0f172a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
  border: 1px solid #1e293b;
  position: relative;
}

.gads-top-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.gads-stat-mini {
  background: #1e293b;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

.gads-stat-mini-label {
  font-size: 0.68rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.gads-stat-mini-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.gads-stat-mini-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #4ade80;
}

.gads-body-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.gads-donut-card, .gads-table-card {
  background: #1e293b;
  border-radius: 10px;
  padding: 1rem;
}

.gads-card-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}

.gads-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.gads-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

.gads-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gads-table-mini {
  width: 100%;
  font-size: 0.68rem;
  color: #94a3b8;
}

.gads-table-mini th {
  text-align: left;
  font-weight: 700;
  color: #cbd5e1;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #334155;
}

.gads-table-mini td {
  padding: 0.4rem 0;
  border-bottom: 1px solid #1e293b44;
}

/* ROAS Badge */
.gads-roas-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #ffffff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  z-index: 10;
}

.gads-roas-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.gads-roas-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.gads-roas-pct {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
}

/* Google Ads Icon Badge */
.gads-icon-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Why Choose Us + Stats Section */
.gads-why-section {
  padding: 5rem 0;
  background: #ffffff;
}

.gads-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.gads-stats-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gads-stat-card-box {
  background: var(--light-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.gads-stat-card-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.gads-stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.gads-stat-card-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary-navy);
  margin-bottom: 0.2rem;
}

.gads-stat-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Success Stories */
.success-stories-section {
  padding: 5rem 0;
  background: #ffffff;
}

.success-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.success-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.success-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.success-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.success-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.success-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.success-card-chart {
  height: 40px;
  margin-bottom: 0.75rem;
}

.success-card-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.success-card-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 5 Feature Badges Row */
.hero-badges-row-5 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-mini-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.hero-mini-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary-navy);
  border: 1px solid #e2e8f0;
}

.hero-mini-badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  max-width: 80px;
  line-height: 1.25;
}

@media (max-width: 1200px) {
  .gads-why-grid {
    grid-template-columns: 1fr;
  }

  .success-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gads-top-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .success-grid-4 {
    grid-template-columns: 1fr;
  }

  .gads-stats-boxes {
    grid-template-columns: 1fr;
  }

  .gads-body-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3.5rem;
  }

  .hero-grid, .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.25 !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .process-timeline::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    display: none;
  }

  /* Responsive floating badges on mobile */
  .floating-top-right,
  .floating-bottom-left,
  .badge-perf-top-left,
  .badge-perf-bottom-left,
  .badge-perf-top-right,
  .badge-perf-bottom-right {
    /* display: none !important; */
  }

  .plant-illustration {
    display: none !important;
  }

  .dashboard-mockup-container {
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .contact-hero-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .contact-hero-badge-item {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stat-item {
    flex-direction: column;
  }
  .stat-details {
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   AI Interactive 3D Hero Styles
   ========================================================================== */

#heroAiContainer {
  position: relative;
  perspective: 1000px;
  cursor: pointer;
  padding: 1rem;
}

.ai-cursor-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(6, 182, 212, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
  filter: blur(20px);
}

.ai-hero-card-3d {
  position: relative;
  background: rgba(15, 23, 42, 0.94);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.5), 0 0 40px rgba(99, 102, 241, 0.2);
  border: 1px solid rgba(99, 102, 241, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  overflow: hidden;
  z-index: 2;
}

.ai-hero-card-3d:hover {
  border-color: rgba(6, 182, 212, 0.6);
  box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.6), 0 0 50px rgba(6, 182, 212, 0.35);
}

.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-status-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-green 1.5s infinite;
  margin-left: 0.5rem;
}

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

.ai-status-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #94a3b8;
}

.ai-badge-top {
  font-size: 0.72rem;
  font-weight: 700;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.ai-core-visual {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ai-center-brain {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #ffffff;
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.8), 0 0 60px rgba(6, 182, 212, 0.5);
  z-index: 5;
  animation: brain-float 3s ease-in-out infinite alternate;
}

@keyframes brain-float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.05); }
}

.ai-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(99, 102, 241, 0.4);
  animation: spin-ring infinite linear;
}

.ring-1 {
  width: 120px;
  height: 120px;
  border-color: rgba(6, 182, 212, 0.5);
  animation-duration: 12s;
}

.ring-2 {
  width: 170px;
  height: 170px;
  border-color: rgba(168, 85, 247, 0.4);
  animation-duration: 18s;
  animation-direction: reverse;
}

.ring-3 {
  width: 220px;
  height: 220px;
  border-color: rgba(236, 72, 153, 0.3);
  animation-duration: 25s;
}

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

.ai-orbit-container {
  position: absolute;
  width: 170px;
  height: 170px;
  animation: spin-ring 14s infinite linear;
}

.ai-orbit-node {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.node-1 { top: -16px; left: calc(50% - 16px); color: #3b82f6; border-color: #3b82f6; }
.node-2 { right: -16px; top: calc(50% - 16px); color: #10b981; border-color: #10b981; }
.node-3 { bottom: -16px; left: calc(50% - 16px); color: #f97316; border-color: #f97316; }
.node-4 { left: -16px; top: calc(50% - 16px); color: #ec4899; border-color: #ec4899; }

.ai-tech-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.6;
}

.ai-card-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(30, 41, 59, 0.7);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-stat-box {
  text-align: center;
}

.ai-stat-label {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.ai-stat-val {
  font-size: 1.05rem;
  font-weight: 800;
}

.text-cyan { color: #06b6d4; }
.text-purple { color: #a855f7; }
.text-green { color: #10b981; }

.ai-stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
}

/* Floating 3D Parallax Badges */
.ai-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.1rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  pointer-events: none;
}

.badge-top-right {
  top: -15px;
  right: -15px;
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
}

.badge-top-left {
  top: 40%;
  left: -25px;
}

.badge-icon-ai {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}

.bg-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.bg-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-pink { background: linear-gradient(135deg, #ec4899, #db2777); }

.badge-ai-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--secondary-navy);
}

.badge-ai-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 992px) {
  .badge-top-left {
    display: none;
  }
}


