* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #000000;
  color: #ffffff;
  font-size: 1rem;
  /* background-image: url('IMG_7309.png');  <-- your uploaded image */
  background-size: cover;                   /* makes it fill the screen */
  background-position: center;              /* keeps it centered */
  background-attachment: fixed;             
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 10%;
  background: #000000;
  border-bottom: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  animation: slideRight 0.6s ease forwards;
}

.navbar a {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 28px;
  transition: color 0.2s ease;
  opacity: 0;
  animation: slideTop 0.5s ease forwards;
  animation-delay: calc(0.15s * var(--i));
}

.navbar a:hover {
  color: rgb(68, 69, 69);
}

/* Hero / Home */
.home {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 16px 40px;
  background: transparent;                  /* remove black background here */
}

.home-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
  animation: slideBottom 0.8s ease forwards;
  animation-delay: 0.3s;
}

.home-content h3 {
  font-size: 2.5rem;
  font-weight: 500;
  opacity: 0;
  animation: slideBottom 0.8s ease forwards;
  animation-delay: 0.45s;
}

.home-content p {
  font-size: 2rem;
  line-height: 1.6;
  opacity: 0;
  animation: slideLeft 0.8s ease forwards;
  animation-delay: 0.6s;
}

/* Socials */
.home-sci a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  opacity: 0;
  animation: slideLeft 0.8s ease forwards;
  animation-delay: calc(0.7s + 0.05s * var(--i));
  margin: 20px 10px 0;
}

.home-sci a:hover {
  background: #ffffff;
  color: #000000;
}

/* Experience Section */
.experience {
  max-width: 1100px;
  margin: 56px auto 120px;      /* a bit more top/bottom space */
  padding: 0 16px;
}

.exp-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: #ffffff;
}

.exp-list {
  display: grid;
  gap: 88px;   /* increased spacing between cards */
}

.exp-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2d2c2c;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 28px 28px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  word-spacing: 0.5px;
  margin-bottom: 40px;   /* extra safety margin under each box */
}


.exp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,255,255,0.1);
  border-color: #2a2a2a;
}

.exp-left {
  display: flex;
  gap: 18px;                    /* MORE gap between logo and text */
  align-items: center;
  min-width: 0;
}

/* Logo styling */
.exp-logo {
  width: 52px;                  /* slightly larger logo */
  height: 52px;
  border-radius: 10px;          /* set to 50% for circle */
  object-fit: contain;
  background: #fff;             /* fallback if transparent */
  flex-shrink: 0;
}

/* Text spacing inside the card */
.exp-company {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;          /* MORE space below company */
  letter-spacing: 0.2px;        /* subtle spacing between letters */
  line-height: 1.4;
}

.exp-role {
  font-size: 1.05rem;
  color: #e5e5e5;
  margin-bottom: 8px;           /* space below role */
  letter-spacing: 0.15px;
  line-height: 1.6;             /* MORE line height for readability */
}

.exp-sub {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 8px;           /* space below blurb */
  line-height: 1.6;
}

.exp-dates {
  font-size: 0.95rem;
  color: #bbbbbb;
  margin-top: 6px;              /* space above dates if wrapped */
  letter-spacing: 0.15px;
}

/* Animations */
@keyframes slideRight { 0% { transform: translateX(-24px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes slideLeft  { 0% { transform: translateX(24px);  opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes slideTop   { 0% { transform: translateY(-24px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes slideBottom{ 0% { transform: translateY(24px);  opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* Responsive */
@media (max-width: 720px) {
  .exp-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .exp-right { margin-left: 0; }
}
