/* Importing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Inter&display=swap');

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: url('img\WhatsApp Image 2025-07-19 at 14.12.52_d6c51575.jpg') no-repeat center center fixed;
  background-size: cover;
  animation: animatedBackground 30s ease-in-out infinite;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Light Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6); /* light overlay */
  z-index: -2;
}

/* Particles Background Layer */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Animated background movement */
@keyframes animatedBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation Bar */
nav {
  background-color: rgb(252, 252, 252)
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #000;
}

/* Header Section */
header {
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #06a8f3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: #222;
}

.highlight {
  color: #0077cc;
}

.typed-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #00090f;
}

/* Section Styling */
section {
  background-color: rgba(255, 255, 255, 0.9);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

h2 {
  text-align: center;
  color: #0856e6;
  margin-bottom: 1rem;
}

.intro-box {
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
  color: #333;
}

/* Resume Button */
.resume-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background-color: #0077cc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.resume-btn:hover {
  background-color: #005fa3;
}

/* Skills Section */
.skills-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
}

.skills-box span {
  background-color: #f0f8ff;
  color: #e00505;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(231, 15, 15, 0.1);
}

/* Experience & Certificates */
.experience-boxes,
.cert-image-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 1rem;
}

.exp-card img,
.cert-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.exp-card p {
  text-align: center;
  margin-top: 0.5rem;
  color: #444;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0d90ee;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.social-btn i {
  font-size: 1.2rem;
}

.social-btn:hover {
  background-color: #005fa3;
}

/* Contact Section */
#contact p {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  color: #555;
  margin-top: 2rem;
}