*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
  color:#111827;
  overflow-x:hidden;
}

/* ================= NAVBAR ================= */
.navbar{
  position:fixed;
  top:0;
  width:100%;
  padding:18px 50px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.5);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:24px;
  font-weight:800;
}

.logo i{
  color:#6366f1;
}

.navbar nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.navbar nav a{
  text-decoration:none;
  color:#374151;
  font-size:15px;
  font-weight:500;
  transition:.2s;
}

.navbar nav a:hover{
  color:#6366f1;
}

.navbar nav button{
  border:none;
  background:#6366f1;
  color:white;
  padding:11px 18px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:.25s;
}

.navbar nav button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(99,102,241,.25);
}


/* ================= HERO ================= */
.hero{
  min-height:100vh;
  padding:130px 60px 70px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:55px;
  align-items:center;
  background:
  radial-gradient(circle at top right,#c4b5fd 0%,transparent 30%),
  radial-gradient(circle at left,#93c5fd 0%,transparent 25%),
  #f8fafc;
}

.badge{
  display:inline-block;
  background:#eef2ff;
  color:#4f46e5;
  padding:10px 16px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  margin-bottom:18px;
}

.hero-left h1{
  font-size:62px;
  line-height:1.08;
  font-weight:800;
}

.hero-left p{
  margin-top:18px;
  color:#4b5563;
  font-size:18px;
  max-width:560px;
  line-height:1.7;
}

.hero-btns{
  display:flex;
  gap:15px;
  margin-top:28px;
}

.primary,
.secondary{
  border:none;
  padding:14px 24px;
  border-radius:14px;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  transition:.25s;
}

.primary{
  background:#6366f1;
  color:white;
}

.secondary{
  background:white;
  color:#111827;
  border:1px solid #e5e7eb;
}

.primary:hover,
.secondary:hover{
  transform:translateY(-3px);
}

/* HERO STATS */
.hero-stats{
  display:flex;
  gap:18px;
  margin-top:35px;
  flex-wrap:wrap;
}

.hero-stats div{
  background:white;
  padding:16px 20px;
  border-radius:18px;
  min-width:130px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.hero-stats h3{
  font-size:24px;
}

.hero-stats span{
  font-size:13px;
  color:#6b7280;
}


/* ================= HERO RIGHT NEW ================= */
.hero-right{
  display:flex;
  justify-content:center;
}

.resume-preview{
  width:100%;
  max-width:430px;
  background:white;
  border-radius:28px;
  padding:28px;
  box-shadow:0 30px 70px rgba(0,0,0,.10);
  animation:floatCard 3s ease-in-out infinite;
  position:relative;
}

.resume-top{
  display:flex;
  gap:16px;
  align-items:center;
}

.avatar{
  width:68px;
  height:68px;
  border-radius:50%;
  background:linear-gradient(135deg,#6366f1,#8b5cf6);
}

.lines{
  flex:1;
}

.lines span{
  display:block;
  height:12px;
  background:#e5e7eb;
  border-radius:20px;
  margin-bottom:10px;
}

.lines .small{
  width:60%;
}

.resume-section{
  margin-top:24px;
}

.resume-section h4{
  font-size:15px;
  margin-bottom:12px;
  color:#374151;
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.chips span{
  background:#eef2ff;
  color:#4f46e5;
  padding:8px 12px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

.bar{
  height:12px;
  background:#dbeafe;
  border-radius:20px;
  margin-bottom:10px;
}

.bar.short{
  width:65%;
}

.badge-hired{
  position:absolute;
  top:-15px;
  right:-10px;
  background:#10b981;
  color:white;
  padding:10px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
  box-shadow:0 10px 20px rgba(16,185,129,.25);
}

.badge-hired i{
  margin-right:6px;
}

@keyframes floatCard{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-10px);}
}


/* ================= FEATURES ================= */
.features{
  padding:90px 60px;
  text-align:center;
}

.features h2{
  font-size:40px;
}

.sub{
  margin-top:10px;
  color:#6b7280;
}

.feature-grid{
  margin-top:45px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  background:white;
  padding:28px;
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px);
}

.card i{
  font-size:30px;
  color:#6366f1;
  margin-bottom:18px;
}

.card h3{
  font-size:20px;
}

.card p{
  margin-top:10px;
  color:#6b7280;
  line-height:1.6;
}


/* ================= ABOUT ================= */
.about{
  padding:0 60px 80px;
}

.about-box{
  background:linear-gradient(135deg,#111827,#1f2937);
  color:white;
  border-radius:28px;
  padding:45px;
  text-align:center;
}

.about-box h2{
  font-size:38px;
}

.about-box p{
  max-width:700px;
  margin:15px auto 0;
  color:#d1d5db;
  line-height:1.8;
}


/* ================= FOOTER ================= */
footer{
  background:#111827;
  color:white;
  text-align:center;
  padding:22px;
  font-size:14px;
}


/* ================= RESPONSIVE ================= */
@media(max-width:1100px){

  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-left p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-btns,
  .hero-stats{
    justify-content:center;
  }

  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:760px){

  .navbar{
    padding:15px 20px;
  }

  .navbar nav a{
    display:none;
  }

  .hero{
    padding:120px 20px 50px;
  }

  .hero-left h1{
    font-size:42px;
  }

  .features,
  .about{
    padding-left:20px;
    padding-right:20px;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .hero-stats{
    justify-content:center;
  }

  .resume-preview{
    max-width:100%;
  }
}