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



body{
    background:#f1f5f9;
    color:#0f172a;
    line-height:1.7;
}

      /* linear-gradient(180deg,rgba(15,23,42,.85),rgba(15,23,42,.55)), */

/* ================= HERO ================= */
.hero{
    min-height:55vh;
    background:

      url("../img/UIUX\ &\ Web\ Experience\ Design\ -\ 0007.png");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

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

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

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

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

/* ================= SECTIONS ================= */
.section{
    max-width:1200px;
    margin:auto;
    padding:90px 20px;
}

.section-title{
   font-size: 1.9rem; 
    margin-bottom:20px;
    position:relative;
}

.section-title::after{
    content:'';
    width:50px;
    height:3px;
    background:var(--accent);
    display:block;
    margin-top:10px;
}

.section p{
    color:var(--muted);
    max-width:900px;
}

/* ================= SPLIT ================= */
.split{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.split-box{
    background:#fff;
    padding:50px;
    border-radius:22px;
    box-shadow:0 30px 60px rgba(0,0,0,.08);
}

/* ================= FEATURES ================= */
.features{
    background:linear-gradient(180deg,#f8fafc,#eef2f7);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.feature{
    background:#fff;
    padding:35px;
    border-radius:22px;
    position:relative;
    transition:.4s ease;
}

.feature::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:4px;
    background:var(--accent);
    border-radius:20px 0 0 20px;
}

.feature:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.feature h3{
    margin-bottom:10px;
}

.feature p{
    font-size:.95rem;
}

/* ================= CTA ================= */

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .split{grid-template-columns:1fr}
    .cta{padding:50px 25px}
}











 
        /* ROOT */
.future-impact-container {
  padding: 20px 20px;
  background: linear-gradient(180deg, #f7f8fa, #eceff3);
  font-family: 'Poppins', sans-serif;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.section-title {
 font-size: 1.9rem; 
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

/* TIMELINE */
.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding-left: 40px;
}

/* CENTER LINE */
.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(17,24,39,0.05),
    rgba(17,24,39,0.25),
    rgba(17,24,39,0.05)
  );
}

/* CARD */
.impact-card {
  position: relative;
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease forwards;
}

/* NODE */
.timeline-node {
  width: 18px;
  height: 18px;
  background: #111827;
  border-radius: 50%;
  position: absolute;
  left: 11px;
  top: 22px;
  box-shadow: 0 0 0 8px rgba(17,24,39,0.08);
}

/* CARD CONTENT */
.card-content {
  background: #ffffff;
  padding: 30px 34px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  width: 100%;
}

.impact-card:hover .card-content {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

/* ICON */
.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #111827, #374151);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon i {
  color: #ffffff;
  font-size: 22px;
}

/* TEXT */
.card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 12px;
}

.card-description {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

/* TAGS */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  padding: 6px 14px;
  font-size: 12px;
  background: #f3f4f6;
  color: #111827;
  border-radius: 20px;
  font-weight: 500;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .timeline-container {
    padding-left: 30px;
  }

  .card-content {
    padding: 26px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 14px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .timeline-node {
    top: 18px;
  }
}

  