.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 100px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.grid-container::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(250, 100, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.grid-container::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 100, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.left-side-pic {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s ease both;
}

.left-side-pic::before {
  content: '';
  position: absolute;
  top: -12px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-top: 3px solid rgb(250, 100, 0);
  border-right: 3px solid rgb(250, 100, 0);
  z-index: 2;
  box-shadow: 4px -4px 16px rgba(250, 100, 0, 0.3);
}

.left-side-pic::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid rgb(250, 100, 0);
  border-left: 3px solid rgb(250, 100, 0);
  z-index: 2;
  box-shadow: -4px 4px 16px rgba(250, 100, 0, 0.3);
}

.left-side-pic img {
  width: 100%;
  max-width: 440px;
  height: 540px;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(10%) contrast(1.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}

.left-side-pic img:hover {
  transform: translateY(-10px) scale(1.01);
  filter: grayscale(0%) contrast(1.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9),
              0 0 40px rgba(250, 100, 0, 0.1);
}

.righ-side-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.righ-side-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.righ-side-text h2 span {
  color: rgb(250, 100, 0);
  text-shadow: 0 0 40px rgba(250, 100, 0, 0.4);
}

.righ-side-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 20px;
  border-left: 1px solid rgba(250, 100, 0, 0.2);
  transition: border-color 0.3s ease;
}

.righ-side-text p:hover {
  border-left-color: rgba(250, 100, 0, 0.7);
}


/* === Skills section === */
.skills-section {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  padding: 0 100px;
}

.skills-header {
  margin-bottom: 40px;
}

.skills-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgb(250, 100, 0);
  margin-bottom: 10px;
}

.skills-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  text-shadow: 0 0 60px rgba(250, 100, 0, 0.3);
  margin: 0;
  line-height: 1;
}

.skills-title span {
  color: rgb(250, 100, 0);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:nth-child(1) { animation: fadeUp 0.7s 0.1s ease both; }
.skill-card:nth-child(2) { animation: fadeUp 0.7s 0.2s ease both; }
.skill-card:nth-child(3) { animation: fadeUp 0.7s 0.3s ease both; }

.skill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 100, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-card:hover {
  border-color: rgba(250, 100, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(250, 100, 0, 0.1);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.skill-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
  z-index: 1;
}


/* === Responsive === */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    gap: 48px;
  }

  .left-side-pic::before,
  .left-side-pic::after { display: none; }

  .left-side-pic img {
    max-width: 100%;
    height: 340px;
  }

  .righ-side-text { text-align: center; }
  .righ-side-text p { border-left: none; padding-left: 0; }
  .divider { margin: 0 auto; }

  .skills-section {
    padding: 0 30px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }
}


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