/* ================= JOIN SECTION ================= */

.join-section {
    padding: 90px 10%;
    background:linear-gradient(180deg,#ffffff,#fff9ec);
}

.join-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT SIDE */

.join-steps {
    flex: 1;
}

.join-steps h2 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
}

.join-steps h2 span {
    color: #f4b400;
}

.subtitle {
    color: #777;
    font-size: 20px;
    margin-bottom: 30px;
}

.steps-list {
    list-style: none;
    padding: 10;
}

.steps-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 35px;
    font-size: 19px;
    color: #444;
    transition: all 1.8s ease;
}

/* Number Circle */

.steps-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #e5e5e5;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 22px;
    font-weight: 600;
}

.steps-list {
    counter-reset: step;
}

/* Active Step */

.steps-list li.active {
    font-weight: 600;
    color: #f4b400;
}

.steps-list li.active::before {
    background: #f4b400;
    color: #000;
}

/* ================= SILVER IPHONE ================= */

.phone-frame {
    position: relative;
    width: 295px;
    height: 580px;
    border-radius: 45px;
    padding: 10px;

    background: linear-gradient(
        145deg,
    
       #333333
    );

    box-shadow:
        0 25px 60px rgba(0,0,0,0.25),
        inset 0 0 8px rgba(255,255,255,0.8),
        inset 0 0 12px rgba(0,0,0,0.1);

    transition: transform 0.4s ease;
}

/* Hover animation */

.phone-frame:hover {
    transform: translateY(-10px);
}

/* Screen */

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 35px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.phone-screen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Notch */

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 20px;
    background: #333333;
    border-radius: 15px;
    z-index: 10;
}

/* Responsive */

@media(max-width: 992px) {

    .join-container {
        flex-direction: column;
        text-align: center;
    }

    .phone-frame {
        margin-top: 50px;
    }

}


/* Smooth fade animation */
.phone-screen img {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hidden state */
.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

/* Active step animation */
.steps-list li {
  cursor: pointer;
  transition: all 0.6s ease;
}

.steps-list li:hover {
  transform: translateX(5px);
}

/* Progress line (optional premium look) */
.steps-list li::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 35px;
  width: 2.5px;
  height: 100%;
  background: #eee;
}

.steps-list li:last-child::after {
  display: none;
}










/* STARTUP ROADMAP */

.startup-roadmap{
padding:80px 20px;
background:linear-gradient(180deg,#fff9ec,#ffffff);
}

/* header */

.roadmap-header{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:60px;
}

.roadmap-header h2{
font-size:40px;
margin-bottom:15px;
font-weight:700;
}

.roadmap-header p{
color:#666;
line-height:1.6;
font-size:17px;
}


/* container */

.roadmap-container{
max-width:1000px;
margin:auto;
position:relative;
}


/* timeline line */

.timeline-line{
position:absolute;
left:90px;
top:0;
bottom:0;
width:4px;
background:linear-gradient(#f4b400,#e2a500);
}


/* item */

.roadmap-item{
display:flex;
align-items:flex-start;
margin-bottom:80px;
position:relative;
}


/* year badge */

.roadmap-year{
min-width:85px;
height:45px;
background:#f4b400;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:8px;
font-weight:600;
margin-right:35px;
font-size:20px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}


/* timeline dot */

.roadmap-item::before{
content:"";
position:absolute;
left:82px;
top:18px;
width:18px;
height:18px;
background:#f4b400;
border-radius:50%;
}


/* card */

.roadmap-card{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 12px 35px rgba(0,0,0,0.06);
transition:all 0.35s ease;
flex:1;
}

.roadmap-card h3{
font-size:20px;
margin-bottom:12px;
}

.roadmap-card p{
color:#666;
line-height:1.6;
margin-bottom:10px;
}
.roadmap-header span{
color:#f4b400;
}

/* hover animation */

.roadmap-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.12);
}


/* scroll reveal animation */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}


/* responsive */

@media(max-width:768px){

.timeline-line{
left:30px;
}

.roadmap-item{
flex-direction:column;
padding-left:60px;
}

.roadmap-year{
margin-bottom:10px;
}

.roadmap-item::before{
left:22px;
}

}



.why-row {
  padding: 120px 20px;
  background:linear-gradient(180deg,#ffffff,#fff9ec);
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.why-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.why-header h2 {
  font-size: 44px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.5px;
}

.why-header span {
  color: #f4b400;
}

.why-header p {
  font-size: 18px;
  color: #6b7280;
  margin-top: 12px;
}

/* GRID (STRAIGHT LINE) */
.why-row-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;

  border: 1px solid #f1f1f1;
  transition: all 0.35s ease;
}

/* HOVER PREMIUM EFFECT */
.why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: #f4b40033;
}

/* ICON */
.why-box i {
  width: 45px;
  height: 45px;
  color: #f4b400;
  margin-bottom: 20px;
}

/* TITLE */
.why-box h3 {
  font-size: 20px;
  color: #111827;
  font-weight: 600;
  margin-bottom: 15px;
  
}

/* HIGHLIGHT */
.why-box h4 {
  font-size: 20px;
  color: #f4b400;
  margin: 6px 0;
  font-weight: 600;
}

/* TEXT */
.why-box p {
  font-size: 16px;
  color: #6b7280;
  line-height:20px;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-row-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 32px;
  }
}


.offer-section {
  padding: 130px 20px;
  background:linear-gradient(180deg,#fff9ec,#ffffff);
  font-family: 'Inter', sans-serif;
  text-align: center;
}

/* HEADER */
.offer-header {
  max-width: 700px;
  margin: 0 auto 70px;
}

.offer-header h2 {
  font-size: 44px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.5px;
}

.offer-header p {
  font-size: 18px;
  color: #6b7280;
  margin-top: 12px;
}

/* GRID */
.offer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.offer-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;

  border: 1px solid #f1f1f1;
  transition: all 0.4s ease;
}

/* IMAGE */
.offer-img {
  overflow: hidden;
}

.offer-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* CONTENT */
.offer-content {
  padding: 25px;
}

.offer-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.offer-content h4 {
  font-size: 18px;
  color: #f4b400;
  margin: 8px 0;
}

.offer-content p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* HOVER EFFECT */
.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.offer-card:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-header h2 {
    font-size: 32px;
  }
}

.offer-ultra {
  padding: 140px 20px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  font-family: 'Inter', sans-serif;
  text-align: center;
  position: relative;
}

/* HEADER */
.offer-head {
  max-width: 700px;
  margin: 0 auto 80px;
}

.offer-head h2 {
  font-size: 46px;
  font-weight: 600;
  color: #111827;
}

.offer-head p {
  font-size: 18px;
  color: #6b7280;
  margin-top: 10px;
}

/* GRID */
.offer-ultra-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.offer-ultra-card {
  position: relative;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.5s ease;
}

/* IMAGE */
.offer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* DARK GRADIENT OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* CONTENT */
.offer-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
  text-align: left;
  transition: 0.4s;
}

.offer-info h3 {
  font-size: 22px;
  font-weight: 600;
}

.offer-info p {
  font-size: 14px;
  opacity: 0.85;
  margin: 8px 0;
}

.offer-info span {
  font-size: 14px;
  color: #f4b400;
  opacity: 0;
  transition: 0.3s;
}

/* HOVER MAGIC */
.offer-ultra-card:hover img {
  transform: scale(1.1);
}

.offer-ultra-card:hover .offer-info span {
  opacity: 1;
}

.offer-ultra-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.15);
}

/* GLOW BORDER */
.offer-ultra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #f4b400, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.offer-ultra-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .offer-ultra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-ultra-grid {
    grid-template-columns: 1fr;
  }

  .offer-head h2 {
    font-size: 32px;
  }
}







.about-ultra {
  padding: 100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND GLOW */
.about-ultra::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent);
  top: 10%;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(100px);
  z-index: 0;
}

/* CONTAINER */
.about-wrap {
  max-width: 920px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ITEM */
.about-item {
  margin-bottom: 90px;
}

/* PILL LABEL */
.about-pill {
  display: inline-block;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;

  border-radius: 30px;

  background: rgba(245,158,11,0.1);
  color: #f59e0b;

  margin-bottom: 25px;
}

/* TEXT */
.about-item p {
  font-size: 22px;
  line-height: 1.9;
  color: #374151;
   font-weight: 400;
   
   letter-spacing: 0.8px;
}

/* HIGHLIGHT TEXT */
.highlight {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* DIVIDER */
.about-divider {
  width: 140px;
  height: 2px;
  margin: 0 auto 80px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

/* HOVER MICRO EFFECT */
.about-item:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-item p {
    font-size: 17px;
  }
}




