* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #070f24;
  color: white;
  line-height: 1.6;

  opacity: 0;
  animation: fadeIn 1.8s ease forwards;
}

.container {
  width: 75%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
}

/* HERO */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;

  min-height: 80vh;
}

.hero-left {
  max-width: 700px;
}

.small-heading {
  color: #818cf8;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: bold;

  margin-bottom: 25px;
}

.hero-left h1 {
  font-size: 100px;
  line-height: 0.9;

  margin-bottom: 35px;
}

.hero-text {
  font-size: 24px;
  color: #cbd5e1;

  margin-bottom: 35px;
}

/* TECH TAGS */

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 40px;
}

.hero-tags span {
  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(8px);

  padding: 10px 18px;

  border-radius: 999px;

  color: #dbeafe;

  font-size: 14px;

  transition: 0.25s;
}

.hero-tags span:hover {
  transform: translateY(-2px);

  background: rgba(59,130,246,0.15);
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons a,
.project-links a {
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
  );

  color: white;

  padding: 12px 24px;

  border-radius: 14px;

  font-weight: bold;

  border: none;

  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.35);

  transition: 0.25s ease;

  position: relative;
  overflow: hidden;
}

.hero-buttons a:hover,
.project-links a:hover {
  transform: translateY(-3px) scale(1.03);

  box-shadow:
    0 8px 30px rgba(37, 99, 235, 0.55);

  background: linear-gradient(
    135deg,
    #3b82f6,
    #2563eb
  );
}

/* PROFILE IMAGE */

.hero-right img {
  width: 330px;
  height: 420px;

  object-fit: cover;

  border-radius: 24px;

  border: 2px solid rgba(96, 165, 250, 0.7);

  box-shadow:
    0 0 80px rgba(37, 99, 235, 0.35);
}

/* SECTIONS */

section {
  margin-bottom: 140px;
}

section h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

/* CARDS */

.project-card,
.about-card {
  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(12px);

  padding: 35px;

  border-radius: 20px;

  box-shadow:
    0 8px 40px rgba(0,0,0,0.25);

	margin-bottom: 40px;
}

.project-card h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.project-card p,
.about-card p {
  color: #cbd5e1;

  margin-bottom: 20px;

  font-size: 18px;
}

/* PROJECT IMAGES */

.project-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;

  margin-top: 25px;
  margin-bottom: 30px;
}

.project-images img {
  width: 200px;

  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;

  box-shadow:
    0 4px 25px rgba(0,0,0,0.25);
}

.project-images img:hover {
  transform: scale(1.04);
}

/* PROJECT LINKS */

.project-links {
  display: flex;
  gap: 15px;
}

/* FADE IN */

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/*FLASH*/
.shine-text {
    color: white;
    animation: glowPass 1.5s ease-out;
}

@keyframes glowPass {
    0% {
        text-shadow: none;
    }
    10% {
        text-shadow:
            0 0 10px rgba(255,255,255,0.8),
            0 0 20px rgba(255,255,255,0.5);
    }
    100% {
        text-shadow: none;
    }
}


