:root{
  --bg: #fbf1e7;          /* light beige like screenshot */
  --ink: #1d1d1d;
  --muted: rgba(0,0,0,.65);
  --stroke: rgba(0,0,0,.2); /* dotted path color */
  --accent: #f06423;   
  --accent-dark: #d84f14;

  --card: rgba(255,255,255,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden; /* important: no horizontal scrollbar */
}

/* ---------------- Header / Navbar ---------------- */
.site-header{
  position: sticky;
  top: 12px;
  z-index: 50;
  padding: 0 16px;
}

/* nav stays compact */
.nav{
  max-width: 980px;
  margin: 0 auto;
  height: 56px;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content: space-between; /* links on right */

  background: rgba(251,241,231,.65);
  backdrop-filter: blur(8px);
  border: 1.6px solid rgba(0,0,0,.65);
  border-radius: 16px;
  box-shadow: 0 3px 0 rgba(0,0,0,.85);

  position: relative; /* needed for absolute logo */
  overflow: visible;  /* allow logo outside */
}

/* Logo overlay */
#logo{
  width: 150px;
}

/* Push links so they don't collide with big logo */
.nav-links{
  display:flex;
  gap: 18px;
  align-items:center;
  margin-left: 190px; /* important: space for 160px logo */
}

.nav-links a{
  text-decoration:none;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0,0,0,.78);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-links a:hover{
  background: rgba(0,0,0,.06);
}

/* Mobile: logo slightly smaller so it doesn't break */
@media (max-width: 600px){
  .logo-big{ width: 110px; height: 110px; }
  .nav-links{ margin-left: 130px; gap: 12px; }
}



/* ---------------- Hero ---------------- */
.hero{
  position: relative;
  width: 100%;
  height: calc(100vh - 86px); /* header height approx; no scrollbar */
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 22px 16px 40px;
  overflow: hidden; /* important: keep path inside */
}

/* Background path container full width */
.pathContainer{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 70px 0 40px;
}

/* Common segment */
.pathSeg{
  position: relative;
  width: min(980px, 92vw);
  height: 170px;
  margin: 0 auto;
  border-radius: 999px; 
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.6));
}

/* Broken S path segments (dotted borders only on needed sides) */
.seg1{
  border-top: 2px dotted var(--stroke);
  border-right: 2px dotted var(--stroke);
  border-top-right-radius: 260px;
}
.seg2{
  transform: translateX(-80px);
  border-top: 2px dotted var(--stroke);
  border-left: 2px dotted var(--stroke);
  border-top-left-radius: 260px;
}
.seg3{
  transform: translateX(60px);
  border-top: 2px dotted var(--stroke);
  border-right: 2px dotted var(--stroke);
  border-top-right-radius: 260px;
}

/* Nodes on path */
.node{
  position:absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
}

/* Place nodes */
.seg1 .n1{ right: -8px; top: -8px; }
.seg2 .n2{ left: -8px; top: -8px; }
.seg3 .n3{ right: -8px; top: -8px; }

/* Overlay in center */
.textAndCalltoactionOverlay{
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
  padding: 24px 14px;
}

.eyebrow{
  display:inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.12);
  font-weight: 700;
  color: rgba(0,0,0,.72);
  font-size: 13px;
}

.hero-title{
  margin: 0 auto;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.6px;
  max-width: 18ch;
}

.hero-sub{
  margin: 14px auto 0;
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 54ch;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap: wrap;
}

.btn{
  text-decoration:none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  border: 2px solid rgba(0,0,0,.55);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn.primary{
  background: var(--accent);
  color: white;
  border-color: rgba(0,0,0,.7);
  box-shadow: 0 8px 0 rgba(0,0,0,.75);
}
.btn.primary:hover{
  transform: translateY(-2px);
}
.btn.primary:active{
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(0,0,0,.75);
}

.btn.ghost{
  background: rgba(255,255,255,.45);
  color: rgba(0,0,0,.85);
}
.btn.ghost:hover{
  background: rgba(255,255,255,.65);
  transform: translateY(-2px);
}

.scroll-hint{
  margin-top: 22px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  font-size: 13px;
}
.hero-title{
  margin: 0 auto;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.6px;
  max-width: 20ch;
  font-family: ui-serif, Georgia, "Times New Roman", serif; /* like screenshot */
}

.hl{
  position: relative;
  display: inline-block;
  padding: 0 .14em;
  z-index: 0;
}

.hl::before{
  content:"";
  position:absolute;
  left: -0.12em;
  right: -0.12em;
  bottom: .12em;          /* marker sits behind text */
  height: .72em;
  background: rgba(240,100,35,.22);
  border-radius: 6px;
  transform: rotate(-1.5deg);
  z-index: -1;
}

/* optional: make highlight a bit “rough” */
.hl::after{
  content:"";
  position:absolute;
  left:-0.1em;
  right:-0.1em;
  bottom:.12em;
  height:.72em;
  background: rgba(240,100,35,.12);
  border-radius: 6px;
  transform: rotate(1deg);
  z-index: -2;
}

/* ---------------- Responsive tweaks ---------------- */
@media (max-width: 680px){
  .nav-links{ gap: 10px; }
  .nav-links a{ padding: 8px 8px; }
  .seg2{ transform: translateX(-30px); }
  .seg3{ transform: translateX(24px); }
  .pathSeg{ height: 140px; }
}
@media(max-width: 620px){
 .nav{
  width: 98vw;
  justify-content: flex-start;
 }
 .nav-links {
        margin-left: -10px;
 }
 #logo{
  transform: translateX(-30%);
 }
}
*{
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
/* HERO TEXT ANIMATION */
.textAndCalltoactionOverlay{
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  /* animation: heroReveal 2s cubic-bezier(.22,1,.36,1) forwards; */
  animation: heroReveal 2s ease forwards;
}

@keyframes heroReveal{
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Accessibility: motion kam chahiye to */
@media (prefers-reduced-motion: reduce){
  .textAndCalltoactionOverlay{
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.pathSeg{
  animation-name: pathAnimation;
  animation-duration: 2s;
  animation-duration: ease;
  animation-iteration-count: 1;
}

@keyframes pathAnimation{
  from{height: 0px;}
  to{height: 170px;}
}

/* why us css */
/* ===============================
   WHY US (Theme matching: beige + ink + orange)
   NO :root used
   =============================== */

.whyUsWrap{
  margin-top: 200px;
  width: 100%;
  padding: 28px 16px;
  display: flex;
  justify-content: center;
  background: transparent;
}

/* Main Card */
.whyUsCard{
  width: min(1100px, 100%);
  background: #fff7ee; /* warm paper */
  border: 2px solid rgba(29,27,22,0.22);
  border-radius: 22px;

  /* shadow style closer to your hero/button */
  box-shadow:
    0 10px 0 rgba(29,27,22,0.35),
    0 26px 60px rgba(29,27,22,0.12);

  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px;

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whyUsCard:hover{
  transform: translateY(-2px);
  box-shadow:
    0 12px 0 rgba(29,27,22,0.35),
    0 34px 70px rgba(29,27,22,0.16);
}

/* Left Text */
.whyUsText{
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 64ch;
}

.whyLead{
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #1d1b16; /* ink */
}

.whyBody{
  margin: 0;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(29,27,22,0.72);
}

/* warm highlight like your hero text highlight */
.whyBody strong{
  color: #1d1b16;
  font-weight: 800;
  background: linear-gradient(transparent 58%, rgba(242,106,27,0.18) 58%);
  padding: 0 4px;
  border-radius: 6px;
}

/* Right Visual Panel (legend-like box) */
.whyUsVisual{
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(29,27,22,0.22);
  border-radius: 18px;
  padding: 16px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Each row */
.whyItem{
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 12px 12px;
  border-radius: 14px;

  transition: background 0.15s ease, transform 0.15s ease;
}

.whyItem:hover{
  background: rgba(29,27,22,0.04);
  transform: translateY(-1px);
}

/* dots */
.whyDot{
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 999px;
  flex-shrink: 0;
  border: 2px solid rgba(29,27,22,0.20);
}

.whyDot.yellow{
  background: #ffd84d; /* topic */
  border-color: rgba(29,27,22,0.22);
}

.whyDot.dark{
  background: #1f2a3a; /* checkpoint */
  border-color: rgba(255,255,255,0.12);
}

.whyDot.blue{
  background: #2b66ff; /* path/progress */
  border-color: rgba(29,27,22,0.20);
}

.whyItemTitle{
  margin: 0;
  font-size: 14.5px;
  font-weight: 800;
  color: #1d1b16;
}

.whyItemSub{
  margin: 3px 0 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(29,27,22,0.68);
}

/* Mini legend */
.whyMiniLegend{
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(29,27,22,0.03);
  border: 1px dashed rgba(29,27,22,0.25);
}

.whyLine{
  width: 62px;
  height: 6px;
  border-radius: 999px;
  background: #2b66ff;
}

.whyLegendText{
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(29,27,22,0.72);
}

/* =========================================
   RESPONSIVE (tablet + mobile)
   ========================================= */

/* Tablet */
@media (max-width: 980px){
  .whyUsCard{
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 18px;
  }

  .whyUsText{
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 520px){
  .whyUsWrap{
    padding: 20px 12px;
  }

  .whyUsCard{
    border-radius: 18px;
    padding: 18px 14px;
    box-shadow:
      0 8px 0 rgba(29,27,22,0.35),
      0 22px 50px rgba(29,27,22,0.14);
  }

  .whyLead{
    font-size: 18px;
  }

  .whyBody{
    font-size: 14.5px;
    line-height: 1.7;
  }

  .whyUsVisual{
    border-radius: 16px;
    padding: 12px;
  }

  .whyItem{
    padding: 10px 10px;
  }

  .whyDot{
    width: 12px;
    height: 12px;
  }

  .whyLine{
    width: 54px;
    height: 5px;
  }
}
.wrapper{
  width: 100%;
  height: max-content;
   background-color: #F6F9FC;
   margin-top: 200px;
   border-top: 1.5px solid rgba(242, 106, 27, 0.25);

  box-shadow:
    0 -18px 40px rgba(242, 106, 27, 0.08),
    0 -4px 0 rgba(242, 106, 27, 0.10);
}
/* roadmaps section */
/* ===============================
   ROADMAPS SECTION
   Transparent background
   =============================== */

.roadmapsSection{
  padding: 44px 16px 60px;
  background: transparent; /* 🔥 important */
}

/* container */
.roadmapsInner{
  width: min(1100px, 100%);
  margin: 0 auto;
}

/* auto responsive grid */
.roadmapsGrid{
  display: grid;
  gap: 16px;
  row-gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ===============================
   ROADMAP CARD
   =============================== */

.roadmapCard{
  position: relative;
  padding: 16px 18px;
  border-radius: 20px;

  /* subtle glass card (hero ke upar achha lagega) */
  background: var(--accent);
  color: white;
  border-color: rgba(0,0,0,.8);
  box-shadow: 0 8px 0 rgba(0,0,0,.75);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2px;

  cursor: pointer;
  user-select: none;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.roadmapCard:hover{
  transform: translateY(-2px);
  /* transform: scale(0.3); */
  /* background: rgba(255,255,255,0.48);
  border-color: rgba(30,30,30,0.28); */
  box-shadow:
    0 12px 0 rgba(30,30,30,0.35),
    0 30px 60px rgba(30,30,30,0.14);
}

.roadmapCard:hover::before{
  transform: scale(1.12);
}

.roadmapCard:active{
  transform: translateY(2px);
  box-shadow:
    0 8px 0 rgba(30,30,30,0.35),
    0 18px 38px rgba(30,30,30,0.12);
}

/* ===============================
   RESPONSIVE
   =============================== */

/* Tablet */
@media (max-width: 900px){
  .roadmapsGrid{
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .roadmapCard{
    font-size: 15.5px;
    border-radius: 18px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .roadmapsSection{
    padding: 32px 12px 44px;
  }
  .roadmapsGrid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .roadmapCard{
    padding: 14px 14px;
    font-size: 15px;
  }
  .roadmapCard::before{
    width: 14px;
    height: 14px;
    top: 12px;
    right: 12px;
  }
}

/* ===============================
   ROADMAPS HEADING
   =============================== */

.roadmapsHeading{
  text-align: center;
  margin-bottom: 28px;
}

/* small line above (optional but classy) */
.roadmapsEyebrow{
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(29,27,22,0.55);
}

/* main heading */
.roadmapsTitle{
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  color: #1d1b16;
  letter-spacing: -0.4px;
}

/* crispy decorative line */
.roadmapsLine{
  width: 72px;
  height: 6px;
  margin: 14px auto 12px;
  border-radius: 999px;

  background: linear-gradient(
    to right,
    rgba(242,106,27,0),
    #f26a1b,
    rgba(242,106,27,0)
  );
}

/* subtitle */
.roadmapsSub{
  margin: 0;
  font-size: 15.5px;
  color: rgba(29,27,22,0.70);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 900px){
  .roadmapsTitle{
    font-size: 30px;
  }
}

@media (max-width: 520px){
  .roadmapsTitle{
    font-size: 26px;
  }
  .roadmapsLine{
    width: 56px;
    height: 5px;
  }
  .roadmapsSub{
    font-size: 14.5px;
  }
}
.roadmapsHeading{
  margin-top: 80px;
  margin-bottom: 80px;
}
#why-us{
  margin-top: 200px;
  /* margin-bottom: 200px; */
  padding-bottom: 400px;
}

/* roadmap card animation */
.roadmapCard {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 2s ease;
  will-change: transform, opacity;
}

.roadmapCard.inView {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .roadmapCard {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Scroll allow rahega */
body {
  overflow-y: scroll;

  /* Firefox */
  scrollbar-width: none;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  display: none;
}