.hero {
  background: #f98e4a; /* your theme color */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.hero-img {
  mix-blend-mode: multiply;
  filter: brightness(0) invert(1); /* optional: makes whites transparent */
  max-width: 600px;
}

/* Hide default scrollbar */
::-webkit-scrollbar {
  display: none;
}
body {
  overflow-y: scroll;
}

/* Custom scrollbar track */
#iron-scrollbar {
  position: fixed;
  right: 10px;
  top: 0;
  width: 6px;
  height: 100%;
  background: rgba(183, 28, 28, 0.3); /* Iron Man red glow */
  border-radius: 10px;
}

/* Scroll thumb */
#iron-scroll-thumb {
  position: absolute;
  top: 0;
  width: 6px;
  height: 80px;
  background: linear-gradient(to bottom, #ffd700, #b71c1c); /* gold → red */
  border-radius: 10px;
}

/* Sparks container */
#sparks {
  position: fixed;
  right: 20px;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(1px);
}

/* Timeline Experience Section */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0 2rem 2.5rem;
  max-width: 600px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #facc15;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-icon {
  position: absolute;
  left: -6px;
  top: 0;
  width: 32px;
  height: 32px;
  background: #fff;
  border: 3px solid #facc15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #facc15;
  z-index: 1;
}
.timeline-content {
  background: #fffbe9;
  border-radius: 8px;
  padding: 1.2rem 1.5rem 1.2rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.timeline-content .company-name {
  font-weight: bold;
  font-size: 1.1rem;
  color: #f59e42;
}
.timeline-content .job-title {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.2rem;
}
.timeline-content .job-duration {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.timeline-content .job-description ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
  list-style: disc;
}
.timeline-content .job-description li {
  margin-bottom: 0.3rem;
  font-size: 0.97rem;
}
.timeline-content .tech-tag {
  display: inline-block;
  background: #facc15;
  color: #fff;
  border-radius: 12px;
  padding: 0.2rem 0.8rem;
  font-size: 0.85rem;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
}
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Work+Sans&display=swap");

body {
  font-family: "Work Sans", sans-serif;
  /* font-family: 'Merriweather', serif; */
  --color-text: #0f070a;
  --color-bg: #fabd69;
  --color-bg-2: #f98e4a;
  --color-link: #317bd0;
  --color-link-hover: #317bd0;
  /* background: radial-gradient(
    ellipse at 100% 0,
    #fed96f 0,
    var(--color-bg) 50%,
    var(--color-bg-2) 115%
  ); */
  background: linear-gradient(135deg, #b71c1c 0%, #a80000 35%, #f4c542 100%);
  overflow-x: hidden;
}

#header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
  z-index: 1;
}

#header > div {
  position: relative;
  z-index: 2;
}

.ironman-title {
  color: #ffd700; /* Gold */
  text-shadow: 0 0 10px #a80000, 0 0 20px #a80000;
}

.ironman-subtitle {
  color: #ffd700; /* Arc reactor cyan */
  text-shadow: 0 0 12px #00e5ff, 0 0 24px #00e5ff;
}

h1,
h2,
.font-marker {
  font-family: "Permanent Marker", cursive;
  /* font-family: 'Work Sans', sans-serif; */
}

.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

/* header */
#header {
  mix-blend-mode: multiply;
}
.container-fluid {
  padding-top: 5%;
  font-family: "zantrokeregular", serif;
}

@media (min-width: 768px) {
  .md\:bg-fixed {
    background-attachment: fixed;
  }
}

.bg-center {
  background-position: center;
}

.bg-cover {
  background-size: cover;
}

.items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.h-screen {
  height: 100vh;
}

.flex {
  display: flex;
}

.relative {
  position: relative;
}

/* text */
.tracking-wider {
  letter-spacing: 0.05em;
  color: #00e5ff; /* Arc reactor glow */
  text-shadow: 0 0 10px #00e5ff, 0 0 20px #00e5ff;
}

.font-bold {
  font-weight: 700;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.md\:ml-6 {
  margin-left: 1.5rem;
}

.text-center {
  text-align: center;
}

.z-10 {
  z-index: 10;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(34 34 34 / var(--tw-text-opacity));
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.ml-px {
  margin-left: 1px;
}

/* next div */
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.justify-center {
  justify-content: center;
}

.min-h-screen {
  min-height: 60vh;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.projects__project {
  display: flex;
  justify-content: space-evenly;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.grid {
  display: grid;
}

@media (min-width: 920px) {
  .container {
    max-width: 920px;
  }
}

@media (min-width: 720px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 768px) {
  .md\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 768px) {
  .md\:-ml-4 {
    margin-left: -1rem;
  }
}

.uppercase {
  text-transform: uppercase;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.bg-yellow-400 {
  background: linear-gradient(145deg, #ffd700 0%, #f4c542 50%, #e6b800 100%);
  --tw-bg-opacity: 1;
  color: #1a1a1a; /* Dark text for contrast */
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.inline-block {
  display: inline-block;
}

.mb-4 {
  margin-bottom: 1rem;
}

.leading-loose {
  line-height: 2;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.rounded-full {
  border-radius: 9999px;
}

/* technologies */
@media (min-width: 768px) {
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:col-start-3 {
    grid-column-start: 3;
  }
}

@media (min-width: 768px) {
  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}
.gap-8 {
  gap: 2rem;
}
.pt-5 {
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .md\:col-start-2 {
    grid-column-start: 3;
  }
}

/* images */
.techimg {
  height: 5rem;
  width: 5rem;
  margin: 20px;
  transition: transform 1s;
}

.techimg:hover {
  transform: scale(1.3);
}

/* footer */

.rotate-2 {
  rotate: -5deg;
}

@media (min-width: 768px) {
  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.mt-32 {
  margin-top: 8rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .md\:pb-0 {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

@media (min-width: 768px) {
  .md\:text-left {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 768px) {
  .md\:order-1 {
    order: 1;
  }
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.order-2 {
  order: 2;
}

/* span */

@media (min-width: 1024px) {
  .lg\:inline-block {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

/* second div of footer */

@media (min-width: 768px) {
  .md\:mb-0 {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .md\:order-2 {
    order: 2;
  }
}

.p-6 {
  padding: 1.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}
.order-1 {
  order: 1;
}

.left {
  text-align: left;
}

/* icon */
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.social > a {
  margin: 10px;
  text-decoration: none;
}

/* gif */
.gif-img {
  height: 200px;
  width: 200px;
}

.pricing-colom {
  padding: 3% 2%;
}
