/* === RESET & ROOT VARIABLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #041026;
  --surface: #071732;
  --muted: #0b2740;
  --text: #e6f4ff;
  --muted-text: #b9d6ee;
  --primary: #0D6EFD;
  --accent: #00D4FF;
  --gold: #FFD700;
  --glass: rgba(255,255,255,0.02);
  --shadow-heavy: rgba(2,6,23,0.7);
  --glow-primary: rgba(110,168,254,0.16);
  --glow-accent: rgba(0,191,166,0.14);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* === HEADER & NAV === */
header {
  background: var(--surface);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 4px 18px var(--shadow-heavy);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: auto;
  margin: 0 auto;
  padding: 1rem 5%;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  background: var(--surface);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--shadow-heavy);
  border: 1px solid var(--glass);
}

nav ul li a {
  color: var(--primary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  box-shadow: 0 8px 24px rgba(2,6,23,0.65), 0 0 10px var(--glow-accent);
  text-shadow: 0 0 8px rgba(0,212,255,0.4);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo a {
  color: var(--primary);
  text-decoration: none;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  background: #0a0e17;
  overflow: hidden;
}

#data-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 23, 0.78);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.text-col {
  flex: 1;
  padding-right: 40px;
}

.image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 4.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.subheading {
  font-size: 1.9rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 34px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.btn-primary:hover {
  background: #0b5ed7;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a0e17;
  transform: translateY(-4px);
}

.profile-pic {
  width: 360px;
  height: 430px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(13, 110, 253, 0.3);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15),
              0 20px 40px rgba(0,0,0,0.3);
  transition: all 0.5s ease;
  display: block;
}

.profile-pic:hover {
  transform: scale(1.07);
  box-shadow: 0 0 90px rgba(13, 110, 253, 0.9), 
              0 0 180px rgba(0, 212, 255, 0.6),
              0 20px 60px rgba(0,0,0,0.4);
}

.profile-pic:hover {
  transform: scale(1.07);
  box-shadow: 0 0 90px rgba(13, 110, 253, 0.9), 0 0 180px rgba(0, 212, 255, 0.6);
}

/* === PROJECTS SECTION === */
.projects-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--muted) 100%);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.project-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.3);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.3), 0 0 30px var(--glow-accent);
  border: 1px solid var(--accent);
}

.project-thumb {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--muted), var(--surface));
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.1);
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text);
}

.project-summary {
  font-size: 1rem;
  color: var(--muted-text);
  margin-bottom: 15px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tag {
  background: rgba(13, 110, 253, 0.2);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--accent);
}

.btn-view {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: rgba(13, 110, 253, 0.2);
  transform: translateX(5px);
}

.projects-cta {
  text-align: center;
  margin-top: 50px;
}

/* === SKILLS SECTION === */
.skills-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--muted) 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.skills-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, var(--glow-accent) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.tools-bar {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.tool-item {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tool-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.tool-item:hover {
  background: rgba(13, 110, 253, 0.15);
  border: 1px solid var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.3);
}

.tool-item:hover img {
  filter: brightness(1.2);
  transform: scale(1.1);
}

.percent-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tool-item:hover .percent-glow {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

#tooltip {
  position: fixed;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1001;
  display: none;
  box-shadow: 0 8px 24px rgba(13, 110, 253, 0.4);
}

#tooltip::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--primary);
}

.other-skills {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--accent);
}

.other-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.other-skill {
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid var(--primary);
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.other-skill:hover {
  background: rgba(13, 110, 253, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

/* === FOOTER === */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--muted-text);
  text-align: center;
  padding: 30px 20px;
  margin-top: 80px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 100px 5%;
  }

  .text-col {
    padding-right: 0;
    margin-bottom: 40px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 1.2rem;
  }

  .profile-pic {
    width: 1200px;
    height: 250px;
    display:relative;
  
  }

  .tools-bar {
    gap: 15px;
  }

  .tool-item {
    width: 80px;
    height: 80px;
  }

  .tool-item img {
    width: 50px;
    height: 50px;
  }

  .section-title {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 0.3rem;
    padding: 0.5rem;
  }

  nav ul li a {
    padding: 0.3rem 0.5rem;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .profile-pic {
    width: 180px;
    height: 170px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .tools-bar {
    gap: 10px;
  }

  .tool-item {
    width: 70px;
    height: 70px;
  }

  .tool-item img {
    width: 40px;
    height: 40px;
  }
}

/* === ANIMATIONS === */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slide-up 0.8s ease-out;
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================= */
/*            SERVICES SECTION – @AdultCycleNg   */
/* ============================================= */

.services-section {
  padding: 140px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--muted) 100%);
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, var(--glow-accent) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Title & Subtitle */
.services-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}

.services-title.visible { opacity: 1; transform: translateY(0); }

.services-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.9s ease-out 0.2s;
}

.services-subtitle.visible { opacity: 1; transform: translateY(0); }

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Card */
.service-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px var(--shadow-heavy);
  transition: all 0.6s cubic-bezier(0.25,0.8,0.25,1);
  opacity: 0.9;
  transform: translateY(60px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover */
.service-card:hover {
  transform: translateY(-16px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0,212,255,0.35);
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
}

.service-icon img,
.service-icon i {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  color: var(--accent);
}

/* Text */
.service-name {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.service-desc {
  color: var(--muted-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-features li {
  font-size: 0.95rem;
  color: var(--muted-text);
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Button */
.service-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(13,110,253,0.4);
}

.service-btn:hover {
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,212,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .services-title { font-size: 2.5rem; }
  .services-subtitle { font-size: 1.1rem; }
  .services-grid { gap: 30px; }
  .service-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}



/* ============================================= */
/*             HIRE ME SECTION – @AdultCycleNg   */
/* ============================================= */

.hire-section {
  padding: 140px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.hire-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, var(--glow-accent) 0%, transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.hire-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hire-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hire-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
}

.hire-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.hire-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.hire-subtitle {
  font-size: 1.4rem;
  color: var(--muted-text);
  margin-bottom: 30px;
}

.hire-highlights {
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 1.1rem;
  color: var(--text);
}

.highlight-icon {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.3rem;
}

.hire-cta {
  font-size: 1.3rem;
  margin-top: 30px;
  color: var(--accent);
  font-weight: 600;
}

/* Form Card */
.hire-form-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px var(--shadow-heavy);
  border: 1px solid rgba(0,212,255,0.2);
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease-out 0.3s;
}

.hire-form-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header i {
  font-size: 3rem;
  color: #25D366;
  margin-bottom: 10px;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--muted-text);
  font-size: 1rem;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin: 12px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hire-form input:focus,
.hire-form select:focus,
.hire-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0,212,255,0.3);
}

.whatsapp-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,211,102,0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .hire-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hire-text, .hire-form-card {
    transform: translateY(40px);
  }
}

@media (max-width: 480px) {
  .hire-title { font-size: 2.4rem; }
  .hire-form-card { padding: 30px 20px; }
}



/* Fix Checkmark + Dark Select Input */
.highlight-icon::before {
  content: 'Checkmark';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 8px;
}

/* Dark Select with White Text */
.hire-form select {
  background: #071732 !important;     /* Dark surface */
  color: #ffffff !important;          /* White text */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 40px !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300D4FF'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.hire-form input,
.hire-form textarea {
  background: #071732 !important;
  color: #ffffff !important;
  border: 1px solid rgba(0,212,255,0.3) !important;
}

.hire-form input::placeholder,
.hire-form textarea::placeholder {
  color: rgba(255,255,255,0.6) !important;
}

.hire-form select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 15px rgba(0,212,255,0.4) !important;
}

/* Ensure options are readable */
.hire-form select option {
  background: #071732;
  color: #ffffff;
}




/* Beautiful Glowing Icons for Hire Highlights */
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  font-size: 1.15rem;
  color: var(--text);
  padding: 8px 0;
  transition: all 0.4s ease;
}

.highlight-item:hover {
  color: var(--accent);
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 1.6rem;
  color: var(--accent);
  background: rgba(0, 212, 255, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transition: all 0.4s ease;
}

.highlight-item:hover .highlight-icon {
  background: var(--accent);
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}


/* ============================================= */
/*           STATS & REACH SECTION               */
/* ============================================= */

.stats-section {
  padding: 140px 20px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--muted) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, var(--glow-primary) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.9s ease-out;
}

.stats-title.visible { opacity: 1; transform: translateY(0); }

.stats-subtitle {
  font-size: 1.3rem;
  color: var(--muted-text);
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 1;
  transform: translateY(20px);
  transition: all 0.9s ease-out 0.2s;
}

.stats-subtitle.visible { opacity: 1; transform: translateY(0); }

/* Counters */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 80px 0;
}

.counter-card {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.counter-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0,212,255,0.6);
}

.counter::after {
  content: '+';
  font-size: 2.5rem;
  vertical-align: super;
  color: var(--primary);
}

.counter-card p {
  font-size: 1.2rem;
  color: var(--muted-text);
  margin-top: 10px;
}

/* Flags */
.flags-section {
  margin-top: 80px;
}

.flags-text {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 600;
}

.flags-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 1;
  transform: scale(0.8);
  transition: all 0.6s ease-out;
}

.flag-item.visible {
  opacity: 1;
  transform: scale(1);
}

.flag-item img {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.flag-item:hover img {
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(0,212,255,0.5);
}

.flag-item span {
  font-size: 0.95rem;
  color: var(--muted-text);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 2.2rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.15);
  background: #128C7E;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 768px) {
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter { font-size: 3rem; }
  .flags-grid { gap: 20px; }
  .flag-item img { width: 50px; height: 33px; }
}

@media (max-width: 480px) {
  .stats-title { font-size: 2.4rem; }
  .counters-grid { grid-template-columns: 1fr; }
}



/* Fiverr & LinkedIn Badges */
.fiverr-badge, .linkedin-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 20px;
  padding: 20px 30px;
  margin: 40px auto;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  opacity: 1;
  transform: translateY(30px);
}

.fiverr-badge.visible, .linkedin-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.fiverr-badge:hover, .linkedin-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,212,255,0.3);
}

.badge-icon {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #1DBF73, #25D366);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.linkedin-badge .badge-icon {
  background: linear-gradient(135deg, #0A66C2, #0077B5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.badge-info {
  text-align: left;
  flex: 1;
}

.badge-stars {
  font-size: 1.8rem;
  color: #FFD700;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 1.1rem;
  color: var(--muted-text);
}

.badge-link {
  background: var(--accent);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.badge-link:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .fiverr-badge, .linkedin-badge {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  .badge-info { text-align: center; }
}

/* Footer with Live Visitor Counter */
.footer {
  padding: 60px 20px 40px;
  background: rgba(7, 23, 50, 0.95);
  border-top: 1px solid rgba(13,110,253,0.3);
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.footer p {
  color: var(--muted-text);
  font-size: 1rem;
  margin-bottom: 20px;
}

.live-visitors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin: 20px 0;
}

.live-visitors i {
  font-size: 1.4rem;
  animation: pulse 2s infinite;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #0f0;
  border-radius: 50%;
  box-shadow: 0 0 20px #0f0;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.footer-social a {
  color: var(--muted-text);
  font-size: 1.6rem;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}



/* ============================================= */
/*           CONSULTING PAGE – ANALYTIQ STYLE    */
/* ============================================= */

.consulting-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  text-align: center;
  color: #EEEEEE;
}

.consulting-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 40px;
  background: #00ADB5;
  color: #1A1A2E;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,173,181,0.4);
  transition: all 0.4s;
}

.hero-cta:hover {
  transform: translateY(-5px);
  background: #fff;
}

/* Service Sections */
.service-section {
  padding: 120px 20px;
  background: #16213E;
}

.service-section.alternate {
  background: #1A1A2E;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse > * {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-content h2 {
  font-size: 2.4rem;
  color: #00ADB5;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin: 30px 0;
}

.service-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #EEEEEE;
}

.service-list li::before {
  content: 'Checkmark';
  color: #00ADB5;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.service-price {
  font-size: 1.8rem;
  color: #00ADB5;
  font-weight: 700;
  margin: 20px 0;
}

.service-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #00ADB5;
  color: #1A1A2E;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s;
}

.service-btn:hover {
  background: #fff;
  transform: translateY(-4px);
}

/* Final CTA */
.consulting-cta {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #00ADB5 0%, #1A1A2E 100%);
  color: white;
}

.consulting-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  padding: 16px 40px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
}

.btn-email {
  background: white;
  color: #1A1A2E;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .service-grid, .service-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .consulting-hero h1 { font-size: 2.8rem; }
}

/* FIX HERO IMAGE CLIPPING ON MOBILE */
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 1.8rem !important;
  }
  .hero-left p {
    font-size: 0.95rem;
  }
  .profile-image img {
    width: 100px !important;
    height: 100px !important;
  }
  .hero-content-mature {
    gap: 32px;
  }
  .contact-hero-mature {
    padding: 40px 16px !important;
    min-height: auto !important;
  }
  .hero-right {
    margin-top: 16px;
  }
}

/* Ensure hero section takes full needed height */
.contact-hero-mature {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Ensure profile card doesn't overflow */
.profile-card {
  max-width: 100%;
  margin: 0 auto;
}

/* Make image responsive */
.profile-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Optional: Add subtle glow ring */
.glow-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}



/* MOBILE HERO FIX – PREVENT IMAGE CUTOFF */
.contact-hero-mature {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 16px;
}

.hero-content-mature {
  width: 100%;
}

.profile-image {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.glow-ring {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 480px) {
  .contact-hero-mature {
    padding: 40px 16px;
    min-height: 75vh;
  }
  .hero-left h1 {
    font-size: 1.8rem;
  }
  .hero-left p {
    font-size: 0.95rem;
  }
  .profile-image {
    width: 100px;
    height: 100px;
  }
  .hero-content-mature {
    gap: 32px;
  }
}

/* BEAUTIFUL CHECKMARK ICONS */
.icon-check {
  color: #00ADB5;
  font-size: 1.4rem;
  margin-right: 12px;
  background: rgba(0, 173, 181, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00ADB5;
  box-shadow: 0 0 15px rgba(0, 173, 181, 0.4);
  transition: all 0.3s ease;
}

.service-list li:hover .icon-check {
  background: #00ADB5;
  color: #1A1A2E;
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(0, 173, 181, 0.7);
}

/* Remove old ::before rule */
.service-list li::before {
  content: none !important;
}

.service-list li {
  padding: 14px 0;
  padding-left: 0 !important;
  display: flex;
  align-items: center;
  color: #EEEEEE;
  font-size: 1.1rem;
}

/* ULTRA ANIMATED CHECKMARK ICONS — ANALYTIQ EDITION */
.icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.icon-check {
  font-size: 1.4rem;
  color: #00ADB5;
  background: rgba(0, 173, 181, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #00ADB5;
  box-shadow: 0 0 20px rgba(0, 173, 181, 0.4);
  
  /* Draw animation on scroll */
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
  clip-path: circle(0% at 50% 50%);
  animation: drawCircle 1.6s forwards;
  animation-delay: calc(0.1s * var(--i));
}

/* Draw circle + reveal checkmark */
@keyframes drawCircle {
  0% {
    clip-path: circle(0% at 50% 50%);
    transform: scale(0.8);
  }
  70% {
    clip-path: circle(50% at 50% 50%);
  }
  100% {
    clip-path: circle(50% at 50% 50%);
    transform: scale(1);
  }
}

/* Pulse glow */
.icon-check::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #00ADB5;
  opacity: 0;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}

/* Hover explosion */
.service-list li:hover .icon-check {
  background: #00ADB5;
  color: #1A1A2E;
  transform: scale(1.3) rotate(10deg);
  animation: bounceCheck 0.6s ease-out;
  box-shadow: 0 0 40px rgba(0, 173, 181, 0.9);
}

@keyframes bounceCheck {
  0% { transform: scale(1) rotate(0); }
  40% { transform: scale(1.4) rotate(-10deg); }
  60% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1.3) rotate(0); }
}

/* Stagger animation delay */
.service-list li:nth-child(1) { --i: 1; }
.service-list li:nth-child(2) { --i: 2; }
.service-list li:nth-child(3) { --i: 3; }
.service-list li:nth-child(4) { --i: 4; }
.service-list li:nth-child(5) { --i: 5; }

/* List item styling */
.service-list li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  color: #EEEEEE;
  font-size: 1.15rem;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s forwards;
  animation-delay: calc(0.15s * var(--i));
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* ============================================= */
/*             ACADEMY PAGE – ANALYTIQ           */
/* ============================================= */

.academy-hero {
  padding: 160px 20px 100px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  text-align: center;
  color: #EEEEEE;
}

.academy-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 32px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(0,212,255,0.3);
  border-radius: 50px;
  font-weight: 700;
  color: #EEEEEE;
  cursor: pointer;
  transition: all 0.4s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: #00ADB5;
  color: #1A1A2E;
  border-color: #00ADB5;
}

/* Content */
.academy-content {
  padding: 100px 20px;
  background: #16213E;
}

.academy-tab h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 20px;
  color: #00ADB5;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.module {
  background: rgba(0,173,181,0.1);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0,173,181,0.3);
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.module:hover {
  background: rgba(0,173,181,0.2);
  transform: translateY(-5px);
}

.training-info {
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  margin: 40px 0;
  font-size: 1.2rem;
}

.training-info strong {
  color: #00ADB5;
}

/* Registration Form */
.registration-form {
  display: grid;
  gap: 16px;
  max-width: 500px;
  margin: 40px auto;
}

.registration-form input,
.registration-form button {
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
}

.registration-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(0,212,255,0.3);
  color: #fff;
}

.registration-form button {
  background: #00ADB5;
  color: #1A1A2E;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.whatsapp-group {
  text-align: center;
  margin-top: 30px;
  padding: 30px;
  background: rgba(37,211,102,0.1);
  border-radius: 16px;
  border: 2px solid #25D366;
}

.whatsapp-join {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .academy-tabs { gap: 12px; }
  .tab-btn { padding: 12px 20px; font-size: 0.9rem; }
}


/* ============================================= */
/*      WORDPRESS COURSE LANDING PAGE STYLE      */
/* ============================================= */

.wp-hero {
  padding: 180px 20px 120px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  text-align: center;
  color: #EEEEEE;
}

.wp-hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
}

.wp-hero h1 span {
  color: #00ADB5;
}

.subtitle {
  font-size: 1.4rem;
  margin: 20px 0 40px;
  line-height: 1.6;
}

.price-box {
  background: rgba(0,173,181,0.15);
  padding: 20px;
  border-radius: 16px;
  border: 2px solid #00ADB5;
  display: inline-block;
  margin: 30px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
}

.new-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #00ADB5;
}

.timer {
  color: #ff6b6b;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  padding: 20px 50px;
  background: #00ADB5;
  color: #1A1A2E;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,173,181,0.5);
  transition: all 0.4s;
}

.cta-btn:hover {
  transform: translateY(-8px);
  background: #fff;
}

.trust-badges span {
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  margin: 10px;
  font-size: 0.9rem;
}

/* Modules */
.wp-modules, .wp-bonuses, .wp-instructor, .wp-register {
  padding: 100px 20px;
}

.wp-modules { background: #16213E; }
.wp-bonuses { background: #1A1A2E; }
.wp-instructor { background: #16213E; }
.wp-register { background: linear-gradient(135deg, #00ADB5 0%, #1A1A2E 100%); color: white; }

.modules-grid, .bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.module-card, .bonus {
  background: rgba(0,173,181,0.1);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,173,181,0.3);
  transition: all 0.4s;
}

.module-card:hover, .bonus:hover {
  transform: translateY(-10px);
  background: rgba(0,173,181,0.2);
}

.module-card i {
  font-size: 2.5rem;
  color: #00ADB5;
  margin-bottom: 16px;
}

/* Instructor */
.instructor-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}

.instructor-grid img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid #00ADB5;
}

.instructor-info h3 span {
  color: #00ADB5;
  font-size: 1rem;
}

/* Form */
.register-form {
  display: grid;
  gap: 16px;
  max-width: 500px;
  margin: 40px auto;
}

.register-form input,
.register-form select,
.register-form button {
  padding: 16px;
  border-radius: 12px;
  font-size: 1rem;
}

.register-form input,
.register-form select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.register-form button {
  background: #25D366;
  color: white;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.success-message {
  text-align: center;
  padding: 40px;
  background: rgba(37,211,102,0.2);
  border-radius: 16px;
  border: 2px solid #25D366;
}

.whatsapp-join {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}


/* ULTIMATE FULL-WIDTH HERO – BEST OF BOTH WORLDS */
.wp-hero-full {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 120px;
  color: #ffffff;
}

/* Background Layers */
.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 80%, #00ADB5 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, #00ffc6 0%, transparent 50%),
              #0f0c29;
  opacity: 0.95;
}

.hero-bg-blur {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover;
  filter: blur(4px) brightness(0.25);
}

.hero-mesh {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(0,173,181,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,173,181,0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: meshMove 25s linear infinite;
}

@keyframes meshMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Floating Shapes */
.floating-shapes .shape {
  position: absolute;
  background: linear-gradient(45deg, #00ADB5, #00ffc6);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(2px);
}

.shape-1 { width: 320px; height: 320px; top: 8%; left: 8%; animation: float1 28s infinite; }
.shape-2 { width: 220px; height: 220px; top: 65%; right: 12%; animation: float2 32s infinite reverse; }
.shape-3 { width: 420px; height: 420px; bottom: 8%; left: 18%; animation: float3 38s infinite; }
.shape-4 { width: 180px; height: 180px; top: 28%; right: 28%; animation: float1 24s infinite reverse; }
.shape-5 { width: 280px; height: 280px; bottom: 25%; right: 8%; animation: float2 30s infinite; }

/* Particle Rain */
.particles span {
  position: absolute;
  width: 5px; height: 5px;
  background: #00ffc6;
  border-radius: 50%;
  box-shadow: 0 0 25px #00ADB5;
  animation: particleFloat 18s infinite linear;
}

.particles span:nth-child(odd) { background: #00ADB5; }
.particles span:nth-child(1) { top: 15%; left: 12%; animation-delay: 0s; }
.particles span:nth-child(2) { top: 45%; left: 82%; animation-delay: 3s; }
.particles span:nth-child(3) { top: 75%; left: 18%; animation-delay: 6s; }
.particles span:nth-child(4) { top: 35%; left: 88%; animation-delay: 2s; }
.particles span:nth-child(5) { top: 85%; left: 62%; animation-delay: 5s; }

/* Content */
.hero-content-full { position: relative; z-index: 10; max-width: 1250px; }
.wp-hero-full h1 { font-size: 4.8rem; line-height: 1.1; font-weight: 800; }
.gradient-text { 
  background: linear-gradient(90deg, #00ADB5, #00ffc6, #00ADB5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%; animation: gradientShift 10s ease infinite;
}
.highlight-line { color: #00ffc6; font-size: 3.2rem; }
.subtitle, .highlight, .tagline { backdrop-filter: blur(8px); }

/* CTA & Badges */
.price-box-full { backdrop-filter: blur(20px); }
.cta-btn-full:hover { transform: translateY(-15px) scale(1.1); }
.trust-badges-full span { backdrop-filter: blur(10px); }

/* Mobile */
@media (max-width: 768px) {
  .wp-hero-full h1 { font-size: 2.9rem; }
  .highlight-line { font-size: 2.1rem; }
  .tagline { font-size: 1.7rem; }
}

/* === AnalytIQ Academy Curriculum Section === */
.curriculum-section {
  background: linear-gradient(135deg, #120027 0%, #22034a 50%, #ff6600 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.curriculum-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.curriculum-section .intro-text {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #e0d4ff;
  line-height: 1.6;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
}

.module-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.module-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.3);
}

.module-card i {
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 15px;
  background: rgba(255, 102, 0, 0.15);
  border-radius: 50%;
  padding: 12px;
}

.module-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
}

.module-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-card ul li {
  font-size: 0.95rem;
  color: #d6d6e3;
  line-height: 1.6;
  padding-left: 10px;
  position: relative;
  margin-bottom: 8px;
}

.module-card ul li::before {
  content: "✔";
  color: #ff6600;
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.module-card.highlight {
  border: 1.5px solid #ff6600;
  background: rgba(255, 102, 0, 0.08);
}

@media (max-width: 768px) {
  .curriculum-section h2 {
    font-size: 1.8rem;
  }
  .module-card {
    padding: 20px;
  }
}


/* === AnalytIQ Academy: Learning Outcomes Section === */
.learning-outcomes {
  background: linear-gradient(135deg, #120027 0%, #22034a 50%, #ff6600 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.learning-outcomes h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.learning-outcomes .intro-text {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #e0d4ff;
  line-height: 1.6;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.skill-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.3);
}

.skill-card i {
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 15px;
  background: rgba(255, 102, 0, 0.15);
  border-radius: 50%;
  padding: 12px;
}

.skill-card h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.skill-card p {
  font-size: 0.95rem;
  color: #d6d6e3;
  line-height: 1.6;
}

.skill-card.highlight {
  border: 1.5px solid #ff6600;
  background: rgba(255, 102, 0, 0.08);
}

@media (max-width: 768px) {
  .learning-outcomes h2 {
    font-size: 1.8rem;
  }
  .skill-card {
    padding: 20px;
  }
}

/* === AnalytIQ Academy Section Banner === */
.section-banner {
  background: linear-gradient(135deg, #ff6600 0%, #22034a 70%);
  color: #fff;
  padding: 100px 20px 80px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-banner h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-banner p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #f5e9ff;
  line-height: 1.7;
}

.section-banner .cta-btn {
  background: #fff;
  color: #ff6600;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.section-banner .cta-btn:hover {
  background: #ff6600;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.4);
}

@media (max-width: 768px) {
  .section-banner h1 {
    font-size: 1.9rem;
  }
  .section-banner p {
    font-size: 0.95rem;
  }
}

/* === FINAL CTA + REGISTRATION SECTION === */
.wp-register {
  background: linear-gradient(135deg, #0b132b, #1c2541);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.wp-register .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f5f5f5;
}

.wp-register .final-pitch {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #dbe2ef;
}

.register-card {
  background: #ffffff10;
  backdrop-filter: blur(12px);
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.register-form input,
.register-form select {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #fff;
  color: #222;
  outline: none;
}

.register-form input:focus,
.register-form select:focus {
  border: 2px solid #00bcd4;
}

.btn-primary {
  background: #00bcd4;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #02c39a;
  transform: translateY(-2px);
}

.success-message {
  margin-top: 25px;
}

.success-message p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.whatsapp-join {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.whatsapp-join:hover {
  background: #1ebc57;
}


/* === Glowing Select & Input Styling === */
.register-form input,
.register-form select {
  background: #0f0f1a; /* deep dark background */
  color: #e0e0ff; /* soft glowing text */
  border: 1px solid #5c5cff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
  transition: all 0.3s ease;
  outline: none;
  box-shadow: 0 0 8px rgba(92, 92, 255, 0.3);
}

/* Add glow on hover or focus */
.register-form input:focus,
.register-form select:focus {
  border-color: #a66bff;
  box-shadow: 0 0 15px rgba(166, 107, 255, 0.6);
  color: #fff;
  background: #181830;
}

/* Style the dropdown arrow and options */
.register-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(145deg, #0b0b16, #181830);
  background: linear-gradient(145deg, #0b0b16, #181830);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
  color : #e0e0ff;
}

/* Option text color */
.register-form select option {
  background-color: #0f0f1a;
  color: #e0e0ff;
  border: none;
}

/* === Glowing Submit Button === */
.register-form button,
.btn-primary {
  background: linear-gradient(135deg, #5c5cff, #a66bff);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(166, 107, 255, 0.5);
}

/* Hover effect: brighter glow */
.register-form button:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(166, 107, 255, 0.8), 0 0 50px rgba(92, 92, 255, 0.6);
  background: linear-gradient(135deg, #6b6bff, #b47cff);
}

/* Active press effect */
.register-form button:active {
  transform: scale(0.98);
  box-shadow: 0 0 12px rgba(92, 92, 255, 0.4);
}

/* Optional glowing border animation (pulse) */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px rgba(166, 107, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(166, 107, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(166, 107, 255, 0.5);
  }
}

.register-form button.glow {
  animation: pulse-glow 2s infinite;
}


/* === Glassmorphic Register Card === */
.register-card {
  background: rgba(15, 15, 30, 0.6);
  border: 1px solid rgba(166, 107, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 0 25px rgba(92, 92, 255, 0.3);
  max-width: 650px;
  margin: 50px auto;
  transition: all 0.3s ease;
}

/* Subtle hover glow */
.register-card:hover {
  box-shadow: 0 0 45px rgba(166, 107, 255, 0.6), 0 0 80px rgba(92, 92, 255, 0.3);
  border-color: rgba(166, 107, 255, 0.6);
}

/* Centering and spacing tweaks */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.register-form input,
.register-form select {
  flex: 1;
}

/* Section background upgrade */
.wp-register {
  background: radial-gradient(circle at top left, #0c0c1a, #090915, #060612);
  color: #e0e0ff;
  padding: 80px 20px;
  text-align: center;
}

/* Heading glow */
.wp-register h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(166, 107, 255, 0.7);
}

.final-pitch {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ccc;
  line-height: 1.7;
}


/* GLOWING "COMING SOON" TEXT WITH ICON */
.coming-soon-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ff88;
  text-align: center;
  padding: 16px 32px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  animation: greenPulse 2.5s infinite;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
  margin: 20px auto;
  max-width: fit-content;
}

.coming-soon-glow i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  color: #00ff88;
  filter: drop-shadow(0 0 10px #00ff88);
}

@keyframes greenPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.8), 0 0 50px rgba(0, 255, 136, 0.5), 0 0 70px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Mobile */
@media (max-width: 768px) {
  .coming-soon-glow {
    font-size: 1.1rem;
    padding: 12px 24px;
    gap: 8px;
  }
  .coming-soon-glow i { font-size: 1.3rem; }
}



/* MATURE, PROFESSIONAL, GLOWING DESIGN SYSTEM */

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  background: #0f0f1a;
  color: #e0e0ff;
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; color: #ffffff; }
.section-title { text-align: center; margin-bottom: 1rem; }
.section-subtitle { text-align: center; color: #a0a0cc; max-width: 700px; margin: 0 auto 3rem; }

/* Header */
.header-mature {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 173, 181, 0.15);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
}
/*.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: auto; margin: 0 auto; padding: 0 2rem; }*/
/*.logo a { font-size: 1.6rem; font-weight: 700; color: #00ffc6; text-decoration: none; }*/
/*.nav-links { display: flex; gap: 2.5rem; }*/
/*.nav-links a { color: #cccccc; font-weight: 500; text-decoration: none; transition: color 0.3s; position: relative; }*/
/*.nav-links a::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 0; height: 2px; background: #00ffc6; transition: width 0.3s; }*/
/*.nav-links a:hover, .nav-links a.active { color: #00ffc6; }*/
/*.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }*/





/* ==================== NAVBAR CONTAINER ==================== */
.navbar-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 15, 35, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 173, 181, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 173, 181, 0.15),
    0 0 20px rgba(0, 217, 225, 0.2);
  animation: navPulse 4s infinite alternate;
}

@keyframes navPulse {
  0% {
    box-shadow: 
      0 8px 32px rgba(0, 173, 181, 0.15),
      0 0 20px rgba(0, 217, 225, 0.2);
  }
  100% {
    box-shadow: 
      0 8px 32px rgba(0, 173, 181, 0.25),
      0 0 30px rgba(0, 217, 225, 0.35);
  }
}

/* ==================== NAVBAR LAYOUT ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #00D9E1;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(0, 217, 225, 0.6);
  transition: color 0.3s;
}

.logo:hover {
  color: #00FFB2;
}

/* ==================== DESKTOP MENU ==================== */
.nav-menu {
  display: none; /* Hidden on mobile */
  list-style: none;
  gap: 1.8rem;
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(7, 15, 35, 0.98);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 173, 181, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-menu a {
  color: #e6f4ff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.9rem 2rem;
  display: block;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.nav-menu a:hover {
  color: #00D9E1;
  background: rgba(0, 217, 225, 0.1);
  border-left-color: #00D9E1;
  padding-left: 2.3rem;
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  transition: 0.3s;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #00D9E1;
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 0 8px rgba(0, 217, 225, 0.7);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .nav-menu a {
    padding: 0.5rem 0;
    border-left: none;
    border-bottom: 2px solid transparent;
  }

  .nav-menu a:hover {
    border-bottom-color: #00D9E1;
    background: none;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 1rem;
  }
  .logo {
    font-size: 1.25rem;
  }
}

/* Hero */
.contact-hero-mature {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0,173,181,0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0,255,198,0.2) 0%, transparent 50%),
              #0f0f1a;
}
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,15,26,0.7); backdrop-filter: blur(1px); }
.hero-content-mature {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.highlight-glow {
  background: linear-gradient(90deg, #00ffc6, #00ADB5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(0,255,198,0.4);
}
.remote-note { color: #00ffc6; font-size: 1.1rem; margin: 1.5rem 0; font-weight: 500; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,255,198,0.15);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0,255,198,0.3);
  font-weight: 600;
  color: #00ffc6;
}
.pulse {
  width: 10px; height: 10px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0,255,136,0.7);
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

/* Profile Card */
.profile-card {
  background: rgba(26,26,46,0.6);
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(0,173,181,0.2);
  backdrop-filter: blur(1px);
}
.profile-image2 {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto 1rem;
}
.profile-img2 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ADB5;
  box-shadow: 0 0 30px rgba(0, 173, 181, 0.4);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}


/* .profile-image2 img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00ADB5;
} */
.glow-ring {
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: conic-gradient(#00ffc6, #00ADB5, #00ffc6);
  animation: rotate 6s linear infinite;
  opacity: 0.6;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.role { color: #a0a0cc; font-size: 0.95rem; }
.rating { display: flex; align-items: center; justify-content: center; gap: 8px; color: #00ff88; font-weight: 600; }

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.contact-card {
  background: rgba(26,26,46,0.7);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0,173,181,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,173,181,0.2);
  border-color: #00ffc6;
}
.card-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.glow-icon {
  background: rgba(0,173,181,0.15);
  color: #00ffc6;
  box-shadow: 0 0 30px rgba(0,255,198,0.3);
  animation: iconPulse 3s infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,198,0.3); }
  50% { box-shadow: 0 0 40px rgba(0,255,198,0.6); }
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  color: #00ffc6;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-btn:hover { color: #00ff88; transform: translateX(5px); }

/* Social Proof */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.social-card {
  background: rgba(26,26,46,0.6);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #e0e0ff;
  border: 1px solid rgba(0,173,181,0.15);
  transition: all 0.3s;
}
.social-card:hover {
  background: rgba(0,173,181,0.1);
  border-color: #00ffc6;
  transform: translateY(-5px);
}
.social-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(0,173,181,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #00ffc6;
}
.follow {
  margin-left: auto;
  background: rgba(0,255,198,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00ff88;
}

/* AI Assistant */
.ai-assistant {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
.ai-toggle {
  background: linear-gradient(135deg, #00ADB5, #00ffc6);
  color: #0f0f1a;
  border: none;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,173,181,0.4);
  transition: all 0.3s;
}
.ai-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,173,181,0.6);
}
.ai-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: rgba(26,26,46,0.95);
  border-radius: 20px;
  border: 1px solid rgba(0,173,181,0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  display: none;
}
.ai-header {
  padding: 1rem 1.5rem;
  background: rgba(0,173,181,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,173,181,0.3);
}
.close-ai {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.5rem;
  cursor: pointer;
}
.ai-body { padding: 1.5rem; }
.ai-options {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}
.ai-options button {
  background: rgba(0,173,181,0.15);
  color: #e0e0ff;
  border: 1px solid rgba(0,173,181,0.3);
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.ai-options button:hover {
  background: rgba(0,255,198,0.2);
  color: #00ff88;
  border-color: #00ff88;
}

/* Footer */
.footer-mature {
  background: #0a0a14;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0,173,181,0.15);
}
.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}
.footer-left h3 { color: #00ffc6; margin-bottom: 1rem; }
.footer-left p { color: #a0a0cc; font-size: 0.95rem; }
.copyright { margin-top: 2rem; font-size: 0.9rem; color: #666; }
.contact-info p { display: flex; align-items: center; gap: 10px; color: #ccc; margin: 0.8rem 0; }
.social-links a {
  color: #a0a0cc;
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.3s;
}
.social-links a:hover { color: #00ffc6; }

/* WhatsApp Float */
.whatsapp-float-mature {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}
.whatsapp-float-mature a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: #00ff88;
  color: #0a0a14;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(0,255,136,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content-mature { grid-template-columns: 1fr; text-align: center; }
  .profile-card { margin: 2rem auto 0; max-width: 300px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .nav-links { gap: 1.5rem; font-size: 0.95rem; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .contact-info { justify-content: center; }
}




/* POS & INVENTORY SERVICE – STORY-DRIVEN & GLOWING */
#pos-inventory .story-intro,
#pos-inventory .story-body,
#pos-inventory .story-closer {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d0d0ff;
  margin-bottom: 1.2rem;
}

#pos-inventory .story-intro {
  font-weight: 600;
  color: #00ffc6;
  font-style: italic;
}

.service-list.animated {
  margin: 1.8rem 0;
}

.service-list.animated li {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.6s ease forwards;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.image-glow {
  position: absolute;
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  background: radial-gradient(circle, rgba(0,255,198,0.3) 0%, transparent 70%);
  border-radius: 20px;
  z-index: -1;
  animation: pulseGlow 4s infinite;
}

.glow-btn {
  background: linear-gradient(45deg, #00ADB5, #00ffc6);
  color: #0f0f1a;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,173,181,0.5);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,173,181,0.7);
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.glow-btn:hover::before {
  left: 100%;
}

/* EPIC STORYTELLING STYLES */
.story-opener,
.story-tension,
.story-turn,
.story-reveal,
.story-climax,
.story-closer {
  font-size: 1.15rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  color: #e0e0ff;
}

.story-opener {
  font-weight: 700;
  color: #00ffc6;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.story-opener::before {
  content: '"';
  position: absolute;
  left: 0;
  font-size: 3rem;
  color: #00ADB5;
  opacity: 0.6;
}

.highlight {
  color: #ff6b6b;
  font-weight: 800;
  font-style: italic;
}

.low-stock {
  color: #ff6b6b;
  font-weight: 700;
}

.story-tension { color: #ff9999; font-style: italic; }
.story-turn { color: #00ff88; font-weight: 700; font-size: 1.3rem; }
.story-reveal { color: #00ffc6; font-weight: 600; }

.story-climax {
  background: rgba(0, 255, 198, 0.1);
  padding: 1.2rem;
  border-radius: 16px;
  border-left: 4px solid #00ffc6;
  font-style: italic;
  color: #ccffcc;
}

.trust-line {
  margin-top: 1.5rem;
  color: #00ff88;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* EPIC CTA BUTTON */
.epic-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 40px;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #00ADB5, #00ffc6, #00ff88);
  background-size: 200%;
  animation: gradientFlow 3s ease infinite;
  color: #0f0f1a;
  border-radius: 60px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,173,181,0.6);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.epic-cta:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,173,181,0.9);
}

.epic-cta .sub {
  font-size: 0.8rem;
  margin-top: 4px;
  opacity: 0.9;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #666;
}

.new-price {
  color: #00ff88;
}

.tag {
  background: #ff6b6b;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}


/* CONSULTING CTA – PREMIUM & STORY-ALIGNED */
.consulting-cta-mature {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(0,173,181,0.2);
  border-bottom: 1px solid rgba(0,173,181,0.2);
}

.cta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,255,198,0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.9; }
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.cta-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.gradient-text {
  background: linear-gradient(90deg, #00ffc6, #00ff88, #00ADB5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientFlow 4s ease infinite;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: #d0d0ff;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cta-promise {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00ff88;
  background: rgba(0,255,136,0.1);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(0,255,136,0.3);
  backdrop-filter: blur(8px);
}

/* CTA BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.cta-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  min-width: 260px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-btn i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-btn span:first-of-type {
  font-size: 1.1rem;
  font-weight: 700;
}

.cta-btn .response {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.3rem;
}

/* WhatsApp Button */
.whatsapp-glow {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-glow:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(37, 211, 102, 0.25);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
  border-color: #25D366;
}

/* Email Button */
.email-glow {
  background: rgba(0,173,181,0.15);
  color: #00ADB5;
  border: 1px solid rgba(0,173,181,0.4);
  box-shadow: 0 10px 30px rgba(0,173,181,0.2);
}

.email-glow:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(0,173,181,0.25);
  box-shadow: 0 20px 50px rgba(0,173,181,0.4);
  border-color: #00ffc6;
  color: #00ffc6;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
  color: #a0ffa0;
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-badge i {
  color: #00ff88;
  font-size: 1.2rem;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-content h2 { font-size: 2.2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-btn { min-width: 280px; }
  .cta-promise { font-size: 1.2rem; padding: 0.8rem 1.5rem; }
}

#dashboard_image img{


  height: 300px;
}



.tool-item i {
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

.tool-item:hover i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 20px currentColor);
}

/* Other Skills Icons */
.other-skill i {
  margin-right: 10px;
  color: var(--accent);
  width: 20px;
  text-align: center;
}


.service-icon i {
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.3));
}

.service-card:hover .service-icon i {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 0 20px currentColor);
}


.site-hero-ultra {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a1a;
  color: #fff;
}

.hero-bg-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, #1a1a3a 0%, #0a0a1a 70%);
  z-index: 1;
}

.data-nodes {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.node {
  position: absolute;
  font-size: 2rem;
  color: #00d4ff;
  animation: float 6s infinite ease-in-out;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 15px #00d4ff);
}

.node:nth-child(1) { top: 20%; left: 15%; }
.node:nth-child(2) { top: 60%; right: 20%; }
.node:nth-child(3) { bottom: 30%; left: 10%; }
.node:nth-child(4) { top: 40%; right: 15%; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content-strike {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-strike {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem;
  background: linear-gradient(120deg, #00d4ff, #ff00c8, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(0,212,255,0.5);
  animation: titleGlow 3s infinite alternate;
}

.gradient-glow {
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px #00d4ff);
}

.hero-sub-strike {
  font-size: 1.4rem;
  margin: 0 0 2rem;
  color: #ccc;
  font-weight: 500;
}

.hero-cta-strike .btn {
  margin: 0 10px;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s;
}

.btn.pulse {
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
  animation: pulse 2s infinite;
  box-shadow: 0 0 30px rgba(0,212,255,0.6);
}

.btn.neon {
  border: 2px solid #ff00c8;
  color: #ff00c8;
  position: relative;
  overflow: hidden;
}

.btn.neon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,0,200,0.3), transparent);
  transition: 0.6s;
}

.btn.neon:hover::before { left: 100%; }

.social-pulse {
  margin: 2rem 0;
}

.pulse-link {
  display: inline-block;
  margin: 0 12px;
  font-size: 1.8rem;
  color: #fff;
  animation: socialPulse 2s infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}

.pulse-link:nth-child(1) { --i: 1; color: #0a66c2; }
.pulse-link:nth-child(2) { --i: 2; color: #fff; }
.pulse-link:nth-child(3) { --i: 3; color: #fff; }

@keyframes socialPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.3); filter: brightness(1.8); }
}

.floating-dashboard {
  position: absolute;
  bottom: -10%;
  right: 5%;
  width: 380px;
  transform: rotate(-8deg);
  animation: floatDevice 8s infinite ease-in-out;
}

.screen {
  position: relative;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.dash-img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.screen-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0,212,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.stand {
  width: 80px;
  height: 20px;
  background: #333;
  margin: 10px auto 0;
  border-radius: 10px;
}

@keyframes floatDevice {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-20px) rotate(-6deg); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 40px rgba(0,212,255,0.5); }
  100% { text-shadow: 0 0 60px rgba(0,212,255,0.8), 0 0 80px rgba(0,255,136,0.4); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 30px rgba(0,212,255,0.6); }
  70% { box-shadow: 0 0 50px rgba(0,255,136,0.9); }
  100% { box-shadow: 0 0 30px rgba(0,212,255,0.6); }
}

/* HERO – HIGH CONVERSION */
.inventory-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a1a;
  color: #fff;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 80%, #00d4ff 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, #ff00c8 0%, transparent 50%);
  opacity: 0.2;
  animation: bgPulse 8s infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.35; }
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.strike {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.strike::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  background: #ff6b6b;
  transform: rotate(-6deg);
}

.subtitle {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #e0e0ff;
}

.proof-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  font-weight: 600;
  color: #00ff88;
}

.proof-item {
  background: rgba(0,255,136,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #00ff88;
}

.hero-cta-duo {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.cta-primary {
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,212,255,0.4);
  animation: ctaPulse 2s infinite;
}

.cta-whatsapp {
  background: #25D366;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.risk-free {
  font-size: 1.1rem;
  color: #00ff88;
  font-weight: 600;
}

.hero-dashboard {
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  width: 380px;
  animation: floatDash 6s ease-in-out infinite;
}

.live-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: #ff0000;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* URGENCY TICKER */
.urgency-ticker {
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
}

.ticker p {
  margin: 0;
  animation: tickerMove 20s linear infinite;
}

.countdown {
  background: #000;
  color: #ff6b6b;
  padding: 0.2rem 0.8rem;
  border-radius: 8px;
  margin-left: 1rem;
  font-family: monospace;
  font-size: 1.1rem;
}

/* PROBLEM → SOLUTION */
.problem-solution {
  padding: 100px 20px;
  background: #0f0f1a;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}

.ps-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid;
}

.ps-card.problem {
  border-color: #ff6b6b;
}

.ps-card.solution {
  border-color: #00ff88;
}

.ps-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ps-card.problem i { color: #ff6b6b; }
.ps-card.solution i { color: #00ff88; }

.ps-card ul {
  text-align: left;
  padding-left: 1.5rem;
  color: #e0e0ff;
}

/* FEATURES */
.features-benefits {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.fb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fb-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.2);
  transition: all 0.4s;
}

.fb-card:hover {
  background: rgba(0,212,255,0.1);
  transform: translateY(-10px);
}

.fb-icon {
  width: 80px; height: 80px;
  background: rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: #00d4ff;
}

.benefit {
  margin-top: 1rem;
  font-weight: 700;
  color: #00ff88;
  font-size: 1.1rem;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 100px 20px;
  background: #0f0f1a;
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.proof-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0,255,136,0.3);
}

.proof-card img {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: #333;
}

/* PRICING */
.pricing-urgency {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.price-note {
  text-align: center;
  color: #ff6b6b;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0,212,255,0.2);
}

.sold-out {
  opacity: 0.6;
  filter: grayscale(1);
}

.sold-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: #00ff88;
  color: #000;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
}

.new-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin: 0.5rem 0;
}

.price-btn {
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #00d4ff;
  color: #000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.price-btn.ghost {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
}

/* FINAL CTA */
.final-cta {
  padding: 100px 20px;
  text-align: center;
  background: #0f0f1a;
}

.cta-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #25D366;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.guarantee {
  margin-top: 2rem;
  color: #00ff88;
  font-weight: 600;
}


/* TIME MACHINE HERO – ULTRA CREATIVE */
.hero-time-machine {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a1a;
  color: #fff;
  display: flex;
  align-items: center;
}

/* PORTAL BACKGROUND */
.time-portal {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.portal-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  background: radial-gradient(circle, #00ffff 0%, #00d4ff 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px #00ffff, inset 0 0 40px #00ffff;
  animation: corePulse 2s infinite;
}

.portal-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 3px solid;
  transform: translate(-50%, -50%);
  animation: rotate 8s linear infinite;
}

.ring-1 {
  width: 300px; height: 300px;
  border-color: #00d4ff;
  animation-duration: 12s;
}

.ring-2 {
  width: 450px; height: 450px;
  border-color: #00ff88;
  animation-duration: 10s;
  animation-direction: reverse;
}

.ring-3 {
  width: 600px; height: 600px;
  border-color: #ff00c8;
  animation-duration: 14s;
}

.portal-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: glowPulse 3s infinite;
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 80px #00ffff, inset 0 0 40px #00ffff; }
  50% { box-shadow: 0 0 120px #00ffff, inset 0 0 60px #00ffff; }
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.1); }
}

/* TIMELINE EVENTS */
.timeline-past, .timeline-future {
  position: absolute;
  width: 100%; height: 100%;
  pointer-events: none;
}

.past-event, .future-event {
  position: absolute;
  background: rgba(255,255,255,0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid;
  animation: floatEvent 6s infinite ease-in-out;
  animation-delay: calc(var(--i, 0) * 0.5s);
}

.past-event {
  color: #ff6b6b;
  border-color: #ff6b6b;
  left: var(--x); top: var(--y);
  animation-duration: 5s;
}

.future-event {
  color: #00ff88;
  border-color: #00ff88;
  left: var(--x); top: var(--y);
  opacity: 0;
  animation-duration: 4s;
}

.future-event.active {
  opacity: 1;
  animation: floatEventFuture 4s infinite ease-in-out;
}

@keyframes floatEvent {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

@keyframes floatEventFuture {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -15px) scale(1.15); }
}

/* DASHBOARD PORTAL */
.dashboard-portal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  z-index: 10;
}

.portal-screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,212,255,0.6);
}

.portal-screen img {
  width: 100%;
  display: block;
}

.portal-frame {
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border: 4px solid #00d4ff;
  border-radius: 30px;
  pointer-events: none;
}

.frame-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0,212,255,0.4) 0%, transparent 70%);
  border-radius: 30px;
  animation: framePulse 2s infinite;
}

@keyframes framePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* CONTENT */
.hero-content-time {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.time-headline {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.past-text {
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255,107,107,0.5);
}

.future-text {
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.before-after {
  margin: 3rem 0;
}

.state {
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(20px);
}

.state.active {
  opacity: 1;
  transform: translateY(0);
}

.state.past {
  background: rgba(255,107,107,0.15);
  border: 1px solid #ff6b6b;
}

.state.future {
  background: rgba(0,255,136,0.15);
  border: 1px solid #00ff88;
}

.state h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.state.past h2 { color: #ff6b6b; }
.state.future h2 { color: #00ff88; }

/* TIME TRAVEL CTA */
.time-cta {
  margin: 3rem 0;
}

.btn-time-travel {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,212,255,0.5);
  transition: all 0.4s;
}

.btn-time-travel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,212,255,0.7);
}

.btn-glow {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.6s;
}

.btn-time-travel:hover .btn-glow {
  left: 100%;
}

.time-guarantee {
  margin-top: 1.5rem;
  color: #00ff88;
  font-weight: 600;
}

/* LIVE PROOF */
.live-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.proof-pulse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,255,136,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #00ff88;
  font-weight: 600;
}

.dot {
  width: 10px; height: 10px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

/* TIME SWITCH */
.time-switch {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.switch-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.switch-btn.active {
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
}

.switch-track {
  width: 60px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.switch-slider {
  position: absolute;
  top: 50%; left: 5px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left 0.4s;
}

.switch-btn.future.active ~ .switch-track .switch-slider {
  left: 31px;
}


/* ——— PORTFOLIO CASE STUDIES ——— */
.portfolio-case-studies {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a0a1a, #1a1a2e);
  text-align: center;
}
.section-title {
  font-size: 2.8rem; font-weight: 800; margin-bottom: 1rem;
  background: linear-gradient(90deg, #00d4ff, #00ff88);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-subtitle { font-size: 1.3rem; color: #ccc; margin-bottom: 3rem; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.case-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,212,255,0.2);
  transition: all 0.4s;
  text-align: left;
}
.case-card:hover {
  transform: translateY(-10px);
  border-color: #00ff88;
  box-shadow: 0 20px 40px rgba(0,212,255,0.2);
}
.case-header h3 {
  font-size: 1.4rem; margin: 1.5rem 1.5rem 0.5rem; color: #00ff88;
}
.case-header .client {
  font-size: 0.95rem; color: #aaa; margin: 0 1.5rem 1rem;
}
.case-img {
  width: 100%; height: 180px; object-fit: cover; background: #333;
}
.case-stats {
  display: flex; justify-content: space-around; padding: 1rem;
  background: rgba(0,255,136,0.1); margin: 1rem 1.5rem; border-radius: 12px;
  font-weight: 600; color: #00ff88;
}
.case-tools {
  text-align: center; padding: 0.5rem; background: rgba(0,212,255,0.1);
  color: #00d4ff; font-weight: 600; font-size: 0.9rem;
}
.case-steps {
  padding: 1rem 1.5rem; font-size: 0.9rem; color: #ccc;
}
.case-steps h4 { color: #00d4ff; margin-bottom: 0.5rem; }
.case-steps ol { padding-left: 1.2rem; }
.case-steps code {
  background: #000; padding: 0.1rem 0.4rem; border-radius: 4px; font-family: monospace;
  color: #00ff88; font-size: 0.8rem;
}
.case-cta {
  display: block; text-align: center; padding: 1rem;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000; font-weight: 700; margin: 1rem 1.5rem;
  border-radius: 50px; text-decoration: none; transition: all 0.3s;
}

.case-cta:hover { transform: scale(1.05); }

/* Mobile */
@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
}


/* RESPONSIVE IMAGE SIZING ONLY – NO EFFECTS */
.image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-col > div,
.image-col img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  .image-col > div,
  .image-col img {
    width: 120px;
    height: 120px;
  }
}

/* Mobile & Tablet (481px – 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .image-col > div,
  .image-col img {
    width: 160px;
    height: 160px;
  }
}

/* Small Desktop (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .image-col > div,
  .image-col img {
    width: 200px;
    height: 200px;
  }
}

/* Large Desktop (≥1024px) */
@media (min-width: 1024px) {
  .image-col > div,
  .image-col img {
    width: 240px;
    height: 240px;
  }
}

/* Extra Large Screens (≥1440px) */
@media (min-width: 1440px) {
  .image-col > div,
  .image-col img {
    width: 280px;
    height: 280px;
  }
}
/* === POS & INVENTORY SECTION === */
.service-section.alternate {
  padding: 80px 0;
  background: #16213E;
}

.pos-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.pos-image-wrapper {
  flex: 1 1 45%;
  position: relative;
  text-align: center;
}

.image-container {
  position: relative;
}

.pos-dashboard-img {
  width: 100%;
  max-width: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

/* Glow & floating effects */
.glow-orbit,
.glow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.glow-orbit {
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.1), transparent 70%);
  animation: orbitGlow 5s infinite ease-in-out;
}

.glow-pulse {
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.15), transparent 80%);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes orbitGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0078ff;
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 15px rgba(0, 120, 255, 0.3);
}

/* POS Content */
.pos-content {
  flex: 1 1 50%;
  background-color:#16213E;
}

.pos-content .section-title {
  font-size: 2rem;
  font-weight: 700;
  /*color: #111;*/
  margin-bottom: 10px;
}

.pos-content .section-subtitle {
  font-size: 1.1rem;
  /*color: #555;*/
  margin-bottom: 20px;
}

.pos-content p {
  font-size: 1rem;
  line-height: 1.7;
  /*color: #444;*/
  margin-bottom: 1rem;
}

.pos-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
 
}

.pos-features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.pos-features i {
  color: #0078ff;
  margin-right: 8px;
}

/* Button */
.primary-btn {
  background: #0078ff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.primary-btn:hover {
  background: #005fcc;
}

/* === Responsive Adjustments === */
@media (max-width: 992px) {
  .pos-grid {
    flex-direction: column;
    text-align: center;
  }

  .pos-content {
    order: 2;
    flex: 1 1 100%;
  }

  .pos-image-wrapper {
    order: 1;
    flex: 1 1 100%;
  }

  .pos-content .section-title {
    font-size: 1.7rem;
  }

  .pos-content .section-subtitle {
    font-size: 1rem;
  }

  .pos-features li {
    justify-content: center;
  }

  .floating-badge {
    font-size: 0.8rem;
    bottom: -15px;
    padding: 8px 14px;
  }
}

@media (max-width: 576px) {
  .service-section.alternate {
    padding: 60px 15px;
  }

  .pos-content p {
    font-size: 0.95rem;
  }

  .primary-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .pos-dashboard-img {
    max-width: 100%;
  }
}
/* POS Content with Side Image */
.pos-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding:20px;
  color:white;
}

.pos-text {
  flex: 1 1 55%;
  margin:10px;
  color:#fff;
}

.pos-side-image {
  flex: 1 1 40%;
  text-align: center;
}

.pos-side-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .pos-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .pos-text {
    flex: 1 1 100%;
  }

  .pos-side-image {
    flex: 1 1 100%;
  }

  .pos-side-image img {
    max-width: 90%;
    margin: 0 auto 1.5rem;
  }
}



