/* ============================================================
   Grow and Glow Tech — Global Variables & Root System
   Strict 3 Colors: #00FF9D (Primary), #0B0F17 (Secondary), #F8FAFC (Helper)
   ============================================================ */
:root {
  --yem-primary: #00FF9D;
  --yem-secondary: #0B0F17;
  --yem-helper: #F8FAFC;
  --yem-surface: #1E293B;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0B0F17;
  color: #F8FAFC;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}


/* ============================================================
yemtbgng — Top-Bar CSS (Cyber Tech Theme)
Namespace: yemtbgng
Project: Grow and Glow Tech (growandglow.com)
Rules: Mobile-First, Zero px (except min-width media queries)
============================================================ */

.yemtbgng {
  --yemtbgng-bg: #0B0F17;
  --yemtbgng-surface: #1E293B;
  --yemtbgng-neon: #00FF9D;
  --yemtbgng-text: #F8FAFC;
}

.yemtbgng *, .yemtbgng *::before, .yemtbgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Hide on mobile for clean top header spacing, display on tablet & desktop */
.yemtbgng {
  display: none;
  width: 100%;
  background-color: var(--yemtbgng-bg);
  color: var(--yemtbgng-text);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 0.8125rem;
  position: relative;
  z-index: 100;
  border-bottom: 0.0625rem solid var(--yemtbgng-surface);
}

.yemtbgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.yemtbgng__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.yemtbgng__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.yemtbgng__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(248, 250, 252, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.yemtbgng__link:hover {
  color: var(--yemtbgng-neon);
}

.yemtbgng__icon {
  color: var(--yemtbgng-neon);
  font-size: 0.75rem;
}

.yemtbgng__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.yemtbgng__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: rgba(0, 255, 157, 0.08);
  border: 0.0625rem solid rgba(0, 255, 157, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 6.25rem;
}

.yemtbgng__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--yemtbgng-neon);
  display: inline-block;
  box-shadow: 0 0 0.5rem var(--yemtbgng-neon);
  animation: yemtbgngPulse 2s ease-in-out infinite;
}

@keyframes yemtbgngPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

.yemtbgng__badge-text {
  font-size: 0.75rem;
  color: var(--yemtbgng-text);
  font-weight: 600;
}

.yemtbgng__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 0.0625rem solid var(--yemtbgng-neon);
  color: var(--yemtbgng-neon);
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
}

.yemtbgng__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--yemtbgng-neon), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.yemtbgng.yemtbgng--visible .yemtbgng__line {
  transform: scaleX(1);
}

@media (min-width: 769px) {
  .yemtbgng {
    display: block;
  }
}


/* ============================================================
yemhdrgng — Header CSS (Strict 3-Color Cyber Tech Theme)
Namespace: yemhdrgng
Project: Grow and Glow Tech (growandglow.com)
Rules: Mobile-First, Zero px (except min-width media queries)
============================================================ */

.yemhdrgng {
  --yemhdrgng-bg: rgba(11, 15, 23, 0.95);
  --yemhdrgng-surface: #1E293B;
  --yemhdrgng-neon: #00FF9D;
  --yemhdrgng-text: #F8FAFC;
}

.yemhdrgng *, .yemhdrgng *::before, .yemhdrgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.yemhdrgng {
  width: 100%;
  background-color: var(--yemhdrgng-bg);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 0.0625rem solid rgba(30, 41, 59, 0.8);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.yemhdrgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.yemhdrgng__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}

.yemhdrgng__logo-img {
  height: 2.35rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  display: block;
}

.yemhdrgng__logo-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yemhdrgng-text);
  letter-spacing: -0.02em;
}

.yemhdrgng__logo-slash {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yemhdrgng-neon);
  text-shadow: 0 0 0.8rem var(--yemhdrgng-neon);
}

.yemhdrgng__nav {
  position: fixed;
  top: 3.75rem;
  right: -100%;
  width: 85%;
  max-width: 20rem;
  height: calc(100vh - 3.75rem);
  background-color: #0B0F17;
  border-left: 0.0625rem solid var(--yemhdrgng-surface);
  padding: 2rem 1.5rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 998;
}

.yemhdrgng__nav.yemhdrgng__nav--open {
  right: 0;
}

.yemhdrgng__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.yemhdrgng__link {
  color: rgba(248, 250, 252, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.yemhdrgng__link:hover,
.yemhdrgng__link--active {
  color: var(--yemhdrgng-neon);
  text-shadow: 0 0 0.5rem rgba(0, 255, 157, 0.4);
}

.yemhdrgng__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0.125rem;
  background-color: var(--yemhdrgng-neon);
  box-shadow: 0 0 0.5rem var(--yemhdrgng-neon);
  transition: width 0.3s ease;
}

.yemhdrgng__link:hover::after,
.yemhdrgng__link--active::after {
  width: 100%;
}

.yemhdrgng__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.yemhdrgng__btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 6.25rem;
  border: 0.1rem solid var(--yemhdrgng-neon);
  background-color: rgba(0, 255, 157, 0.05);
  color: var(--yemhdrgng-neon);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 1rem rgba(0, 255, 157, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.yemhdrgng__btn-pill:hover {
  background-color: var(--yemhdrgng-neon);
  color: #0B0F17;
  transform: translateY(-0.125rem) scale(1.03);
  box-shadow: 0 0 2rem var(--yemhdrgng-neon);
}

.yemhdrgng__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.6rem;
  height: 1.15rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.yemhdrgng__bar {
  width: 100%;
  height: 0.15rem;
  background-color: var(--yemhdrgng-neon);
  border-radius: 0.1rem;
  box-shadow: 0 0 0.4rem var(--yemhdrgng-neon);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.yemhdrgng__toggle--active .yemhdrgng__bar:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.yemhdrgng__toggle--active .yemhdrgng__bar:nth-child(2) {
  opacity: 0;
}
.yemhdrgng__toggle--active .yemhdrgng__bar:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.yemhdrgng__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--yemhdrgng-neon), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.yemhdrgng.yemhdrgng--visible .yemhdrgng__line {
  transform: scaleX(1);
}

@media (min-width: 993px) {
  .yemhdrgng__logo-title {
    font-size: 1.35rem;
  }
  .yemhdrgng__logo-slash {
    font-size: 1.5rem;
  }
  .yemhdrgng__btn-pill {
    padding: 0.55rem 1.5rem;
    font-size: 0.875rem;
  }
  .yemhdrgng__toggle {
    display: none;
  }

  .yemhdrgng__nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
  }

  .yemhdrgng__menu {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }
}


/* ============================================================
   YEMHROGNG — Hero Component CSS
   Namespace  : yemhrogng
   Project    : Grow and Glow Tech (growandglow.com)
   Rules      : Mobile-First, Zero px (except min-width media queries), Strict 3 Colors
============================================================ */

/* 1. Variables & Local Resets */
.yemhrogng {
  --yemhrogng-bg: #0B0F17;
  --yemhrogng-surface: #1E293B;
  --yemhrogng-neon: #00FF9D;
  --yemhrogng-text: #F8FAFC;
  
  position: relative;
  background-color: var(--yemhrogng-bg);
  color: var(--yemhrogng-text);
  padding: 3.5rem 0 5rem;
  overflow: hidden;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
}

.yemhrogng *,
.yemhrogng *::before,
.yemhrogng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Background Cyber Grid */
.yemhrogng__grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(30, 41, 59, 0.45) 0.0625rem, transparent 0.0625rem),
    linear-gradient(to bottom, rgba(30, 41, 59, 0.45) 0.0625rem, transparent 0.0625rem);
  background-size: 2.5rem 2.5rem;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* Layout Container */
.yemhrogng__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.yemhrogng__hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Content Area */
.yemhrogng__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  width: 100%;
}

.yemhrogng__tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 255, 157, 0.08);
  border: 0.0625rem solid var(--yemhrogng-neon);
  border-radius: 6.25rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yemhrogng-neon);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.yemhrogng__tag-pulse {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--yemhrogng-neon);
  box-shadow: 0 0 0.5rem var(--yemhrogng-neon);
}

.yemhrogng__title {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--yemhrogng-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.yemhrogng__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

/* 3 Feature Paragraph Cards */
.yemhrogng__features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 100%;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.yemhrogng__feat-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background-color: rgba(30, 41, 59, 0.45);
  border: 0.0625rem solid rgba(0, 255, 157, 0.15);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.yemhrogng__feat-card:hover {
  border-color: var(--yemhrogng-neon);
  transform: translateX(-0.25rem);
}

.yemhrogng__feat-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 255, 157, 0.1);
  border: 0.0625rem solid var(--yemhrogng-neon);
  color: var(--yemhrogng-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.yemhrogng__feat-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: right;
}

.yemhrogng__feat-text strong {
  color: var(--yemhrogng-text);
  font-size: 0.9375rem;
  font-weight: 700;
}

.yemhrogng__feat-text p {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 0;
}

/* -------------------------------------------------------------
   CONCLUDING HERO CTA ROW (Always Side-by-Side Call & WhatsApp Buttons)
   ------------------------------------------------------------- */
.yemhrogng__cta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* Individual Button Capsule */
.yemhrogng__btn {
  position: relative;
  width: 15rem;
  max-width: 48%;
  height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border-radius: 6.25rem;
  padding: 0.375rem 0.5rem;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.yemhrogng__btn:hover {
  transform: translateY(-0.25rem) scale(1.03);
}

/* 1. Call Button (Left Neon Pod + Dark/Slate Body) */
.yemhrogng__btn--call {
  background-color: var(--yemhrogng-surface);
  border: 0.0625rem solid var(--yemhrogng-neon);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.6);
  flex-direction: row-reverse; /* Icon visually on left, Text on right */
}

.yemhrogng__btn--call:hover {
  filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 255, 157, 0.45));
}

.yemhrogng__btn--call .yemhrogng__btn-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--yemhrogng-neon);
  color: #0B0F17;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 1rem rgba(0, 255, 157, 0.4);
}

.yemhrogng__btn--call .yemhrogng__btn-text {
  flex: 1;
  text-align: center;
  color: var(--yemhrogng-text);
  font-size: 1.3rem;
  font-weight: 800;
  padding-left: 0.5rem;
}

/* 2. WhatsApp Button (Right Dark Pod + Radiant Neon Body) */
.yemhrogng__btn--wa {
  background-color: var(--yemhrogng-neon);
  border: 0.0625rem solid var(--yemhrogng-neon);
  box-shadow: 0 0.5rem 1.75rem rgba(0, 255, 157, 0.35);
  flex-direction: row; /* Text on left, Icon visually on right */
}

.yemhrogng__btn--wa:hover {
  filter: drop-shadow(0 0.75rem 2rem rgba(0, 255, 157, 0.6));
}

.yemhrogng__btn--wa .yemhrogng__btn-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #0B0F17;
  color: var(--yemhrogng-neon);
  border: 0.0625rem solid var(--yemhrogng-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0.75rem rgba(0, 255, 157, 0.2);
}

.yemhrogng__btn--wa .yemhrogng__btn-text {
  flex: 1;
  text-align: center;
  color: #0B0F17;
  font-size: 1.3rem;
  font-weight: 800;
  padding-right: 0.5rem;
}

/* Vector Arrow Graphic Container & Continuous Cyber Animations */
.yemhrogng__arrows-visual {
  width: 100%;
  max-width: 36rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: yemhrogngFloat 4s ease-in-out infinite alternate;
}

.yemhrogng__arrow-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 1.5rem rgba(0, 255, 157, 0.25));
}

/* 1. Main Giant Growth Arrow Pulse & Forward Surge */
.yemhrogng__arrow-main-group {
  animation: yemhrogngMainSurge 3.2s ease-in-out infinite alternate;
  transform-origin: center;
}

/* 2. Secondary Animated Conduit Flow */
.yemhrogng__conduit-dash {
  animation: yemhrogngDashFlow 2s linear infinite;
}

/* 3. Branching Arrow Floating Motion */
.yemhrogng__arrow-branch-1 {
  animation: yemhrogngBranchFloat1 3.5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

.yemhrogng__arrow-branch-2 {
  animation: yemhrogngBranchFloat2 4s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

/* 4. Small Vector Darting Arrows */
.yemhrogng__arrow-accent-1 {
  animation: yemhrogngAccentDart1 2.2s ease-in-out infinite;
}

.yemhrogng__arrow-accent-2 {
  animation: yemhrogngAccentDart2 2.8s ease-in-out infinite;
}

/* 5. Glowing Node Pulses */
.yemhrogng__node {
  animation: yemhrogngNodeGlow 1.6s ease-in-out infinite alternate;
  transform-origin: center;
}

.yemhrogng__node--core {
  animation: yemhrogngNodeGlow 1.2s ease-in-out infinite alternate;
}

/* Keyframe Definitions */
@keyframes yemhrogngFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-0.85rem) rotate(0.8deg);
  }
}

@keyframes yemhrogngMainSurge {
  0% {
    transform: translate(0, 0) scale(0.98);
    filter: drop-shadow(0 0 0.5rem rgba(0, 255, 157, 0.3));
  }
  50% {
    transform: translate(0.35rem, -0.35rem) scale(1.02);
    filter: drop-shadow(0 0 1.5rem rgba(0, 255, 157, 0.7));
  }
  100% {
    transform: translate(0, 0) scale(0.98);
    filter: drop-shadow(0 0 0.5rem rgba(0, 255, 157, 0.3));
  }
}

@keyframes yemhrogngDashFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -24;
  }
}

@keyframes yemhrogngBranchFloat1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.85;
  }
  100% {
    transform: translate(0.5rem, -0.4rem);
    opacity: 1;
  }
}

@keyframes yemhrogngBranchFloat2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: translate(0.4rem, -0.3rem);
    opacity: 1;
  }
}

@keyframes yemhrogngAccentDart1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: translate(0.6rem, -0.45rem);
    opacity: 1;
  }
  100% {
    transform: translate(1.2rem, -0.9rem);
    opacity: 0;
  }
}

@keyframes yemhrogngAccentDart2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(0.5rem, -0.35rem);
    opacity: 1;
  }
  100% {
    transform: translate(1rem, -0.7rem);
    opacity: 0;
  }
}

@keyframes yemhrogngNodeGlow {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@media (min-width: 769px) {
  .yemhrogng__title {
    font-size: 3.25rem;
  }
}

@media (min-width: 993px) {
  .yemhrogng__hero-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .yemhrogng__content {
    width: 48%;
  }

  .yemhrogng__arrows-visual {
    width: 48%;
  }
}


/* ============================================================
   YEMPTGNG — Points Component CSS (Infographic Top Badge & Base Tray)
   Namespace  : yemptgng
   Project    : Grow and Glow Tech (growandglow.com)
   Visual     : Replica of Infographic Card Structure (media_1788879520531.png)
   Rules      : Mobile-First, Zero px (except min-width media queries), Strict 3 Colors
============================================================ */

/* 1. Variables & Colors (local inheriting from root) */
.yemptgng {
  --yemptgng-bg: var(--yem-secondary, #0B0F17);
  --yemptgng-surface: #1E293B;
  --yemptgng-neon: var(--yem-primary, #00FF9D);
  --yemptgng-text: var(--yem-helper, #F8FAFC);
  --yemptgng-muted: rgba(248, 250, 252, 0.7);
  --yemptgng-border: rgba(0, 255, 157, 0.25);
  
  background-color: var(--yemptgng-bg);
  color: var(--yemptgng-text);
  padding: 5rem 1.25rem;
  position: relative;
  overflow: visible;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
}

/* 2. Reset within Namespace */
.yemptgng *,
.yemptgng *::before,
.yemptgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. Base Styles — Mobile */
.yemptgng__container {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.yemptgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.yemptgng__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 255, 157, 0.08);
  border: 0.0625rem solid var(--yemptgng-neon);
  border-radius: 0.25rem;
  color: var(--yemptgng-neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.yemptgng__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--yemptgng-neon);
  border-radius: 50%;
  box-shadow: 0 0 0.5rem var(--yemptgng-neon);
}

.yemptgng__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--yemptgng-text);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.yemptgng__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--yemptgng-muted);
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
}

/* Grid Layout with clearance for protruding tabs */
.yemptgng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 1.5rem;
  padding-top: 1.5rem;
}

/* Card Wrapper */
.yemptgng__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.875rem;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: drop-shadow(0 0.5rem 1.25rem rgba(0, 0, 0, 0.5));
}

.yemptgng__card:hover {
  transform: translateY(-0.4rem);
  filter: drop-shadow(0 0.75rem 2rem rgba(0, 255, 157, 0.25));
}

/* Base Tray Plate Underneath (Image media_1788879520531.png) */
.yemptgng__tray {
  position: absolute;
  bottom: 0;
  left: -0.4rem;
  right: -0.4rem;
  height: 3.5rem;
  background-color: var(--yemptgng-neon);
  border-radius: 0 0 1.25rem 1.25rem;
  clip-path: polygon(0 30%, 100% 30%, 96% 100%, 4% 100%);
  z-index: 1;
  box-shadow: 0 0 1.25rem rgba(0, 255, 157, 0.4);
  transition: clip-path 0.3s ease, background-color 0.3s ease;
}

.yemptgng__card:hover .yemptgng__tray {
  background-color: #FFFFFF;
  box-shadow: 0 0 1.75rem var(--yemptgng-neon);
}

/* Main Card Surface Body */
.yemptgng__body {
  position: relative;
  z-index: 2;
  background-color: var(--yemptgng-surface);
  border: 0.0625rem solid var(--yemptgng-border);
  border-radius: 1.125rem 1.125rem 0.875rem 0.875rem;
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  transition: border-color 0.3s ease;
}

.yemptgng__card:hover .yemptgng__body {
  border-color: var(--yemptgng-neon);
}

/* Protruding Top Elements */
.yemptgng__top-row {
  position: static;
}

/* Icon Bubble on Top Left */
.yemptgng__icon-bubble {
  position: absolute;
  top: -1.35rem;
  left: 1.25rem;
  z-index: 4;
}

.yemptgng__icon-circle {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: var(--yemptgng-bg);
  border: 0.125rem solid var(--yemptgng-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yemptgng-neon);
  font-size: 1.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 255, 157, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.yemptgng__card:hover .yemptgng__icon-circle {
  transform: scale(1.1);
  background-color: rgba(0, 255, 157, 0.15);
}

/* Banner Tag on Top Right */
.yemptgng__banner-tag {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  z-index: 4;
  background-color: var(--yemptgng-neon);
  color: #0B0F17;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 255, 157, 0.35);
  letter-spacing: 0.03em;
  transition: transform 0.3s ease;
}

.yemptgng__card:hover .yemptgng__banner-tag {
  transform: translateY(-0.15rem);
}

/* Card Typography */
.yemptgng__card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yemptgng-text);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.yemptgng__card-desc {
  font-size: 0.9375rem;
  color: var(--yemptgng-muted);
  line-height: 1.7;
}

/* 4. Breakpoints */
@media (min-width: 601px) {
  .yemptgng__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 1.75rem;
  }
}

@media (min-width: 1025px) {
  .yemptgng {
    padding: 6.5rem 2rem;
  }

  .yemptgng__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }

  .yemptgng__body {
    padding: 2.5rem 1.75rem 2rem;
  }
}


/* ============================================================
yemfqgng — FAQ CSS
Namespace : yemfqgng
Project   : Grow and Glow Tech (growandglow.com)
============================================================ */

/* 1. Reset inside namespace */
.yemfqgng *,
.yemfqgng *::before,
.yemfqgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Styles — Mobile First (Dark Cyber Tech 3-color) */
.yemfqgng {
  width: 100%;
  background-color: #0B0F17;
  color: #ffffff;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  border-bottom: 0.0625rem solid #1E293B;
}

.yemfqgng__container {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemfqgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yemfqgng__line {
  width: 6rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #00FF9D, transparent);
  margin-bottom: 1rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.96s ease-in-out;
}

.yemfqgng.yemfqgng--visible .yemfqgng__line {
  transform: scaleX(1);
}

.yemfqgng__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.yemfqgng__subtitle {
  font-size: 0.9375rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}

.yemfqgng__accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.yemfqgng__item {
  background-color: #1E293B;
  border-radius: 0.75rem;
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  overflow: hidden;
  transition: box-shadow 0.48s ease-in-out, border-color 0.48s ease-in-out;
}

.yemfqgng__item--active {
  border-color: #00FF9D;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 255, 157, 0.2);
}

.yemfqgng__button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  cursor: pointer;
  gap: 1rem;
}

.yemfqgng__question {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.yemfqgng__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 255, 157, 0.1);
  color: #00FF9D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.48s ease-in-out, background-color 0.48s ease-in-out, color 0.48s ease-in-out;
}

.yemfqgng__item--active .yemfqgng__icon {
  transform: rotate(180deg);
  background-color: #00FF9D;
  color: #0B0F17;
}

.yemfqgng__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
  padding: 0 1.5rem;
}

.yemfqgng__item--active .yemfqgng__panel {
  max-height: 15rem;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.yemfqgng__answer {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.7);
}

/* 3. Breakpoints (min-width only) */
@media (min-width: 1025px) {
  .yemfqgng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .yemfqgng__title {
    font-size: 2.375rem;
  }
}


/* ============================================================
yemsrvgng — Services CSS (Strict 3-Color Cyber Tech + Infographic Tab Cards)
Namespace: yemsrvgng
Project: Grow and Glow Tech (growandglow.com)
Visual: Inspired directly by reference image media_1788861357308.png
Rules: Mobile-First, Zero px (except min-width media queries)
============================================================ */

.yemsrvgng {
  --yemsrvgng-bg: #0B0F17;
  --yemsrvgng-surface: #1E293B;
  --yemsrvgng-neon: #00FF9D;
  --yemsrvgng-text: #F8FAFC;
}

.yemsrvgng *, .yemsrvgng *::before, .yemsrvgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.yemsrvgng {
  width: 100%;
  background-color: var(--yemsrvgng-bg);
  color: var(--yemsrvgng-text);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  border-bottom: 0.0625rem solid #1E293B;
}

.yemsrvgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemsrvgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yemsrvgng__line {
  width: 6rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, var(--yemsrvgng-neon), transparent);
  margin-bottom: 1rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s ease;
}

.yemsrvgng.yemsrvgng--visible .yemsrvgng__line {
  transform: scaleX(1);
}

.yemsrvgng__title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yemsrvgng-text);
  margin-bottom: 0.75rem;
}

.yemsrvgng__subtitle {
  font-size: 0.9375rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}

.yemsrvgng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  padding-top: 1.25rem;
}

.yemsrvgng__card {
  position: relative;
  background-color: var(--yemsrvgng-surface);
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  display: flex;
  flex-direction: column;
  overflow: visible;
  padding-top: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.yemsrvgng__card:hover {
  transform: translateY(-0.35rem);
  border-color: var(--yemsrvgng-neon);
  box-shadow: 0 1rem 2.5rem rgba(0, 255, 157, 0.25);
}

.yemsrvgng__badge-tab {
  position: absolute;
  top: -1.1rem;
  right: 1.25rem;
  background-color: var(--yemsrvgng-neon);
  color: #0B0F17;
  padding: 0.35rem 1.25rem;
  border-radius: 0.5rem 1.25rem 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.84375rem;
  box-shadow: 0 0.4rem 1.25rem rgba(0, 255, 157, 0.35);
  z-index: 5;
}

.yemsrvgng__card:nth-child(even) .yemsrvgng__badge-tab {
  right: auto;
  left: 1.25rem;
  border-radius: 1.25rem 0.5rem 1.25rem 0.5rem;
}

.yemsrvgng__banner-icon {
  font-size: 1rem;
}

.yemsrvgng__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.yemsrvgng__card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--yemsrvgng-text);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.yemsrvgng__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.7);
}

.yemsrvgng__btn-tech {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  align-self: flex-start;
  color: var(--yemsrvgng-neon);
  font-weight: 700;
  font-size: 0.84375rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.yemsrvgng__btn-tech:hover {
  color: #ffffff;
  text-shadow: 0 0 0.5rem var(--yemsrvgng-neon);
}

.yemsrvgng__btn-arrow {
  transition: transform 0.3s ease;
}

.yemsrvgng__btn-tech:hover .yemsrvgng__btn-arrow {
  transform: translateX(-0.35rem);
}

@media (min-width: 601px) {
  .yemsrvgng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemsrvgng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .yemsrvgng__title {
    font-size: 2.375rem;
  }
  .yemsrvgng__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}


/* ============================================================
yemprwgng — Previous Work CSS
Namespace : yemprwgng
Project   : Grow and Glow Tech (growandglow.com)
============================================================ */

/* 1. Reset inside namespace */
.yemprwgng *,
.yemprwgng *::before,
.yemprwgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Styles — Mobile First (Dark Cyber Tech 3-color) */
.yemprwgng {
  width: 100%;
  background-color: #0B0F17;
  color: #ffffff;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  border-bottom: 0.0625rem solid #1E293B;
}

.yemprwgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemprwgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yemprwgng__line {
  width: 6rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #00FF9D, transparent);
  margin-bottom: 1rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.96s ease-in-out;
}

.yemprwgng.yemprwgng--visible .yemprwgng__line {
  transform: scaleX(1);
}

.yemprwgng__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.yemprwgng__subtitle {
  font-size: 0.9375rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}

.yemprwgng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Tech Portfolio Card */
.yemprwgng__card {
  position: relative;
  background-color: #1E293B;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.48s ease-in-out, box-shadow 0.48s ease-in-out, border-color 0.48s ease-in-out;
  overflow: hidden;
}

.yemprwgng__card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 255, 157, 0.2);
  border-color: #00FF9D;
}

.yemprwgng__border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.yemprwgng__rect-draw {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.8s ease-in-out;
}

.yemprwgng.yemprwgng--visible .yemprwgng__rect-draw {
  stroke-dashoffset: 0;
}

.yemprwgng__preview-box {
  position: relative;
  width: 100%;
  height: 14rem;
  background-color: #0B0F17;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
}

/* Desktop Frame */
.yemprwgng__desktop-frame {
  width: 82%;
  height: 10.5rem;
  background-color: #1E293B;
  border-radius: 0.5rem;
  border: 0.0625rem solid rgba(0, 255, 157, 0.3);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  transition: transform 0.48s ease-in-out;
}

.yemprwgng__card:hover .yemprwgng__desktop-frame {
  transform: scale(1.02);
}

.yemprwgng__desktop-bar {
  height: 1rem;
  background-color: rgba(0, 255, 157, 0.1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
}

.yemprwgng__dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: #00FF9D;
}

/* Mobile Frame */
.yemprwgng__mobile-frame {
  width: 3.75rem;
  height: 7.5rem;
  background-color: #0B0F17;
  border-radius: 0.75rem;
  border: 0.125rem solid #00FF9D;
  box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.35rem;
  transition: transform 0.48s ease-in-out;
}

.yemprwgng__card:hover .yemprwgng__mobile-frame {
  transform: translateY(-0.25rem) rotate(-4deg);
}

.yemprwgng__mobile-notch {
  width: 1rem;
  height: 0.2rem;
  background-color: #00FF9D;
  border-radius: 0.1rem;
}

.yemprwgng__screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  font-size: 0.75rem;
  gap: 0.35rem;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
}

.yemprwgng__screen-content--mobile {
  color: #00FF9D;
}

.yemprwgng__screen-icon {
  font-size: 1.5rem;
  color: #00FF9D;
}

.yemprwgng__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.yemprwgng__category {
  font-size: 0.75rem;
  font-weight: 800;
  color: #00FF9D;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
}

.yemprwgng__project-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.yemprwgng__project-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.7);
}

/* 4. Breakpoints (min-width only) */
@media (min-width: 601px) {
  .yemprwgng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemprwgng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .yemprwgng__title {
    font-size: 2.375rem;
  }
  .yemprwgng__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}


/* ============================================================
   YEMTSTGNG — Testimonial Image Slider Component CSS (Side Peek)
   Namespace  : yemtstgng
   Project    : Grow and Glow Tech (growandglow.com)
   Rules      : Mobile-First, Zero px (except min-width media queries), Strict 3 Colors
============================================================ */

/* 1. Variables & Colors (local inheriting from root) */
.yemtstgng {
  --yemtstgng-bg: var(--yem-secondary, #0B0F17);
  --yemtstgng-surface: #1E293B;
  --yemtstgng-neon: var(--yem-primary, #00FF9D);
  --yemtstgng-text: var(--yem-helper, #F8FAFC);
  --yemtstgng-muted: rgba(248, 250, 252, 0.7);
  --yemtstgng-border: rgba(0, 255, 157, 0.25);
  
  background-color: var(--yemtstgng-bg);
  color: var(--yemtstgng-text);
  padding: 4.5rem 1rem;
  position: relative;
  overflow: hidden;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
}

/* 2. Reset within Namespace */
.yemtstgng *,
.yemtstgng *::before,
.yemtstgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. Base Styles — Mobile */
.yemtstgng__container {
  width: 100%;
  max-width: 82rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.yemtstgng__header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.yemtstgng__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 255, 157, 0.08);
  border: 0.0625rem solid var(--yemtstgng-neon);
  border-radius: 0.25rem;
  color: var(--yemtstgng-neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.yemtstgng__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--yemtstgng-neon);
  border-radius: 50%;
  box-shadow: 0 0 0.5rem var(--yemtstgng-neon);
}

.yemtstgng__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--yemtstgng-text);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.yemtstgng__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--yemtstgng-muted);
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
}

/* Slider Wrapper */
.yemtstgng__slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Viewport with Side Peeks */
.yemtstgng__viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  position: relative;
  padding: 1.25rem 0;
}

.yemtstgng__viewport:active,
.yemtstgng__viewport--dragging {
  cursor: grabbing;
}

.yemtstgng__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1);
  will-change: transform;
}

/* Slide with Peek width (Active centered, partial adjacent visible) */
.yemtstgng__slide {
  flex: 0 0 80%; /* 80% slide width on mobile leaves 10% on each side */
  min-width: 80%;
  padding: 0 0.5rem;
  opacity: 0.45;
  transform: scale(0.92);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.yemtstgng__slide--active {
  opacity: 1;
  transform: scale(1);
}

/* Image Frame */
.yemtstgng__image-frame {
  background-color: var(--yemtstgng-surface);
  border: 0.0625rem solid var(--yemtstgng-border);
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.yemtstgng__slide--active .yemtstgng__image-frame {
  border-color: var(--yemtstgng-neon);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 255, 157, 0.22);
}

.yemtstgng__frame-top {
  background-color: rgba(11, 15, 23, 0.95);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-bottom: 0.0625rem solid var(--yemtstgng-border);
  direction: ltr;
}

.yemtstgng__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--yemtstgng-neon);
}

.yemtstgng__frame-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--yemtstgng-neon);
  margin-left: 0.5rem;
  font-weight: 700;
}

.yemtstgng__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--yemtstgng-surface);
  pointer-events: none;
}

/* Navigation Arrows */
.yemtstgng__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(11, 15, 23, 0.9);
  border: 0.0625rem solid var(--yemtstgng-neon);
  border-radius: 50%;
  color: var(--yemtstgng-neon);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(0.5rem);
}

.yemtstgng__control--prev {
  right: 0.25rem;
}

.yemtstgng__control--next {
  left: 0.25rem;
}

.yemtstgng__control:hover {
  background-color: var(--yemtstgng-neon);
  color: var(--yemtstgng-bg);
  box-shadow: 0 0 1.25rem var(--yemtstgng-neon);
  transform: translateY(-50%) scale(1.1);
}

/* Pagination Indicators */
.yemtstgng__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.yemtstgng__dot-btn {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--yemtstgng-surface);
  border: 0.0625rem solid var(--yemtstgng-neon);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.yemtstgng__dot-btn--active {
  width: 2rem;
  border-radius: 6.25rem;
  background-color: var(--yemtstgng-neon);
  box-shadow: 0 0 0.75rem var(--yemtstgng-neon);
}

/* Interactive Drag Hint */
.yemtstgng__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--yemtstgng-muted);
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.yemtstgng__hint i {
  color: var(--yemtstgng-neon);
}

/* 4. Breakpoints */
@media (min-width: 601px) {
  .yemtstgng__slide {
    flex: 0 0 68%;
    min-width: 68%;
    padding: 0 0.75rem;
  }
}

@media (min-width: 1025px) {
  .yemtstgng {
    padding: 6rem 1.5rem;
  }

  .yemtstgng__slide {
    flex: 0 0 54%; /* 54% center slide leaves 23% on each side for clear peeks */
    min-width: 54%;
    padding: 0 1rem;
  }

  .yemtstgng__control {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
  }

  .yemtstgng__control--prev {
    right: 1.5rem;
  }

  .yemtstgng__control--next {
    left: 1.5rem;
  }
}


/* ============================================================
yemprcgng — Prices CSS
Namespace : yemprcgng
Project   : Grow and Glow Tech (growandglow.com)
============================================================ */

/* 1. Reset inside namespace */
.yemprcgng *,
.yemprcgng *::before,
.yemprcgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Styles — Mobile First (Dark Cyber Tech 3-color) */
.yemprcgng {
  width: 100%;
  background-color: #0B0F17;
  color: #ffffff;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  border-bottom: 0.0625rem solid #1E293B;
}

.yemprcgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemprcgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yemprcgng__line {
  width: 6rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #00FF9D, transparent);
  margin-bottom: 1rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.96s ease-in-out;
}

.yemprcgng.yemprcgng--visible .yemprcgng__line {
  transform: scaleX(1);
}

.yemprcgng__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.yemprcgng__subtitle {
  font-size: 0.9375rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}

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

/* Tech Pricing Card */
.yemprcgng__card {
  position: relative;
  background-color: #1E293B;
  border-radius: 1rem;
  padding: 2.25rem 1.5rem 1.75rem 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.48s ease-in-out, box-shadow 0.48s ease-in-out, border-color 0.48s ease-in-out;
}

.yemprcgng__card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2.5rem rgba(0, 255, 157, 0.2);
  border-color: #00FF9D;
}

.yemprcgng__card--featured {
  background-color: #1E293B;
  color: #ffffff;
  border-color: #00FF9D;
  box-shadow: 0 1.25rem 3rem rgba(0, 255, 157, 0.25);
}

.yemprcgng__ribbon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  background-color: #00FF9D;
  color: #0B0F17;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 6.25rem;
  z-index: 3;
}

.yemprcgng__border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.yemprcgng__rect-draw {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.8s ease-in-out;
}

.yemprcgng.yemprcgng--visible .yemprcgng__rect-draw {
  stroke-dashoffset: 0;
}

/* Attached Hex Badge */
.yemprcgng__badge-circle {
  position: absolute;
  top: -1.25rem;
  right: 1.5rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background-color: #00FF9D;
  color: #0B0F17;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.35rem 1rem rgba(0, 255, 157, 0.4);
  z-index: 3;
}

.yemprcgng__badge-num {
  font-size: 1.125rem;
  font-weight: 800;
}

.yemprcgng__card-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.yemprcgng__package-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}

.yemprcgng__package-desc {
  font-size: 0.84375rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.7);
}

.yemprcgng__price-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.yemprcgng__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #00FF9D;
  font-variant-numeric: tabular-nums;
}

.yemprcgng__price-period {
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.7);
}

.yemprcgng__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.yemprcgng__feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #ffffff;
}

.yemprcgng__check {
  color: #00FF9D;
  font-size: 0.875rem;
}

.yemprcgng__btn-tech {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid #00FF9D;
  color: #00FF9D;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: transparent;
  margin-top: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.yemprcgng__btn-tech:hover {
  background-color: #00FF9D;
  color: #0B0F17;
}

.yemprcgng__btn-tech--featured {
  border-color: #00FF9D;
  background-color: #00FF9D;
  color: #0B0F17;
}

.yemprcgng__btn-tech--featured:hover {
  background-color: #00FF9D;
  border-color: #00FF9D;
}

/* 3. Breakpoints (min-width only) */
@media (min-width: 601px) {
  .yemprcgng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemprcgng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .yemprcgng__title {
    font-size: 2.375rem;
  }
  .yemprcgng__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .yemprcgng__card--featured {
    transform: scale(1.05);
  }
  .yemprcgng__card--featured:hover {
    transform: scale(1.05) translateY(-0.35rem);
  }
}


/* ============================================================
   YEMCIGNG — Contact Info Component CSS
   Namespace  : yemcigng
   Project    : Grow and Glow Tech (growandglow.com)
   Rules      : Mobile-First, Zero px (except min-width media queries), Strict 3 Colors
============================================================ */

/* 1. Variables & Colors (local inheriting from root) */
.yemcigng {
  --yemcigng-bg: var(--yem-secondary, #0B0F17);
  --yemcigng-surface: #1E293B;
  --yemcigng-neon: var(--yem-primary, #00FF9D);
  --yemcigng-text: var(--yem-helper, #F8FAFC);
  --yemcigng-muted: rgba(248, 250, 252, 0.7);
  --yemcigng-border: rgba(0, 255, 157, 0.25);
  
  background-color: var(--yemcigng-bg);
  color: var(--yemcigng-text);
  padding: 4.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
}

/* 2. Reset within Namespace */
.yemcigng *,
.yemcigng *::before,
.yemcigng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. Base Styles — Mobile */
.yemcigng__wrapper {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.yemcigng__header {
  text-align: center;
  margin-bottom: 3rem;
}

.yemcigng__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(0, 255, 157, 0.08);
  border: 0.0625rem solid var(--yemcigng-neon);
  border-radius: 0.25rem;
  color: var(--yemcigng-neon);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.yemcigng__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--yemcigng-neon);
  border-radius: 50%;
  box-shadow: 0 0 0.5rem var(--yemcigng-neon);
}

.yemcigng__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--yemcigng-text);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.yemcigng__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--yemcigng-muted);
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
}

/* Grid Layout */
.yemcigng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Card Component */
.yemcigng__card {
  background-color: var(--yemcigng-surface);
  border: 0.0625rem solid var(--yemcigng-border);
  border-radius: 0.75rem;
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.yemcigng__card:hover {
  transform: translateY(-0.35rem);
  border-color: var(--yemcigng-neon);
  box-shadow: 0 0.75rem 2rem rgba(0, 255, 157, 0.15);
}

.yemcigng__card--highlight {
  border-color: var(--yemcigng-neon);
  box-shadow: 0 0 1.5rem rgba(0, 255, 157, 0.12);
}

.yemcigng__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.yemcigng__icon-box {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 255, 157, 0.12);
  border: 0.0625rem solid var(--yemcigng-neon);
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yemcigng-neon);
  font-size: 1.35rem;
}

.yemcigng__tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yemcigng-neon);
  background-color: rgba(0, 255, 157, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  font-family: 'JetBrains Mono', monospace;
}

.yemcigng__card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yemcigng-text);
  margin-bottom: 0.65rem;
}

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

.yemcigng__info-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yemcigng-neon);
  margin-bottom: 1.25rem;
  direction: ltr;
  text-align: right;
}

.yemcigng__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0.0625rem solid transparent;
}

.yemcigng__btn--call {
  background-color: var(--yemcigng-neon);
  color: var(--yemcigng-bg);
}

.yemcigng__btn--call:hover {
  background-color: #FFFFFF;
  box-shadow: 0 0 1rem var(--yemcigng-neon);
}

.yemcigng__btn--wa {
  background-color: var(--yemcigng-neon);
  color: var(--yemcigng-bg);
  box-shadow: 0 0 1rem rgba(0, 255, 157, 0.3);
}

.yemcigng__btn--wa:hover {
  background-color: #FFFFFF;
  box-shadow: 0 0 1.25rem var(--yemcigng-neon);
}

.yemcigng__btn--mail {
  background-color: transparent;
  color: var(--yemcigng-neon);
  border-color: var(--yemcigng-neon);
}

.yemcigng__btn--mail:hover {
  background-color: rgba(0, 255, 157, 0.15);
  box-shadow: 0 0 1rem rgba(0, 255, 157, 0.2);
}

/* Hours and Socials in Card 4 */
.yemcigng__hours-box {
  background-color: rgba(11, 15, 23, 0.6);
  border: 0.0625rem solid rgba(0, 255, 157, 0.15);
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

.yemcigng__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
}

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

.yemcigng__hours-label {
  color: var(--yemcigng-muted);
}

.yemcigng__hours-val {
  color: var(--yemcigng-text);
  font-weight: 600;
}

.yemcigng__social-row {
  display: flex;
  gap: 0.625rem;
}

.yemcigng__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(11, 15, 23, 0.8);
  border: 0.0625rem solid rgba(0, 255, 157, 0.25);
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yemcigng-text);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yemcigng__social-link:hover {
  border-color: var(--yemcigng-neon);
  color: var(--yemcigng-neon);
  box-shadow: 0 0 0.75rem rgba(0, 255, 157, 0.3);
  transform: translateY(-0.15rem);
}

/* 4. Breakpoints */
@media (min-width: 601px) {
  .yemcigng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemcigng {
    padding: 6rem 2rem;
  }
  
  .yemcigng__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }
}


/* ============================================================
yemsvlgng — Service Location CSS
Namespace : yemsvlgng
Project   : Grow and Glow Tech (growandglow.com)
============================================================ */

/* 1. Reset inside namespace */
.yemsvlgng *,
.yemsvlgng *::before,
.yemsvlgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Styles — Mobile First (Dark Cyber Tech 3-color) */
.yemsvlgng {
  width: 100%;
  background-color: #0B0F17;
  color: #ffffff;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  border-bottom: 0.0625rem solid #1E293B;
}

.yemsvlgng__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemsvlgng__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yemsvlgng__line {
  width: 6rem;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #00FF9D, transparent);
  margin-bottom: 1rem;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.96s ease-in-out;
}

.yemsvlgng.yemsvlgng--visible .yemsvlgng__line {
  transform: scaleX(1);
}

.yemsvlgng__title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.yemsvlgng__subtitle {
  font-size: 0.9375rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 36rem;
  line-height: 1.6;
}

.yemsvlgng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.yemsvlgng__card {
  background-color: #1E293B;
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.48s ease-in-out, box-shadow 0.48s ease-in-out, border-color 0.48s ease-in-out;
}

.yemsvlgng__card:hover {
  transform: translateY(-0.25rem);
  border-color: #00FF9D;
  box-shadow: 0 1rem 2rem rgba(0, 255, 157, 0.2);
}

.yemsvlgng__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  background-color: rgba(0, 255, 157, 0.1);
  border: 0.0625rem solid rgba(0, 255, 157, 0.3);
  color: #00FF9D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.yemsvlgng__city {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.yemsvlgng__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.7);
}

.yemsvlgng__tag {
  align-self: flex-end;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  background-color: rgba(0, 255, 157, 0.1);
  color: #00FF9D;
  font-weight: 700;
  border: 0.0625rem solid rgba(0, 255, 157, 0.3);
}

/* 3. Breakpoints (min-width only) */
@media (min-width: 601px) {
  .yemsvlgng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemsvlgng {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .yemsvlgng__title {
    font-size: 2.375rem;
  }
  .yemsvlgng__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}


/* ============================================================
   YEMCTAFGNG — U-Loop Ribbon & Disc Floating CTA CSS
   Namespace  : yemctafgng
   Project    : Grow and Glow Tech (growandglow.com)
   Visual     : Exact replica of U-Loop Ribbon & Disc Capsule (media_1788879474356.png)
   Rules      : Mobile-First, Zero px (except min-width media queries), Strict 3 Colors
============================================================ */

.yemctafgng {
  --yemctafgng-bg: #0B0F17;
  --yemctafgng-surface: #1E293B;
  --yemctafgng-neon: #00FF9D;
  --yemctafgng-text: #F8FAFC;
}

.yemctafgng *,
.yemctafgng *::before,
.yemctafgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fixed Floating Container */
.yemctafgng {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99999;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  pointer-events: none;
}

.yemctafgng__floating-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 12.5rem;
  pointer-events: auto;
}

.yemctafgng__card {
  position: relative;
  width: 100%;
  height: 3.5rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.yemctafgng__card:hover {
  transform: translateY(-0.25rem) scale(1.02);
}

/* U-Turn Ribbon Pod on the Left */
.yemctafgng__uloop-pod {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.75rem;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yemctafgng__uloop-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0.25rem 0.5rem rgba(0, 0, 0, 0.4));
}

.yemctafgng__disc-badge {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.6);
}

.yemctafgng__icon {
  font-size: 1.15rem;
}

/* Pill Body */
.yemctafgng__pill-body {
  flex: 1;
  height: 3rem;
  margin-left: 2rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  direction: rtl;
  padding-right: 0.5rem;
  padding-left: 0.875rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.5);
}

.yemctafgng__text {
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Phone Card Colors */
.yemctafgng__card--phone .yemctafgng__disc-badge {
  background-color: #0B0F17;
  border: 0.125rem solid #00FF9D;
  color: #00FF9D;
}

.yemctafgng__card--phone .yemctafgng__pill-body {
  background-color: #1E293B;
  border: 0.0625rem solid #00FF9D;
  color: #F8FAFC;
}

.yemctafgng__card--phone:hover .yemctafgng__pill-body {
  box-shadow: 0 0.75rem 1.75rem rgba(0, 255, 157, 0.35);
}

/* WhatsApp Card Colors */
.yemctafgng__card--wa .yemctafgng__disc-badge {
  background-color: #00FF9D;
  border: 0.125rem solid #0B0F17;
  color: #0B0F17;
  box-shadow: 0 0 0.75rem rgba(0, 255, 157, 0.5);
}

.yemctafgng__card--wa .yemctafgng__pill-body {
  background-color: #00FF9D;
  color: #0B0F17;
  border: 0.0625rem solid #00FF9D;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 255, 157, 0.35);
}

.yemctafgng__card--wa:hover .yemctafgng__pill-body {
  box-shadow: 0 0.75rem 2rem rgba(0, 255, 157, 0.6);
}


/* ============================================================
yemftrgng — Footer CSS
Namespace : yemftrgng
Project   : Grow and Glow Tech (growandglow.com)
============================================================ */

/* 1. Reset inside namespace */
.yemftrgng *,
.yemftrgng *::before,
.yemftrgng *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 2. Base Styles — Mobile First (Dark Cyber Tech 3-color) */
.yemftrgng {
  width: 100%;
  background-color: #0B0F17;
  color: rgba(248, 250, 252, 0.7);
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
  border-top: 0.0625rem solid #1E293B;
}

.yemftrgng__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.yemftrgng__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.yemftrgng__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.yemftrgng__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.yemftrgng__logo-img {
  height: 2.75rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  display: block;
}

.yemftrgng__brand-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}

.yemftrgng__about-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.7);
}

.yemftrgng__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.yemftrgng__social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: #1E293B;
  color: #00FF9D;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9375rem;
  border: 0.0625rem solid rgba(0, 255, 157, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.yemftrgng__social-link:hover {
  background-color: #00FF9D;
  color: #0B0F17;
  border-color: #00FF9D;
  transform: translateY(-0.2rem);
}

.yemftrgng__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.yemftrgng__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.yemftrgng__link {
  color: rgba(248, 250, 252, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease, padding-right 0.3s ease;
}

.yemftrgng__link:hover {
  color: #00FF9D;
  padding-right: 0.35rem;
}

.yemftrgng__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.yemftrgng__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.7);
}

.yemftrgng__contact-icon {
  color: #00FF9D;
  font-size: 1rem;
}

.yemftrgng__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.yemftrgng__line {
  width: 100%;
  height: 0.0625rem;
  background: linear-gradient(90deg, transparent, #1E293B, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.96s ease-in-out;
}

.yemftrgng.yemftrgng--visible .yemftrgng__line {
  transform: scaleX(1);
}

.yemftrgng__copyright {
  font-size: 0.8125rem;
  color: rgba(248, 250, 252, 0.7);
}

/* 3. Breakpoints (min-width only) */
@media (min-width: 601px) {
  .yemftrgng__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .yemftrgng {
    padding-top: 5rem;
  }
  .yemftrgng__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2rem;
  }
}
