/* -------------------------------------------------------------
 * The Ranks SEO - Modern Dark Design System
 * Primary Accent: Electric Neon Lime (#A3FF12) & WhatsApp Emerald (#25D366)
 * Secondary Accent: Cyber Cyan (#00F0FF)
 * ------------------------------------------------------------- */

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

:root {
  /* Color Palette */
  --accent-lime: #a3ff12;
  --accent-lime-hover: #b8ff36;
  --accent-whatsapp: #25d366;
  --accent-cyan: #00f0ff;

  --accent-gradient: linear-gradient(135deg, #a3ff12 0%, #00f0ff 100%);
  --accent-gradient-chat: linear-gradient(135deg, #a3ff12 0%, #25d366 100%);
  --accent-gradient-text: linear-gradient(135deg, #ffffff 0%, #a3ff12 50%, #00f0ff 100%);

  /* Deep Background Architecture */
  --bg-deep: #030712;
  --bg-main: #0b132b;
  --bg-card: rgba(15, 23, 42, 0.88);
  --bg-card-hover: rgba(23, 37, 66, 0.95);
  --bg-header: rgba(3, 7, 18, 0.92);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(163, 255, 18, 0.5);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-heading: #ffffff;
  --text-lime: #a3ff12;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Layout Constants & Shadows */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-card: 0 14px 40px -10px rgba(0, 0, 0, 0.8);
  --shadow-lime-glow: 0 0 25px rgba(163, 255, 18, 0.35), 0 0 45px rgba(0, 240, 255, 0.15);
  --shadow-chat-glow: 0 0 25px rgba(37, 211, 102, 0.55), 0 0 45px rgba(163, 255, 18, 0.35);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(163, 255, 18, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 45%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.section-padding {
  padding: 5.5rem 0;
}

/* Header Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo-img {
  height: 28px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(163, 255, 18, 0.3));
  transition: var(--transition);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(163, 255, 18, 0.6));
}

.logo-badge {
  background: var(--accent-gradient);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(163, 255, 18, 0.25);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.4rem 0;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-lime);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-lime);
}

/* Header Chat Button */
.nav-btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--accent-gradient-chat);
  color: #030712;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.65rem 1.45rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-chat-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}

.online-dot {
  width: 9px;
  height: 9px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #ffffff;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.nav-btn-chat:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.8), 0 0 55px rgba(163, 255, 18, 0.6);
}

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

/* Utilities */
.gradient-text {
  background: var(--accent-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(163, 255, 18, 0.08);
  border: 1px solid var(--border-active);
  color: var(--accent-lime);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.2rem;
  box-shadow: 0 0 15px rgba(163, 255, 18, 0.15);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.8rem auto;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

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

/* -------------------------------------------------------------
 * HERO SECTION - Card Style (Left Content, Right Image/Orbit Card)
 * ------------------------------------------------------------- */
.hero {
  padding-top: 9.8rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

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

.hero-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.8rem;
}

/* Buttons */
.btn-chat-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-gradient-chat);
  color: #030712;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-chat-glow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-chat-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(37, 211, 102, 0.8), 0 0 55px rgba(163, 255, 18, 0.6);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(163, 255, 18, 0.12);
  color: var(--accent-lime);
  border: 1px solid var(--border-active);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(163, 255, 18, 0.15);
}

.btn-primary:hover {
  background: var(--accent-lime);
  color: #030712;
  box-shadow: 0 0 25px rgba(163, 255, 18, 0.5);
  transform: translateY(-3px);
}

/* Hero Stats Row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-color);
  max-width: 580px;
}

.stat-item h3 {
  font-size: 1.6rem;
  color: var(--accent-lime);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* AI Engine Orbit Visual Graphic Container inside Card */
.ai-orbit-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(163, 255, 18, 0.25);
  animation: spin-slow 35s linear infinite;
}

.ring-outer {
  width: 370px;
  height: 370px;
}

.ring-inner {
  width: 230px;
  height: 230px;
  border-color: rgba(0, 240, 255, 0.25);
  animation-direction: reverse;
  animation-duration: 25s;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.ai-orbit-center {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent-lime);
  box-shadow: 0 0 35px rgba(163, 255, 18, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 1.2rem;
}

.ai-node-item {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  z-index: 15;
}

.ai-node-item:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lime-glow);
}

.ai-node-item i {
  font-size: 1.15rem;
}

.ai-node-item span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-heading);
}

.node-google { top: 5px; left: 50%; transform: translateX(-50%); }
.node-chatgpt { top: 32%; right: -5px; }
.node-gemini { bottom: 15%; right: 15px; }
.node-perplexity { bottom: 15%; left: 15px; }
.node-claude { top: 32%; left: -5px; }

/* -------------------------------------------------------------
 * TEAM MEMBER HIERARCHY SYSTEM - Rows by Level
 * ------------------------------------------------------------- */
.team-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
}

.team-row-title {
  font-size: 1.4rem;
  color: var(--accent-lime);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
}

.team-row-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 480px));
  gap: 2.5rem;
  justify-content: center;
}

.team-row-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.team-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.team-avatar-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.4rem auto;
  position: relative;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-lime) 0%, var(--accent-cyan) 100%);
  box-shadow: 0 0 25px rgba(163, 255, 18, 0.4);
  flex-shrink: 0;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--bg-main);
  display: block;
}

.team-role {
  color: var(--accent-lime);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.8rem;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}

/* -------------------------------------------------------------
 * USMAN ALI PORTFOLIO RESPONSIVE LAYOUT CLASSES
 * ------------------------------------------------------------- */
.portfolio-hero-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  align-items: center;
}

.portfolio-summary-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.portfolio-btn-group {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.portfolio-meta-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* -------------------------------------------------------------
 * CONTACT US PAGE - Modern Glassmorphic Card Layout
 * ------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.contact-method:hover {
  border-color: var(--border-active);
  transform: translateX(6px);
  box-shadow: 0 0 20px rgba(163, 255, 18, 0.2);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(163, 255, 18, 0.12);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Modern Card-Styled Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.3px;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-lime);
  box-shadow: 0 0 18px rgba(163, 255, 18, 0.3);
  background: rgba(11, 19, 43, 0.95);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a3ff12' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 14px;
  padding-right: 2.8rem;
  cursor: pointer;
}

select.form-input option {
  background: var(--bg-main);
  color: #ffffff;
}

/* Card Grid System */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(163, 255, 18, 0.1);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-lime);
  margin-bottom: 1.4rem;
  box-shadow: 0 0 18px rgba(163, 255, 18, 0.2);
}

.card-title {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
  color: var(--text-heading);
}

.card-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--accent-lime);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-shadow: 0 0 12px rgba(163, 255, 18, 0.3);
}

.card-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: lowercase;
}

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

.card-features {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-main);
  font-size: 0.92rem;
}

.card-features li i {
  color: var(--accent-lime);
  font-size: 1rem;
}

/* 3D Coverflow Continuous Slider (ClicksBooster Style) */
.cbr-slider-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 0 3rem 0;
}

.cbr-stage {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.cbr-slide-card {
  position: absolute;
  width: 620px;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.cbr-slide-card.pos-center {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 5;
}

.cbr-slide-card.pos-left1 {
  transform: translateX(-320px) scale(0.82) rotateY(15deg);
  opacity: 0.55;
  z-index: 3;
}

.cbr-slide-card.pos-right1 {
  transform: translateX(320px) scale(0.82) rotateY(-15deg);
  opacity: 0.55;
  z-index: 3;
}

.cbr-slide-card.pos-hidden {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.cbr-card-badge {
  background: rgba(163, 255, 18, 0.12);
  border: 1px solid var(--border-active);
  color: var(--accent-lime);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cbr-img-wrap {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.cbr-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  display: block;
}

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

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  color: var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(163, 255, 18, 0.2);
}

.slider-btn:hover {
  background: var(--accent-lime);
  color: #030712;
  box-shadow: 0 0 25px rgba(163, 255, 18, 0.6);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--accent-lime);
  width: 26px;
  border-radius: 10px;
  box-shadow: 0 0 10px var(--accent-lime);
}

/* Interactive Service Tabs Section */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  border-color: var(--accent-lime);
  color: var(--accent-lime);
}

.tab-btn.active {
  background: var(--accent-lime);
  color: #030712;
  border-color: var(--accent-lime);
  box-shadow: 0 0 20px rgba(163, 255, 18, 0.4);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

.service-split-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.included-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.included-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}

.included-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--accent-lime);
}

/* Why Choose Us 6-Grid Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lime-glow);
}

.why-number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(163, 255, 18, 0.15);
}

/* Dark Stats Bar */
.dark-stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.dark-stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent-lime);
  margin-bottom: 0.3rem;
  text-shadow: 0 0 12px rgba(163, 255, 18, 0.4);
}

.dark-stat-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lime-glow);
}

.process-step-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(163, 255, 18, 0.12);
  border: 1px solid var(--border-active);
  color: var(--accent-lime);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

/* Portfolio & UI Cards */
.btn-portfolio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(163, 255, 18, 0.12);
  color: var(--accent-lime);
  border: 1px solid var(--border-active);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  margin-top: auto;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(163, 255, 18, 0.15);
}

.btn-portfolio:hover {
  background: var(--accent-lime);
  color: #030712;
  box-shadow: 0 0 25px rgba(163, 255, 18, 0.5);
  transform: translateY(-3px);
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.portfolio-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
}

.portfolio-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.skill-tag {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Floating WhatsApp Chat Widget */
.floating-widget {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--accent-whatsapp);
  color: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.35);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: bounce-subtle 2.5s infinite;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.floating-trigger-wrapper {
  position: relative;
}

.floating-trigger {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.7), 0 0 50px rgba(163, 255, 18, 0.35);
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.floating-popover {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  width: 300px;
  box-shadow: var(--shadow-card), var(--shadow-lime-glow);
  flex-direction: column;
  gap: 0.9rem;
  backdrop-filter: blur(16px);
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.floating-popover.active {
  display: flex;
}

.popover-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  font-size: 0.92rem;
  font-weight: 700;
}

.popover-item:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25d366;
  color: #25d366;
  transform: translateX(4px);
}

/* Footer */
.footer {
  margin-top: auto;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2.8rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-top: 1.2rem;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
  color: var(--text-heading);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

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

.footer-links a:hover {
  color: var(--accent-lime);
}

.footer-bottom {
  padding-top: 2.2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .team-row-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .hero-description, .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .service-split-card {
    grid-template-columns: 1fr;
  }

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

  .cbr-stage {
    height: 420px;
  }

  .cbr-slide-card {
    width: 90%;
  }

  .cbr-slide-card.pos-left1, .cbr-slide-card.pos-right1 {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: none;
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    display: flex;
  }
}

/* -------------------------------------------------------------
 * MOBILE RESPONSIVE MEDIA QUERIES (max-width: 768px)
 * ------------------------------------------------------------- */
@media (max-width: 768px) {
  .portfolio-hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    gap: 1.2rem !important;
  }

  .portfolio-summary-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    gap: 1.5rem !important;
  }

  .portfolio-btn-group {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .portfolio-btn-group .btn-portfolio {
    width: 100% !important;
    justify-content: center !important;
  }

  .portfolio-meta-info {
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: center !important;
    text-align: center !important;
  }

  .portfolio-card {
    padding: 1.5rem 1.2rem !important;
    margin-bottom: 1.8rem !important;
  }

  .portfolio-card h1 {
    font-size: 2.1rem !important;
  }

  .portfolio-card h2 {
    font-size: 1.4rem !important;
  }

  .cbr-stage {
    height: 380px !important;
  }

  .cbr-slide-card {
    width: 94% !important;
    padding: 1rem !important;
  }

  .cbr-img-wrap img {
    max-height: 250px !important;
  }

  .floating-widget {
    bottom: 20px;
    right: 20px;
  }

  .floating-trigger {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .chat-tooltip {
    display: none;
  }
}
