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

html {
  scroll-behavior: smooth;
}

body {
  background: #0f172a;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(15, 23, 42, 0.55), rgba(15, 23, 42, 0.75)),
    url("vijender.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #38bdf8;
}

.navbar ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar a {
  color: #e2e8f0;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover {
  color: #38bdf8;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 8%;
}

.glass-card {
  max-width: 720px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeUp 1s ease;
  text-align: center;
}

.profile-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 18px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 12px;
}

h1 span {
  color: #38bdf8;
}

h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #cbd5e1;
  min-height: 40px;
  margin-bottom: 18px;
}

.hero-text {
  color: #e2e8f0;
  max-width: 600px;
  line-height: 1.8;
  margin: 0 auto 26px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.primary {
  background: #38bdf8;
  color: #0f172a;
}

.primary:hover {
  background: #0ea5e9;
}

.secondary {
  border: 1px solid #38bdf8;
  color: #38bdf8;
}

.secondary:hover {
  background: #38bdf8;
  color: #0f172a;
}

.section {
  padding: 90px 8%;
  max-width: 1200px;
  margin: auto;
}

.section h3,
.contact-form-section h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #38bdf8;
}

.section p {
  color: #cbd5e1;
  line-height: 1.8;
}

.grid, .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.card, .project-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  transition: 0.3s;
}

.card:hover, .project-card:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
}

.project-card h4 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact-form-section {
  padding: 90px 8%;
  max-width: 1100px;
  margin: auto;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.form-info, .contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

.form-info p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.contact-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}

.form-status {
  margin-top: 6px;
  color: #7dd3fc;
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 24px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 16px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .glass-card {
    padding: 28px;
  }

  .section {
    padding: 70px 6%;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form .input-group {
    grid-template-columns: 1fr;
  }
}
.contact-form-section {
  padding: 90px 8%;
  max-width: 1100px;
  margin: auto;
}

.contact-form-section h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #38bdf8;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.form-info, .contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

.form-info p {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.contact-form button {
  padding: 14px 20px;
  border: none;
  border-radius: 14px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
}

.form-status {
  margin-top: 6px;
  color: #7dd3fc;
  font-size: 14px;
}

.project-card ul{
    margin-top: 10px;
    padding-left: 25px;
}

.project-card li{
  margin-bottom: 8px;
}

a{
  color: #00cfff;
}

a:hover{
  color: #66e6ff;
}

@media (max-width: 768px) {
  .form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form .input-group {
    grid-template-columns: 1fr;
  }
}