*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0f24;
  color: #e8e8e8;
  text-align: center;
}




/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh; /* Full screen */
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


/* Hero Text */
.hero h1 {
  font-size: 4rem;
  margin-bottom: 5px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Buttons */
.hero-btns a {
  padding: 12px 24px;
  margin: 10px;
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #00eaff;
  color: black;
}

.btn.secondary {
  background: #1f1f1f;
  border: 2px solid #00eaff;
  color: #00eaff;
}

.btn:hover {
  transform: scale(1.1);
}
/* Quote Box */
.quote-box {
  margin-top: 75px; /* pushes it a little down */
  padding: 26px 40px;
  max-width: 720px;
  text-align: center;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.5);
  border-radius: 18px;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 35px rgba(236,72,153,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover movement */
.quote-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(236,72,153,0.3);
}


/* ================= ORBIT FIX ================= */

/* Orbit Section */
.orbit-section {
  height: 160px; /* REDUCED */
  display: flex;
  padding-top: 50px;
  align-items: flex-start; /* IMPORTANT */
  justify-content: center;
  perspective: 1200px;
  margin-top: 35px; /* CLOSE to text */
}

/* Orbit Path */
.orbit-container {
  width: 130px; /* SMALLER */
  height: 130px;
  position: relative;
}

/* Orbit */
.orbit {
  width: 100%;
  height: 100%;
  position: absolute;
  animation: rotateOrbit 14s linear infinite;
  transform-style: preserve-3d;
}


/* Laptop Model */
.laptop {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(15deg);
  transform-style: preserve-3d;
}


/* Screen */
.screen {
  width: 160px;
  height: 100px;
  background: linear-gradient(135deg, #00faff, #0066ff);
  border-radius: 8px;
  box-shadow: 0 0 40px #00faff;
  transform: rotateX(-15deg);
}

/* Keyboard */
.keyboard {
  width: 160px;
  height: 15px;
  background: #111;
  margin-top: 4px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 30px rgba(0,255,255,0.4);
}

/* Animation */
@keyframes rotateOrbit {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}


/* ===== SECTIONS (ABOUT ETC) ===== */
.section {
  min-height: 100vh; /* Looks like new page */
  padding: 120px 20px;
}

/* Section Title */
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


/* Tech Grid */
.tech-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tech-grid span{
  padding: 10px 18px;
  border-radius: 20px;
  background: #1f2937;
  font-size: 1rem;
}

/* Projects */
.projects-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.project-card{
  padding: 20px;
  background: #121826;
  border-radius: 15px;
  transition: transform 0.3s;
}

.project-card:hover{
  transform: translateY(-8px);
  background: #1e2740;
}

/* Footer */
footer{
  padding: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}
/* ===== EDUCATION SECTION ===== */

.education-section {
  padding: 80px 20px;
  background: #111827;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
  color: #ec4899;
}

.education-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Timeline Cards */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-card {
  position: relative;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid #ec4899;
  border-radius: 14px;
  padding: 25px 25px 25px 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(236,72,153,0.25);
}

.timeline-card .icon {
  position: absolute;
  left: 20px;
  top: 25px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-card p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Badges */
.badges {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badges span {
  background: #ec4899;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 999px;
  text-align: center;
}

/* Photo Box */
.photo-box {
  border: 2px solid #ec4899;
  border-radius: 14px;
  padding: 6px;
}

.photo-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .education-wrapper {
    grid-template-columns: 1fr;
  }

  .photo-box {
    max-width: 320px;
    margin: auto;
  }
}
/* ===== TECH STACK SECTION ===== */

.tech-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #111827, #020617);
}

.tech-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #ec4899;
}

.tech-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Tech Card */
.tech-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236, 72, 153, 0.6);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.25);
}

/* Icon */
.tech-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* Title */
.tech-card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #e5e7eb;
}

/* Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tech-tags span {
  background: #710349;
  color: #fab4d0;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.tech-tags span:hover {
  transform: scale(1.08);
}
/* ===== PROJECTS SECTION ===== */

.projects-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b1220, #020617);
}

.projects-title {
  text-align: center;
  font-size: 3rem;
  color: #ec4899;
}

.projects-subtitle {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 60px;
  font-size: 1.1rem;
  opacity: 0.75;
}

/* Grid */
.projects-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
}

/* Card */
.project-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.5);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(236,72,153,0.25);
}

/* Header */
.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-icon {
  font-size: 1.4rem;
}

.project-header h3 {
  font-size: 1.3rem;
}

.project-links span {
  margin-left: 12px;
  opacity: 0.6;
  cursor: pointer;
}

/* Badge */
.project-badge {
  display: inline-block;
  margin: 14px 0;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #ec4899;
  color: #ec4899;
  font-size: 0.75rem;
}

/* Description */
.project-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 16px;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-tags span {
  background: rgba(236,72,153,0.15);
  color: #f9a8d4;
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.project-tags span:hover {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== EXPERIENCE SECTION ===== */

.experience-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #0b1220, #020617);
}

.experience-title {
  text-align: center;
  font-size: 3rem;
  color: #ec4899;
  margin-bottom: 60px;
}

.experience-wrapper {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Card */
.experience-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.5);
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(236,72,153,0.25);
}

/* Header */
.experience-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.experience-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.experience-header h3 {
  font-size: 1.3rem;
}

.org {
  color: #ec4899;
  font-size: 0.95rem;
  margin-top: 2px;
}

/* Meta */
.experience-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.date-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid #ec4899;
  color: #ec4899;
}

.location-badge {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid #ec4899;
  color: #ec4899;
}

/* Text */
.experience-desc {
  margin: 20px 0 10px;
  font-size: 0.95rem;
  opacity: 0.85;
}

.mentor {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 14px;
}

/* Tags */
.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.experience-tags span {
  background: rgba(236,72,153,0.15);
  color: #f9a8d4;
  padding: 6px 14px;
  font-size: 0.75rem;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.experience-tags span:hover {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 600px) {
  .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== CERTIFICATIONS SECTION ===== */

.cert-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #0b1220, #020617);
}

.cert-title {
  text-align: center;
  font-size: 3rem;
  color: #ec4899;
  margin-bottom: 60px;
}

/* Grid */
.cert-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
}

/* Card */
.cert-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.5);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(236,72,153,0.25);
}

/* Left */
.cert-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Icon */
.cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.cert-icon.blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.cert-icon.gold { background: linear-gradient(135deg, #facc15, #ca8a04); }
.cert-icon.pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.cert-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.cert-icon.red { background: linear-gradient(135deg, #f87171, #dc2626); }

/* Text */
.cert-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.cert-year {
  font-size: 0.75rem;
  color: #ec4899;
  border: 1px solid #ec4899;
  padding: 3px 10px;
  border-radius: 999px;
}

/* Ribbon */
.cert-ribbon {
  font-size: 1.3rem;
  opacity: 0.7;
}

.cert-ribbon.pink {
  color: #ec4899;
}

/* Responsive */
@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== HOW I CAN CONTRIBUTE SECTION ===== */

.contribute-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0b1220, #020617);
}

.contribute-title {
  text-align: center;
  font-size: 3rem;
  color: #ec4899;
  margin-bottom: 50px;
}

/* Box */
.contribute-box {
  max-width: 900px;
  margin: auto;
  padding: 40px 50px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.6);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(236,72,153,0.25);
  text-align: center;
}

/* Text */
.contribute-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #e5e7eb;
}

.contribute-box p:last-child {
  margin-bottom: 0;
}

/* Highlights */
.highlight {
  color: #ec4899;
  font-weight: 600;
}

.quote {
  color: #f9a8d4;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .contribute-box {
    padding: 30px 22px;
  }

  .contribute-title {
    font-size: 2.4rem;
  }
}


.contribute-box{
  max-width: 900px;
  margin: auto;
  padding: 40px 50px;
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.6);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(236,72,153,0.25);
  text-align: center;
  transition: transform 0.3s ease; /* ADD */
}

/* Hover movement */
.contribute-box:hover{
  transform: translateY(-8px); /* SAME movement */
}


/* ===== CONNECT WITH ME SECTION ===== */


.connect-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #0b1220, #020617);
}

.connect-title {
  background: linear-gradient(90deg, #ec4899, #e0668f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.connect-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
}

/* Grid */
.connect-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

/* Card */
.connect-card {
  background: radial-gradient(circle at top, #020617, #000000);
  color: #e5e7eb;
  border-radius: 20px;
  padding: 46px 20px;
  text-align: center;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.connect-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.35);
}

/* Icon */
.connect-icon {
  font-size: 1.9rem;
  opacity: 0.65;
  margin-bottom: 16px;
}

/* Text */
.connect-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.connect-card p {
  font-size: 0.95rem;
  opacity: 0.7;
  word-break: break-word;
}

/* Footer */
.connect-footer {
  margin-top: 90px;
  text-align: center;
  font-size: 1.05rem;
  color: #334155;
}

.connect-footer p {
  margin-bottom: 14px;
}



/* Grid */
.projects-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px;
}

/* Card */
.project-card {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid rgba(236,72,153,0.5);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(236,72,153,0.25);
}
