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


body {

  /* background: linear-gradient(180deg,#f8fafc,#eef2f7); */
  color: var(--dark);
}

/* ===== 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;
}



/* ===== HUMAN-CENTRIC INTRO SECTION (LIGHT THEME) ===== */
.ux-intro-section {
  position: relative;
  padding: 60px 6%;
  /* background: radial-gradient(circle at top left, #eef4ff, #ffffff); */
  overflow: hidden;
  color: #1a1f36;
}

/* Soft Glow Effect */
.ux-intro-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  /* background: radial-gradient(circle, rgba(125,178,255,0.35), transparent 70%); */
  top: -120px;
  left: -120px;
  filter: blur(90px);
}

/* Layout */
.ux-intro-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Text Content */
.ux-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #4f7cff;
  text-transform: uppercase;
}

.ux-title {
  font-size: 1.9rem;
  line-height: 1.1;
  margin: 18px 0 26px;
  color: #0f172a;
}

.ux-title span {
  background: linear-gradient(90deg, #4f7cff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ux-description {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 18px;
  max-width: 560px;
}

/* Keywords Line */
.ux-keyline {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.ux-keyline span {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(79,124,255,0.08);
  border: 1px solid rgba(79,124,255,0.25);
  color: #1e3a8a;
}

/* Visual Flow */
.ux-intro-visual {
  display: flex;
  justify-content: center;
}

.ux-path {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.ux-path::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #93c5fd, transparent);
  transform: translateX(-50%);
}

/* Nodes */
.ux-node {
  position: relative;
  padding: 16px 28px;
  border-radius: 40px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15,23,42,0.12);
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #0f172a;
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
}

.ux-node span {
  position: relative;
  z-index: 2;
}

.ux-node::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(120deg, transparent, rgba(79,124,255,0.35), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ux-node:hover::after,
.ux-node.active::after {
  opacity: 1;
}

.ux-node:hover {
  transform: translateX(-6px);
  border-color: #4f7cff;
  box-shadow: 0 10px 30px rgba(79,124,255,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .ux-intro-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .ux-intro-visual {
    justify-content: flex-start;
  }

  .ux-path::before {
    left: 18px;
  }
}




.micro-why{
  padding:50px 15%;
  background:#f8fafc;
}

.why-header{
  max-width:700px;
  margin-bottom:80px;
}

.why-header h2{
  font-size: 1.9rem; 
  margin-bottom:12px;
  color:#ef4444;
}

.why-header p{
  color:#475569;
  font-size:1.05rem;
}

/* ================= TIMELINE ================= */
.why-timeline{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* Vertical line */
.why-timeline::before{
  content:"";
  position:absolute;
  left:16px;
  top:0;
  bottom:0;
  width:2px;
  background:#e11d48;
}

/* Item grid */
.why-item{
  display:grid;
  grid-template-columns:32px 70px 1fr;
  column-gap:28px;
  align-items:flex-start;
}

/* Timeline column */
.timeline-col{
  position:relative;
}

.dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#e11d48;
  margin-top:6px;
  position:relative;
}

.dot::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:rgba(225,29,72,.4);
  animation:pulse 2.5s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:1;}
  100%{transform:scale(2.5);opacity:0;}
}

/* Number */
.number{
  font-size:1.4rem;
  font-weight:600;
  color:#94a3b8;
}

/* Content */
.content h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.content p{
  color:#475569;
  line-height:1.7;
  margin-bottom:8px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .why-item{
    grid-template-columns:24px 50px 1fr;
  }
}

@media(max-width:480px){
  .why-timeline::before{
    left:12px;
  }

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

  .number{
    display:none;
  }
}


/* ===== FUTURE OF UX SECTION (LIGHT THEME) ===== */
.ux-future-section {
  position: relative;
  padding: 50px 6%;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  overflow: hidden;
  color: #0f172a;
}

/* Ambient Glow */
.ux-future-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
  bottom: -220px;
  right: -200px;
  filter: blur(100px);
}

/* Container */
.ux-future-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.ux-future-header {
  max-width: 720px;
  margin-bottom: 80px;
}

.ux-future-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4f7cff;
}

.ux-future-title {
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 18px 0 22px;
}

.ux-future-title span {
  background: linear-gradient(90deg, #4f7cff, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ux-future-subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

/* Flow */
.ux-future-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  position: relative;
}

/* Timeline Line */
.ux-future-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #93c5fd, transparent);
  transform: translateX(-50%);
}

/* Steps */
.ux-future-step {
  position: relative;
  padding-left: 40px;
}

.ux-future-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.ux-future-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* Index */
.ux-step-index {
  position: absolute;
  left: -6px;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  color: #4f7cff;
}

/* Hover Motion */
.ux-future-step:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .ux-future-flow {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ux-future-flow::before {
    left: 12px;
  }

  .ux-future-step {
    padding-left: 32px;
  }
}
