*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background: rgb(248, 250, 252);

  /* background:
  radial-gradient(circle at top left, rgba(239,68,68,0.08), transparent 25%),
  radial-gradient(circle at bottom right, rgba(15,23,42,0.08), transparent 30%),
  linear-gradient(to bottom, #f1f5f9, #e9eef7); */

  color:#0f172a;
  line-height:1.7;
  overflow-x:hidden;
}

.about-container{
  width:min(1180px,92%);
  margin:auto;
}

/* ================= HERO ================= */

.about-hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.about-hero::before{
  height: 100vh;
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
  url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?q=80&w=1800&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  transform:scale(1.1);
  animation:zoomHero 12s ease-in-out infinite alternate;
}

@keyframes zoomHero{
  from{
    transform:scale(1.05);
  }
  to{
    transform:scale(1.15);
  }
}

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:950px;
  color:white;
  margin-bottom: -50px;
}

.about-hero-badge{
  display:inline-block;
  padding:10px 22px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.15);
  backdrop-filter:blur(10px);
  border-radius:50px;
  margin-bottom:28px;
  font-weight:600;
  color:#fff;
}

.about-hero-content h1{
  font-size:5rem;
  line-height:1.1;
  margin-bottom:28px;
  font-weight:800;
}

.about-hero-content p{
  font-size:1.15rem;
  color:#e2e8f0;
  max-width:760px;
  margin:auto;
}

/* ================= SECTION ================= */

.about-section{
  padding:110px 0;
  margin-bottom: -110px;
}


.about-section-title{
  text-align:center;
  margin-bottom:70px;
}

.about-section-title span{
  display:inline-block;
  background:#fee2e2;
  color:#ef4444;
  padding:8px 18px;
  border-radius:40px;
  font-weight:700;
  margin-bottom:18px;
}

.about-section-title h2{
  font-size:3rem;
  color:#0f172a;
  margin-bottom:18px;
}

.about-section-title p{
  max-width:760px;
  margin:auto;
  color:#64748b;
  
}

/* ================= STORY SECTION ================= */

.about-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:stretch;
}

.about-story-image{
  position:relative;
  height:100%;
}

.about-story-image img{
  width:100%;
  height:100%;
  min-height:450px;
  object-fit:cover;
  border-radius:30px;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.about-cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:28px;
}

/* .about-floating-card{
  position:absolute;
  bottom:-30px;
  right:-20px;
  background:white;
  padding:24px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  width:240px;
}

.about-floating-card h3{
  color:#ef4444;
  font-size:2rem;
} */

.about-story-content h2{
  font-size:3rem;
  margin-bottom:24px;
}

.about-story-content p{
  color:#64748b;
  margin-bottom:24px;
  font-size:1.05rem;
}

/* ================= CARDS ================= */

.about-cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.about-cards-grid-core{
  display:grid;
  grid-template-columns:repeat(2,1fr) !important;
  gap:28px;
}

.about-info-card{
  background:white;
  padding:35px;
  border-radius:24px;
  border:1px solid #e2e8f0;
  transition:0.4s ease;
  position:relative;
  overflow:hidden;
}

.about-info-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#ef4444,#dc2626);
  opacity:0;
  transition:0.4s ease;
}

.about-info-card:hover::before{
  opacity:1;
}

.about-info-card:hover{
  transform:translateY(-12px);
}

.about-info-card *{
  position:relative;
  z-index:2;
}

.about-info-card:hover h3,
.about-info-card:hover p,
.about-info-card:hover li,
.about-info-card:hover .card-icon,
.about-info-card:hover .read-more-btn{
  color:#fff;
}

.about-card-icon{
  width:70px;
  height:70px;
  border-radius:18px;
  background:#fee2e2;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ef4444;
  font-size:1.6rem;
  margin-bottom:24px;
  transition:0.4s ease;
}

.about-info-card h3{
  font-size:1.5rem;
  margin-bottom:18px;
}

.about-info-card p{
  color:#64748b;
}

.about-info-card ul{
  margin-top:18px;
  padding-left:18px;
}

.about-info-card li{
  margin-bottom:12px;
  color:#64748b;
}

/* ================= TIMELINE ================= */

.about-timeline{
  position:relative;
  max-width:1000px;
  margin:auto;
}

.about-timeline::before{
  content:'';
  position:absolute;
  left:50%;
  top:0;
  width:4px;
  height:100%;
  background:#ef4444;
  transform:translateX(-50%);
}

.about-timeline-item{
  width:50%;
  padding:20px 40px;
  position:relative;
}

.about-timeline-item:nth-child(odd){
  left:0;
  text-align:right;
}

.about-timeline-item:nth-child(even){
  left:50%;
}

.about-timeline-dot{
  width:22px;
  height:22px;
  background:#ef4444;
  border-radius:50%;
  position:absolute;
  top:40px;
  right:-11px;
}

.about-timeline-item:nth-child(even) .about-timeline-dot{
  left:-11px;
}

.about-timeline-card{
  background:white;
  padding:30px;
  border-radius:22px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.about-timeline-card h3{
  margin-bottom:14px;
}

.about-timeline-card p{
  color:#64748b;
}

/* ================= IMPACT ================= */

.about-impact-section{
  background:#0f172a;
  color:white;
  padding:80px 50px;
}

.about-impact-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:50px;
}

.about-impact-box{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:35px;
  text-align:center;
  transition:0.4s ease;
}

.about-impact-box:hover{
  transform:translateY(-10px);
  background:#ef4444;
}

.about-impact-box h3{
  font-size:3rem;
  margin-bottom:10px;
}

.about-impact-box p{
  color:#e2e8f0;
}

/* ================= CTA ================= */

.about-cta-section{
  text-align:center;
  padding:120px 0;
}

.about-cta-box{
    padding:40px 20px;
    max-width: 1200px;
    margin: 0 auto 0px;
    border-radius: 30px;
    overflow: hidden;
    transition: 1s ease;
    background:
    linear-gradient(rgba(5,10,20,.9),rgba(5,10,20,.9)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1800&auto=format&fit=crop')
    center/cover no-repeat;

    text-align:center;
}



.about-cta-box h2{
  font-size:3rem;
  margin-bottom:20px;
  position:relative;
  z-index:2;
  font-family:'Montserrat',sans-serif;
  color: #fff;
}

.about-cta-box p{
  max-width:760px;
  margin:auto;
  margin-bottom:35px;
  color:#fff;
  position:relative;
  z-index:2;
}

.about-cta-btn{
    display:inline-block;
    margin-top:35px;

    padding:18px 34px;

    border-radius:16px;

    text-decoration:none;
    color:white;

    background:linear-gradient(135deg,#ff2d2d,#ff6a3d);

    font-weight:700;

    transition:.35s ease;
}

.about-cta-btn:hover{
  transform:translateY(-5px);
}

/* ================= REVEAL ================= */

.about-reveal{
  opacity:0;
  transform:translateY(70px);
  transition:1s ease;
}

.about-reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .about-cards-grid{
    grid-template-columns:1fr;
  }

  .about-story-grid{
    grid-template-columns:1fr;
  }

  .about-impact-grid{
    grid-template-columns:1fr 1fr;
  }

  .about-timeline::before{
    left:20px;
  }

  .about-timeline-item{
    width:100%;
    left:0 !important;
    padding-left:70px;
    padding-right:20px;
    text-align:left !important;
  }

  .about-timeline-dot{
    left:9px !important;
    right:auto;
  }

}

@media(max-width:768px){

  .about-hero-content h1{
    font-size:3rem;
  }

  .about-section-title h2{
    font-size:2.2rem;
  }

  .about-story-content h2{
    font-size:2.2rem;
  }

  .about-impact-grid{
    grid-template-columns:1fr;
  }

  .about-cta-box h2{
    font-size:2.2rem;
  }
  .about-cards-grid-core{
  display:grid;
  grid-template-columns:repeat(1,1fr) !important;
  gap:28px;
}

}

.about-read-more-btn{
  border:none;
  background:none;
  color:#ff4d4d;
  font-weight:700;
  cursor:pointer;
  padding:0;
  font-size:14px;
  transition:.3s ease;
  margin-bottom: 10px;
}

.about-read-more-btn:hover{
  opacity:.8;
  color: #fff;
}