:root{
  --raabta: #ff2d7a;
  --raabta-2: #7c3aed;
  --text: #101828;
  --muted: #667085;
  --border: #e6e8ef;
  --bg-soft: #f9faff;
}

*{ box-sizing: border-box; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a{ color: inherit; }
.section-pad{ padding: 72px 0; }
.bg-soft{ background: var(--bg-soft); }
.text-primary { color: var(--raabta) !important; }
.text-secondary { color: #155DFC !important; }
.logo {
    width: 130px;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #45556C;
}

/* Buttons */
.btn-raabta{
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 2px solid var(--raabta);
  border-radius: 15px;
  padding: 10px 16px;
  background: var(--raabta);
  line-height: 1em;
}
.btn-raabta:hover{ 
    background: rgba(255,45,122,.06);
    color: var(--raabta); 
    border-color: #FFFFFF;
}
.btn-outline-raabta{
    font-size: 16px;
    font-weight: 500;
    color: var(--raabta);
    border: 2px solid rgba(255, 45, 122, 1);
    border-radius: 15px;
    padding: 10px 16px;
    background: #fff;
    line-height: 1.2em;
}
.btn-outline-raabta:hover{
  background: rgba(255,45,122,.06);
  color: var(--raabta);
  border-color: #FFFFFF;
}
.btn-link {
    color: #45556C !important;
}

/* Brand */
.brand-mark{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--raabta), var(--raabta-2));
  display: inline-block;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}

/* Hero */
.hero-section{
  padding: 32px 0 24px;
  background: #fff1fd;
}

.hero-card{
  /* border: 1px solid var(--border); */
  /* background: #fff; */
  /* border-radius: 24px; */
  padding: 28px;
  /* box-shadow: 0 20px 50px rgba(16,24,40,.08); */
}

.hero-badge{
  background: rgba(124,58,237,.10);
  color: #4c1d95;
  border: 1px solid rgba(124,58,237,.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.text-accent{
  background: linear-gradient(135deg, var(--raabta), var(--raabta-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-points{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.hero-points li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
}
.hero-points i{
  color: var(--raabta);
  font-size: 18px;
}

/* Hero media */
.hero-media{
  position: relative;
  overflow: hidden;
  padding: 0px 44px;
}
.hero-img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 50px
}

.floating-card{
  position: absolute;
  right: 0px;
  bottom: 25px;
  width: min(330px, calc(100% - 28px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 12px;
}
.mini-avatar{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  /* background: rgba(255,45,122,.10); */
  color: var(--raabta);
  flex: 0 0 auto;
}

.floating-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,24,40,.72);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

/* Stats pills */
.stat-pill{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #fff;
}
.stat-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.bg-soft-green{ background: linear-gradient(90deg, #00BC7D 0%, #009966 100%); color: #FFFFFF; }
.bg-soft-purple{ background: linear-gradient(90deg, #AD46FF 0%, #9810FA 100%); color: #FFFFFF; }
.bg-soft-pink{ background: linear-gradient(90deg, #F82A80 0%, #D5356A 100%); color: #FFFFFF; }
.bg-soft-blue{ background: linear-gradient(90deg, #2B7FFF 0%, #155DFC 100%); color: #FFFFFF; }
.bg-soft-orange{ background: linear-gradient(90deg, #FE9A00 0%, #E17100 100%); color: #FFFFFF; }
.bg-soft-indigo{ background: linear-gradient(90deg, #00B8DB 0%, #0092B8 100%); color: #FFFFFF; }

.bg-soft-green-2{ background: linear-gradient(90deg, #ECFDF5 0%, #D0FAE5 100%) !important ; color: #009966; }
.bg-soft-purple-2{ background: linear-gradient(90deg, #FAF5FF 0%, #F3E8FF 100%) !important ; color: #9810FA; }
.bg-soft-blue-2{ background: linear-gradient(90deg, #EFF6FF 0%, #DBEAFE 100%) !important ; color: #155DFC; }
.bg-soft-orange-2{ background: linear-gradient(90deg, #FFFBEB 0%, #FEF3C6 100%) !important ; color: #E17100; }

/* Section kicker */
.section-kicker{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,45,122,.08);
  border: 1px solid rgba(255,45,122,.18);
  color: var(--raabta);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;
  margin-bottom: 20px;
}

/* Media card */
.media-card{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(16,24,40,.08); */
  padding: 0px 45px;
}
.media-chip{
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 700;
}

/* Feature list */
.feature-list{
  display: grid;
  gap: 14px;
}
.feature-item{
  display: flex;
  gap: 12px;
  padding: 14px 0px;
  /* border: 1px solid var(--border); */
  border-radius: 18px;
  /* background: #fff; */
}
.feature-ico{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
  padding: 1px;
}

.feature-ico img {
  padding: 2px;
  width: 28px;
  height: 28px;
}

/* Why cards */
.info-card{
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(160deg, #FDF2F8 0%, #EFF6FF 50%, #FDF2F8 100%);;
  padding: 35px 40px;
  height: 100%;
  box-shadow: 0 12px 28px rgba(16,24,40,.05);
}
.info-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

/* Timeline */
.timeline{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 0;
}
.timeline-line{
  position: absolute;
  left: 51.2%;
  top: 0;
  bottom: 0;
  width: 2.1px;
  /* background: linear-gradient(180deg, rgba(255,45,122,.2), rgba(124,58,237,.25)); */
  background: var(--raabta) ;
  transform: translateX(-50%);
}
.timeline-item{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin: 18px 0;
  gap: 0;
}
.timeline-item.left .timeline-card{ grid-column: 1; }
.timeline-item.left .timeline-dot{ grid-column: 2; }
.timeline-item.right .timeline-card{ grid-column: 3; }
.timeline-item.right .timeline-dot{ grid-column: 2; position: relative; bottom: 140px;}

.timeline-card{
  background: linear-gradient(160deg, #FDF2F8 0%, #EFF6FF 50%, #FDF2F8 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 35px 20px;
  box-shadow: 0 12px 28px rgba(16,24,40,.06);
  margin: 0px 35px;
}
.timeline-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #26282b;
}
.timeline-card p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #26282b;
}
.timeline-points{
  margin: 0;
  padding-left: 16px;
  color: #26282b;
  list-style: decimal;
}
.timeline-dot{
  width: 84px;
  height: 84px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,24,40,.06);
  box-shadow: 0 10px 22px rgba(16,24,40,.08);
  background: var(--raabta);
  margin: 0 auto;
  transform: rotate(10deg);
}
.timeline-dot i{ font-size: 18px; }
.timeline-dot img {
    width: 42px;
}
/* Testimonials */
.testimonial-wrap{
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
}
.slider-btn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
}
.testimonial-card{
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(251, 35, 107, 3%);
  padding: 18px;
  box-shadow: 0 16px 34px rgba(16,24,40,.06);
}
.testimonial-card p{
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
}
.person-card{
  border-radius: 18px;
  padding: 25px 50px;
  background: var(--bg-soft);
  height: 100%;
}
.quote-ico{
  width: 86px;
  height: 86px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #ff2d7a;
  color: #ff2d7a;
  font-size: 22px;
  margin-bottom: 10px;
  transform: rotate(15deg);
}
.quote-ico img {
    width: 48px;
}
/* Mini stats */
.mini-stat{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  width: 210px;
  margin: 0 auto;
}
.mini-stat div{
  font-size: 32px;
}
.mini-stat small {
    font-size: 16px;
    font-weight: 500;
}

/* CTA */
.cta-section{
  padding: 80px 0;
  background:
    radial-gradient(900px 320px at 20% 0%, rgba(255,45,122,.25), transparent 55%),
    radial-gradient(900px 320px at 80% 0%, rgba(124,58,237,.25), transparent 55%),
    linear-gradient(135deg, #1b1446, #2a1a5f 35%, #111827);
}
.cta-card{
  border-radius: 26px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.cta-kicker{
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}
.cta-mini-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 14px;
}
.cta-mini-ico{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
}
.cta-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}

/* Footer */
.site-footer{
  padding: 56px 0 34px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-title{
  font-size: 18px;
  color: var(--raabta);
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-links a{
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover{ color: var(--text); }

.social-btn{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
  text-decoration: none;
}

.project-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.project-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(21, 93, 252, 0.08);
}

.project-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #155dfc;
  background: rgba(21, 93, 252, 0.1);
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid #155dfc38;
}

.project-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

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

/* Responsive */
@media (max-width: 576px) {
  .project-title {
    font-size: 26px;
  }

  .project-card {
    padding: 30px 20px;
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .hero-img{ height: 360px; }
}

@media (max-width: 767.98px){
  .testimonial-wrap {
    display: block;
  }
  .section-pad{ padding: 56px 0; }
  .hero-card{ padding: 18px; }
  .hero-img{ height: 300px; }

  /* Timeline becomes single column */
  .timeline-line{ left: 28px; transform: none; }
  .timeline-item{
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot{
    grid-column: 1;
    margin: 0;
    position: relative;
    bottom: 165px;
    transform: rotate(0deg);
    width: 55px;
    height: 55px;
  }
  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card{
    grid-column: 2;
  }
  .timeline-dot img {
      width: 32px;
  }
}
