
:root {
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #64748b;
  --accent: #ef4444;
  --glass: rgba(255,255,255,0.6);
}



/* ===== HERO ===== */
.hero {
  min-height: 55vh;
  background: url("../img/UIUX\ &\ Web\ Experience\ Design\ -\ 007\ \(1\).png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.hero h1 {
   font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  max-width: 720px;
}

.hero p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #e5e7eb;
  max-width: 600px;
}

.hero .line {
  width: 90px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 26px;
}


:root {
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #64748b;
  --accent: #ef4444;
  --glass: rgba(255,255,255,0.12);
}


body {
  background: #f1f5f9;
  color: var(--dark);
}

/* ===== HERO ===== */
.pwa-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 80px 6%;
}

.hero-inner {
  max-width: 900px;
  animation: fadeUp 1s ease forwards;
}

.pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(239,68,68,.15);
  color: var(--accent);
  border-radius: 50px;
  font-size: .85rem;
  margin-bottom: 20px;
}

.hero-inner h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.hero-inner p {
  color: #cbd5f5;
  max-width: 600px;
}

/* ===== SECTIONS ===== */
.pwa-section {
  padding: 100px 6%;
}

.pwa-section.light {
  background: #ffffff;
}

.pwa-block {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pwa-block.reverse {
  direction: rtl;
}

.pwa-block.reverse > * {
  direction: ltr;
}

.pwa-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.pwa-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== FEATURES ===== */
.pwa-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.feature {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: #f8fafc;
  font-size: .95rem;
  transition: .3s;
}

.feature:hover {
  transform: translateX(6px);
}

/* ===== VISUALS ===== */
.pwa-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-card {
  padding: 30px;
  border-radius: 22px;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.glass-card span {
  font-size: 2.5rem;
}

.glass-stack {
  position: relative;
  width: 220px;
  height: 260px;
}

.stack-card {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ef4444, #fb7185);
  opacity: .25;
  animation: stackFloat 6s ease-in-out infinite;
}

.stack-card:nth-child(2) {
  transform: translate(18px,18px);
  opacity: .18;
}

.stack-card:nth-child(3) {
  transform: translate(36px,36px);
  opacity: .12;
}

.pulse-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  animation: pulse 2s infinite;
}

/* ===== FUTURE LIST ===== */
.future-list {
  list-style: none;
  margin-top: 20px;
}

.future-list li {
  margin-bottom: 12px;
  color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

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

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

@keyframes pulse {
  0% { transform: scale(.9); opacity: .6; }
  70% { transform: scale(1.05); opacity: 0; }
  100% { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .pwa-block {
    grid-template-columns: 1fr;
  }

  .pwa-features {
    grid-template-columns: 1fr;
  }
}
