* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*body, html {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  background: #0e0e1a;
  color: white;
}
*/
body, html {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  color: white;

  background: linear-gradient(-45deg,
    #B2C8B2,   /* 🌿 light sage green */
    #FF5F6D,   /* 🔴 soft red */
    #1e1b2e,   /* deep navy */
    #3a1f64,   /* royal purple */
    #A3B9A3,   /* muted sage */
    #FF7373,   /* soft coral red */
    #1f3244    /* slate blue */
  );
  background-size: 500% 500%;
  animation: gradientShift 25s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}






canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Gradient Blobs */
.blob-container {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(127,90,240,0.7), rgba(44,182,125,0.4));
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  animation: move1 20s ease-in-out infinite alternate;
}

.blob.second {
  left: 70%;
  top: 30%;
  background: radial-gradient(circle, rgba(255,216,3,0.5), rgba(239,69,101,0.3));
  animation: move2 25s ease-in-out infinite alternate;
}

.blob.third {
  left: 30%;
  top: 75%;
  background: radial-gradient(circle, rgba(0,255,255,0.4), rgba(127,90,240,0.3));
  animation: move3 22s ease-in-out infinite alternate;
}

@keyframes move1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-80px, -60px) rotate(360deg); }
}
@keyframes move2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, -40px) rotate(360deg); }
}
@keyframes move3 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -80px) rotate(360deg); }
}

.overlay {
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}

.content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  animation: fadeInDown 1.5s ease-out;
}

.content p.typing {
  font-size: 1.3em;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink 0.8s step-end infinite;
}

@keyframes typing {
  to { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.loader {
  margin-top: 30px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* Contact */
.contact-info {
  margin-top: 50px;
  font-size: 0.95em;
  color: #ddd;
  animation: fadeInUp 2s ease forwards;
}
.contact-info p {
  margin: 6px 0;
}
.contact-info i {
  margin-right: 8px;
  color: #fff;
}

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