body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #1e293b; /* Dark background */
  color: #f1f5f9;       /* Light text */
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f172a; /* Darker navbar */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #f97316; /* Orange */
  font-weight: bold;
  font-size: 22px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #f1f5f9;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f97316; /* Orange hover */
}

.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Setup */
.home-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0f172a;
  color: #ffffff;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Grid Layout */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left: Text */
.home-text h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
}

.home-text .text-primary {
  color: #f97316; /* Orange-500 */
}

.home-text .intro-name {
  font-size: 24px;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.home-text h3 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

.home-buttons .btn-download {
  background-color: #f97316;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.home-buttons .btn-download:hover {
  background-color: #ea580c;
}

/* Right: Image + Animation */
.hero-gradient {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #f97316, #38bdf8);
  position: relative;
  z-index: 1;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Pulse Animations */
.pulse-circle {
  position: absolute;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 0;
}

.top-pulse {
  top: -20px;
  right: -20px;
  width: 64px;
  height: 64px;
  background-color: rgba(251, 191, 36, 0.2); /* yellow-400/20 */
}

.bottom-pulse {
  bottom: -20px;
  left: -20px;
  width: 48px;
  height: 48px;
  background-color: rgba(56, 189, 248, 0.3); /* sky-400/30 */
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .home-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-image-wrapper {
    justify-content: center;
    margin-top: 32px;
  }
}


.about-section {
  padding: 64px 80px;
  background-color: #0f172a;
  color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-skills {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-skill {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-icon {
  font-size: 32px;
  color: #f97316; /* Tailwind's orange-500 equivalent */
}

.about-skill h3 {
  font-size: 20px;
  font-weight: 600;
}

.about-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 16px;
}

.about-text p {
  color: #cbd5e1;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: bold;
  color: #38bdf8; /* sky-400 */
}

.stat-box p {
  font-size: 14px;
  color: #94a3b8;
}


.skills h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.skills-list span {
  background-color: #334155;
  color: #f1f5f9;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}
.projects-section {
  background-color: #0f172a;
  padding: 60px 80px;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.project-card {
  background-color: #1e293b;
  margin-bottom: 40px;
  border-radius: 16px;
  padding: 20px;
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.project-content {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.project-card.reverse .project-content {
  flex-direction: row-reverse;
}

.project-text {
  flex: 1;
  min-width: 280px;
  color: white;
}

.project-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.project-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.project-icon {
  font-size: 26px;
  color: #f97316;
}

.project-text p {
  color: #cbd5e1;
  font-size: 16px;
  margin-bottom: 16px;
}

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

.tech-badge {
  background-color: #334155;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.project-image {
  flex: 1;
  min-width: 280px;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.project-image img:hover {
  transform: scale(1.05);
}


.contact {
  text-align: center;
  padding: 60px 20px;
}

.contact h3 {
  color: #f97316;
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-links a {
  font-size: 32px;
  margin: 0 12px;
  color: #f97316;
  text-decoration: none;
}

.contact-links a:hover {
  color: #fb923c;
}

/* Footer Styling */
footer {
  background-color: #0f172a;
  color: #f1f5f9;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {

  .nav-container,
  .home-container,
  .about-container,
  .projects-section,
  .contact {
    padding: 20px;
  }

  .home-grid,
  .about-grid,
  .project-content {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }

  .home-text h2 {
    font-size: 32px;
  }

  .home-text h3 {
    font-size: 24px;
  }

  .hero-gradient {
    margin: auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-content {
    flex-direction: column !important;
    gap: 16px;
  }

  .project-image img {
    height: auto;
  }

  .about-section,
  .projects-section {
    padding: 40px 20px;
  }

  .skills-list {
    gap: 8px;
  }

  .project-card {
    padding: 16px;
  }
}

