:root {
    --text: #1e2937;
    --light: #f8fafc;
    --dark: #1e2937;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family:'Poppins',sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

.reveal-card {
  opacity: 0;
   transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.visible {
  opacity: 1;
  transform: none;
}


/* Navbar */

.floating-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  padding: 0 120px;  
  pointer-events: none; /* clicks pass through header background */
}

.floating-nav {
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(53, 69, 199, 0.15);
  pointer-events: all; /* clicks work on nav itself */
  transition: box-shadow 0.3s ease;
}

.floating-nav:hover {
  box-shadow: 0 6px 32px rgba(53, 69, 199, 0.22);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #3545c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.nav-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.25s ease;
}

.nav-link:hover {
  background: #f0f4ff;
  color: #3545c7;
}

.nav-link.active {
  background: #3545c7;
  color: white;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 768px) {
  .floating-header {
    padding: 0 12px;
    top: 10px;
  }

  .floating-nav {
    border-radius: 16px;
    padding: 10px 16px;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0 4px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  /* Hero text fix */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .subtitle {
    min-height: 3em;        /* 2 lines ke liye safe space */
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;        /* text wrap ho sake */
  }
}


/* Hero */
/* Hero — split layout */
.hero {
  min-height: 100vh;
  background: #f0f4ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 60px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #dde4ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  width: fit-content;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
}

.hero-highlight {
  color: #2563eb;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: #475569;
  min-height: 2em;
  margin: 0;
}

/* cursor color dark pe */
.hero .cursor {
  background: #2563eb;
}

.hero .tagline {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  background: transparent;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

/* Right — photo */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  width: 380px;
  height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, #dde4ff, #bfcfff);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  width: 100%;
}

.stat-item {
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: #64748b;
  margin-top: 3px;
}

/* Hero fadeIn animation */
.hero-left {
  animation: fadeUp 0.8s ease;
}

.hero-right {
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-stats {
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-logos {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  width: 100%;
  background: white;
  border-radius: 16px;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  animation: fadeUp 0.8s ease 0.6s both;
}

.logos-label {
  font-size: 11px;
  color: #64748b;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.marketplace-logo {
  height: 36px;
  width: 110px;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.marketplace-logo:hover {
  transform: scale(1.12);  /* sirf zoom in */
}


.marketplace-logo[alt="Amazon"]   { height: 28px; }
.marketplace-logo[alt="Walmart"]  { height: 32px; }
.marketplace-logo[alt="Flipkart"] { height: 36px; }
.marketplace-logo[alt="Meesho"]   { height: 30px; }
.marketplace-logo[alt="Shopify"]  { height: 36px; }
.marketplace-logo[alt="Wayfair"]  { height: 28px; }

.marketplace-logo[alt="Walmart"] { 
  height: 28px;   /* ab normal height kaam karegi */
  width: auto; 
}

@media (max-width: 768px) {
  .hero-logos {
    padding: 1rem 1.5rem;
  }

  .logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }

  .marketplace-logo {
    height: 20px;
    width: 70px;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 5% 40px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-right {
    order: -1; /* photo pehle aaye mobile pe */
  }

  .hero-photo-wrap {
    width: 220px;
    height: 250px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Other Sections */
section { padding: 110px 8%; }
h2 { text-align: center; font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--text); }

.about { background: white; }
.experience { background: #eef4ff; }
.skills { background: #ffffff; }


/* About section */
.about {
  background: white;
  padding: 80px 8%;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left */
.about-left { display: flex; flex-direction: column; gap: 1rem; }

.journey-underline {
  width: 50px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.journey-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  text-align: left !important;
  margin: 0.5rem 0 0;
}

.journey-text {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

.about-quote {
  background: #f0f4ff;
  border-left: 4px solid #2563eb;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-quote-icon {
  color: #2563eb;
  font-size: 1.5rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-quote p {
  font-size: 14px;
  color: #334155;
  line-height: 1.8;
  font-style: italic;
}

/* Right — What I Do Best */
.about-right { display: flex; flex-direction: column; }

.what-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
  text-align: left;
}

.what-underline {
  width: 40px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.what-card {
  background: #f8faff;
  border: 1px solid #e8eeff;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.1);
  border-color: #2563eb;
}

.what-icon {
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.2rem;
  color: #2563eb;
}

.what-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.what-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* Bottom Timeline */
.journey-timeline {
  max-width: 1200px;
  margin: 3rem auto 0;
}


.jt-track { position: relative; }

.jt-line {
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  height: 2px;
  background: #2563eb;
  z-index: 0;
}

.jt-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.jt-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2.5rem;
  position: relative;
}

.jt-dot {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #2563eb;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #2563eb;
}

.jt-icon {
  width: 44px;
  height: 44px;
  background: #eef2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.jt-year {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.2rem;
}

.jt-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.jt-item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jt-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .jt-line { display: none; }
  .jt-dot  { display: none; }
}

/* Experience section */
.experience {
  background: #f0f4ff;
  padding: 80px 8%;
}

.experience h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.exp-underline {
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0 auto 0.5rem;
}

.exp-subtitle {
  text-align: center;
  color: #475569;
  font-size: 15px;
  margin-bottom: 3rem;
}

.exp-wrapper {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left timeline */
.exp-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 1rem;
}

.exp-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.exp-tl-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  z-index: 1;
}

.exp-tl-line {
  width: 2px;
  height: 280px;
  background: linear-gradient(to bottom, #2563eb, #16a34a);
  margin: 0.5rem 0;
}

.exp-tl-date {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  line-height: 1.5;
}

.exp-tl-item:last-child .exp-tl-date {
  color: #15803d;
}

.exp-tl-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 4px;
}

/* Right cards */
.exp-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
}

.exp-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.exp-company-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exp-card-title {
  flex: 1;
}

.exp-card-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.exp-card-title p {
  font-size: 14px;
  color: #64748b;
}

.exp-company {
  color: #2563eb;
  font-weight: 600;
}

.exp-date-badge {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.exp-summary {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.exp-divider {
  border: none;
  border-top: 1px solid #e8eeff;
  margin-bottom: 1rem;
}

.exp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.exp-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.exp-col ul li {
  font-size: 13px;
  color: #475569;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.exp-col ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-size: 8px;
  top: 5px;
}

.exp-col ul.achievements li::before {
  content: '✓';
  color: #16a34a;
  font-size: 11px;
  top: 2px;
}

/* Mobile */
@media (max-width: 768px) {
  .exp-wrapper {
    grid-template-columns: 1fr;
  }

  .exp-timeline-left {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0;
  }

  .exp-tl-line { display: none; }

  .exp-two-col {
    grid-template-columns: 1fr;
  }

  .exp-date-badge {
    margin-left: 0;
  }
}


/* Skills Section */
.skills {
  background: #f8faff;
  padding: 80px 8%;
}

.skills-header {
  text-align: center;
  margin-bottom: 3rem;
}

.skills-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.skills h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.skills-underline {
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.skills-subtitle {
  color: #64748b;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Category Cards */
.skills-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.skill-cat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.scc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.skill-cat-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.scc-underline {
  width: 36px;
  height: 2px;
  border-radius: 2px;
}

.scc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.scc-list li {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}

.scc-list li i {
  font-size: 14px;
  flex-shrink: 0;
}

/* Proficiency */
.scc-proficiency {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.scc-prof-label {
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 5px;
}

.scc-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}

/* Tools Section */
.tools-section {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
}

.tools-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.tools-underline {
  width: 40px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.tools-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.tool-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
  .skills-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-row {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .skills-categories {
    grid-template-columns: 1fr;
  }
}


footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 3.5rem 8%;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: white; /* ya apne color ke hisaab se */
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}


/* Projects Section */
.projects {
  background: #f8faff;
  padding: 80px 8%;
}

.proj-header {
  text-align: center;
  margin-bottom: 3rem;
}

.proj-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.projects h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
  background: none;
  -webkit-text-fill-color: unset;
}

.proj-underline {
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.proj-subtitle {
  color: #64748b;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Wrapper */
.proj-wrapper {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
  align-items: start;
}

/* Left numbers */
.proj-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  gap: 0;
}

.proj-num-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proj-num {
  width: 44px;
  height: 44px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.proj-num-line {
  width: 2px;
  height: 140px;
  background: #bfdbfe;
  margin: 0.5rem 0;
}

/* Cards */
.proj-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.proj-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.proj-card-left {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.proj-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.proj-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.proj-type {
  font-size: 13px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.proj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.proj-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
}

/* Right side */
.proj-card-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
  align-items: flex-start;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.proj-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.proj-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proj-link-btn {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s ease;
}

.proj-link-btn:hover { opacity: 0.7; }

.proj-link-dark {
  color: #0f172a;
}

.proj-link-divider {
  color: #cbd5e1;
  font-size: 16px;
}

/* Values row */
.proj-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
}

.proj-value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.proj-value-icon {
  font-size: 1.3rem;
  color: #ea580c;
  flex-shrink: 0;
  margin-top: 2px;
}

.proj-value-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
}

.proj-value-item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .proj-wrapper {
    grid-template-columns: 1fr;
  }

  .proj-numbers { display: none; }

  .proj-card {
    grid-template-columns: 1fr;
  }

  .proj-card-right {
    min-width: unset;
  }

  .proj-values {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Contact Section */
.contact {
  background: #f8faff;
  padding: 80px 8%;
  text-align: left;
  border-top: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.contact-underline {
  width: 60px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.contact-subtitle {
  color: #64748b;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Split layout */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

/* Left info card */
.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.ci-underline {
  width: 36px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.ci-item:last-of-type { border-bottom: none; }

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-size: 11px;
  color: #0f172a;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ci-value {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.ci-value:hover { text-decoration: underline; }

.ci-quote {
  background: #f8faff;
  border-left: 3px solid #2563eb;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.25rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ci-quote-icon {
  color: #2563eb;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-quote p {
  font-size: 13px;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
}

/* Right form card */
.contact-form-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cf-field {
  position: relative;
}

.cf-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.cf-input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0f172a;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  background: #f8faff;
}

.cf-input:focus {
  border-color: #2563eb;
  background: white;
}

.cf-textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-submit {
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cf-submit:hover {
  background: #1e40af;
  transform: translateY(-2px);
}

.cf-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

/* Social row */
.contact-social {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #e8eeff;
}

.cs-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.4rem;
}

.cs-underline {
  width: 40px;
  height: 2px;
  background: #2563eb;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.cs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem;
  border: 1px solid #e8eeff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-item:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}

.cs-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cs-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.cs-desc {
  font-size: 12px;
  color: #64748b;
}

.cs-arrow {
  margin-left: auto;
  color: #94a3b8;
  font-size: 12px;
}

@media (max-width: 768px) {
  /* Contact inner stack */
  .contact-inner {
    grid-template-columns: 1fr;
  }

  /* Form row stack */
  .cf-row {
    grid-template-columns: 1fr;
  }

  /* Social row fix */
  .cs-row {
    grid-template-columns: 1fr; /* 2 column se 1 column karo */
    gap: 0.75rem;
  }

  .cs-item {
    padding: 0.875rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Contact social box padding fix */
  .contact-social {
    padding: 1.25rem 1rem; /* sides kam karo */
  }

  /* Info card padding fix */
  .contact-info-card,
  .contact-form-card {
    padding: 1.25rem 1rem;
  }

  /* ci-value overflow fix */
  .ci-value {
    font-size: 12px;
    word-break: break-all; /* email overflow nahi karega */
  }

  /* ci-item wrap fix */
  .ci-item {
    flex-wrap: wrap;
  }
}


