@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  background-color: #0a0a0a; /* Deep black */
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Blob Base Style */
/* Blob Colors */
.blob.purple { background: radial-gradient(circle, #8000ff, transparent); }
.blob.blue { background: radial-gradient(circle, #00ffff, transparent); }
.blob.pink { background: radial-gradient(circle, #ff00ff, transparent); }
.blob.green { background: radial-gradient(circle, #00ff00, transparent); }

/* Specific Positioning */
.blob.top-left { top: 60px; left: 80px; animation-delay: 1s; }
.blob.top-right { top: 100px; right: 120px; animation-delay: 1s; }
.blob.bottom-left { bottom: 130px; left: 400px; animation-delay: 2s; }
.blob.bottom-right { bottom: 70px; right: 140px; animation-delay: 3s; }

/* Floating Animation */
@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(25px, -25px); }
}

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}

/* Navbar */
.navbar { transition: background-color 0.3s ease, backdrop-filter 0.3s ease; }
.navbar-custom { background-color: transparent; }
.navbar-blur {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.nav-link:hover, .nav-link.active {
  color: #8000ff !important;
  background-color: rgba(255, 255, 255, 0.041);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Cursor Blink */
.cursor {
  display: inline-block;
  margin-left: 2px;
  color: #00ffff;
  animation: blink 1.5s steps(1, start) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Fade-in Effect */
body.fade-in-start { opacity: 0; transition: opacity 1.5s ease-in; }
body.fade-in { opacity: 1; }

/* Buttons */
.button-group .btn { border: 1px solid #8000ff; border-radius: 15px; }

.custom-btn {
  border: 2px solid #a020f0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  color: white;
}

.custom-btn:hover {
  border-color: #a020f0;
  background-color: #a020f0;
  box-shadow: 0 0 12px 4px rgba(160, 32, 240, 0.5);
}

.rocket-icon {
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

.custom-btn:hover .rocket-icon {
  animation: rocket-fly 0.6s ease-in-out infinite;
}

@keyframes rocket-fly {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(-5deg); }
  50% { transform: translateY(-4px) rotate(0deg); }
  75% { transform: translateY(-2px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.btn-group .btn.active {
  background-color: #0dcaf0;
  color: #000;
  border-color: #0dcaf0;
}

/* Cards */
.card { transition: transform 0.3s ease; }
.card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 20px #8000ff70;
}

/* Headings */
h2 { color: rgb(177, 177, 177); transition: color 0.3s ease; }

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #00b7ff;
  border: 1px solid black;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Featured Projects */
#featured-projects { position: relative; overflow: hidden; }

/* Background Blobs */
.background-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: blob-zoom 3ms ease-in-out infinite;
  z-index: 0;
}

.background-blob-purple { top: -100px; left: -100px; background-color: hsl(270, 91%, 65%); animation-delay: 3s; }
.background-blob-cyan { top: -100px; right: -100px; background-color: hsl(180, 100%, 50%); }

@keyframes blob-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* Gradient Border */
.gradient-border {
  width: 15%;
  height: 4px;
  background: linear-gradient(to right, cyan, purple);
  border-radius: 2px;
}

/* Text inside inputs */
.form-control {
  color: #ffffff !important; /* force white */
  background-color: #000000; /* keep black background */
  border-color: #333333;     /* subtle gray border */
}

/* Placeholder text */
.form-control::placeholder {
  color: #b0b0b0 !important; /* light gray */
  opacity: 1 !important;
}

.quick-link li a{
  text-decoration: none;
}

.quick-link li a:hover {
 color: #8000ff !important;
}

.github:hover {
  color:#8000ff !important;
}