@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --dark: #080716;
  --dark-soft: #111024;
  --white: #ffffff;
  --text: #d9d7e8;
  --muted: #9b97b7;
  --purple: #7b2ff7;
  --pink: #f857a6;
  --orange: #ff7a18;
  --yellow: #ffd84d;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(123, 47, 247, 0.22), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(255, 122, 24, 0.16), transparent 30%),
    linear-gradient(135deg, #080716 0%, #0d0b1e 45%, #070613 100%);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 28px 0;
  background: transparent;
}

.nav-container {
  width: min(1180px, 92%);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 18px 34px;
  border-radius: 80px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -7px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  transition: 0.3s ease;
  border-radius: 20px;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  border: none;
  background: var(--glass);
  color: white;
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  cursor: pointer;
}

/* HERO */

.hero {
  padding: 165px 0 20px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: var(--purple);
  top: 18%;
  left: 6%;
}

.glow-two {
  width: 320px;
  height: 320px;
  background: var(--orange);
  bottom: 10%;
  right: 8%;
}

/* HERO IMAGE */

.hero-image-area {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  transform: translate(-60px, -35px);
}

.profile-card {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  padding: 7px;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange), var(--yellow));
  box-shadow:
    0 30px 90px rgba(123, 47, 247, 0.35),
    0 0 80px rgba(248, 87, 166, 0.18);
  position: relative;
  z-index: 3;
  animation: floatImage 5s ease-in-out infinite;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123,47,247,0.4), rgba(255,122,24,0.35));
  filter: blur(26px);
  z-index: -1;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 8px solid #111024;
}

.image-orbit {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  animation: rotateOrbit 16s linear infinite;
}

.image-orbit::before,
.image-orbit::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 0 28px rgba(248, 87, 166, 0.9);
}

.image-orbit::before {
  top: 35px;
  left: 60px;
}

.image-orbit::after {
  bottom: 40px;
  right: 70px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  animation: floatCard 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card i {
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

/* DESKTOP FLOATING POSITIONS */

.card-one {
  top: 95px;
  left: 5px;
}

.card-two {
  bottom: 135px;
  left: 355px;
  animation-delay: 1.2s;
}

.card-three {
  top: 15px;
  right: 150px;
  animation-delay: 0.6s;
}

.card-four {
  bottom: 25px;
  left: 135px;
  animation-delay: 1.6s;
}

.card-five {
  top: 200px;
  right: -35px;
  animation-delay: 2.2s;
}

.card-six {
  bottom: 270px;
  right: 350px;
  animation-delay: 2.8s;
}

.card-seven {
  bottom: 140px;
  right: 300px;
  animation-delay: 2.8s;
}

.card-eight {
  top: 85px;
  right: -35px;
  animation-delay: 2.2s;
}

/* HERO CONTENT */

.hero-content {
  max-width: 650px;
}

.mini-title {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 60px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 34px;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--white), var(--pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-content p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
  max-width: 610px;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  transition: 0.3s ease;
}

.hero-tags span:hover {
  transform: translateY(-4px);
  color: white;
  border-color: rgba(248, 87, 166, 0.45);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.35s ease;
}

.primary-btn {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  box-shadow: 0 18px 45px rgba(248, 87, 166, 0.28);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-5px);
}

.secondary-btn {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}

/* PROJECTS */

.portfolio-projects {
  position: relative;
  padding: 0 0 120px;
  overflow: hidden;
}

.portfolio-projects::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(123, 47, 247, 0.18);
  filter: blur(100px);
  left: -130px;
  top: 120px;
  z-index: 0;
}

.portfolio-projects::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.15);
  filter: blur(100px);
  right: -120px;
  bottom: 70px;
  z-index: 0;
}

.portfolio-projects-container {
  width: min(1180px, 92%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.portfolio-section-header {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.portfolio-section-badge {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 12px 22px;
  border-radius: 80px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin: 0 auto 18px;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.24),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.portfolio-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.portfolio-project-card {
  position: relative;
  min-height: 310px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.34),
    inset 0 1px 1px rgba(255,255,255,0.06);
  transition: 0.35s ease;
}

.portfolio-project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 87, 166, 0.42);
}

.portfolio-project-cover {
  height: 185px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(123,47,247,0.4), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.portfolio-project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: 0.45s ease;
}

.portfolio-project-card:hover .portfolio-project-cover img {
  transform: scale(1.08);
  opacity: 1;
}

.portfolio-project-body {
  padding: 21px;
}

.portfolio-project-type {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 13px;
}

.portfolio-project-body h3 {
  font-size: 21px;
  letter-spacing: -0.4px;
  margin-bottom: 9px;
}

.portfolio-project-body p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  min-height: 44px;
}

.portfolio-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.portfolio-project-status {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-project-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-project-website,
.portfolio-project-btn {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  cursor: pointer;
}

.portfolio-project-website {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.portfolio-project-btn {
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  box-shadow: 0 15px 38px rgba(248, 87, 166, 0.24);
}

/* ANIMATIONS */

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0) rotateY(-4deg);
  }
  50% {
    transform: translateY(-18px) rotateY(4deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes mobileMenuOpen {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* TABLET */

@media (max-width: 950px) {
  .navbar {
    position: absolute;
    padding: 18px 0;
  }

  .nav-container {
    width: 100%;
    padding: 0 18px;
    justify-content: flex-end;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    right: 18px;
    left: auto;
    width: 230px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(13, 11, 30, 0.96);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-12px);
    opacity: 0;
  }

  .nav-menu.active {
    display: flex;
    animation: mobileMenuOpen 0.28s ease forwards;
  }

  .hero {
    min-height: auto;
    padding: 115px 0 70px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .hero-image-area {
    order: -1;
    height: 460px;
    width: 100%;
    transform: none;
    overflow: visible;
  }

  .profile-card {
    width: 285px;
    height: 285px;
  }

  .image-orbit {
    width: 350px;
    height: 350px;
  }

  .floating-card {
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 15px;
  }

  .card-one {
    top: 85px;
    left: 12%;
  }

  .card-two {
    bottom: 98px;
    left: auto;
    right: 9%;
  }

  .card-three {
    top: 20px;
    right: 25%;
  }

  .card-four {
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-five {
    top: 210px;
    right: 4%;
  }

  .card-six {
    bottom: 285px;
    right: auto;
    left: 4%;
  }

  .card-seven {
    bottom: 135px;
    right: auto;
    left: 5%;
  }

  .card-eight {
    top: 95px;
    right: 5%;
  }

  .hero-content {
    margin: auto;
  }

  .mini-title {
    transform: none;
    margin-bottom: 18px;
  }

  .hero-content h1 {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .hero-tags,
  .hero-buttons {
    justify-content: center;
  }

  .portfolio-projects {
    padding: 60px 0 90px;
  }

  .portfolio-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 620px) {
  .portfolio-projects-container {
    width: 100%;
    padding: 0 18px;
  }

  .portfolio-projects-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-project-cover {
    height: 190px;
  }

  .portfolio-project-footer {
    align-items: flex-start;
  }

  .portfolio-project-website,
  .portfolio-project-btn {
    font-size: 12px;
    padding: 9px 11px;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 18px 0;
  }

  .nav-container {
    width: 100%;
    padding: 0 18px;
    justify-content: flex-end;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(14px);
  }

  .nav-menu {
    top: 68px;
    right: 18px;
    width: 230px;
  }

  .hero {
    padding: 50px 0 55px;
    overflow: visible;
  }

  .hero-container {
    width: 100%;
    padding: 0 18px;
    gap: 18px;
  }

  .hero-image-area {
    height: 430px;
    max-width: 390px;
    margin: 0 auto;
    transform: none;
    overflow: visible;
  }

  .profile-card {
    width: 225px;
    height: 225px;
    /*padding: 6px;*/
  }

  .profile-card img {
    border-width: 6px;
  }

  .profile-card::before {
    inset: -12px;
    filter: blur(18px);
  }

  .image-orbit {
    width: 300px;
    height: 300px;
  }

.floating-card {
    font-size: 10.5px;
    padding: 8px 10px;
    border-radius: 13px;
    gap: 6px;
    max-width: none;
    white-space: nowrap;

    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;

    transform: translate(var(--x), var(--y));
    animation: floatCardMobile 4s ease-in-out infinite;
  }

  .card-three {
    --x: -50%;
    --y: -180px;
  }

  .card-eight {
    --x: 75px;
    --y: -135px;
  }

  .card-one {
    --x: -185px;
    --y: -130px;
  }

  .card-five {
    --x: 95px;
    --y: -45px;
  }

  .card-six {
    --x: -195px;
    --y: -40px;
  }

  .card-seven {
    --x: -185px;
    --y: 70px;
  }

  .card-two {
    --x:40px;
    --y: 75px;
  }

  .card-four {
    --x: -50%;
    --y: 130px;
  }
}

@keyframes floatCardMobile {
  0%, 100% {
    transform: translate(var(--x), var(--y));
  }

  50% {
    transform: translate(var(--x), calc(var(--y) - 10px));
  }
}

  .hero-content {
    max-width: 100%;
    margin-top: -8px;
  }

  .mini-title {
    font-size: 14px;
    padding: 10px 18px;
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: 25px;
    line-height: 1.18;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-tags {
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-tags span {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
}

@media (max-width: 390px) {
  .hero-image-area {
    height: 400px;
    max-width: 350px;
  }

  .profile-card {
    width: 205px;
    height: 205px;
  }

  .image-orbit {
    width: 270px;
    height: 270px;
  }

   .floating-card {
    font-size: 10px;
    padding: 7px 8px;
  }

 .card-three {
    --x: -50%;
    --y: -185px;
  }

  .card-eight {
    --x: 60px;
    --y: -145px;
  }

  .card-one {
    --x: -165px;
    --y: -115px;
  }

  .card-five {
    --x: 82px;
    --y: -40px;
  }

  .card-six {
    --x: -170px;
    --y: -35px;
  }

  .card-seven {
    --x: -165px;
    --y: 65px;
  }

  .card-two {
    --x: 60px;
    --y: 65px;
  }

  .card-four {
    --x: -50%;
    --y: 140px;
  }


  .hero-content h1 {
    font-size: 23px;
  }

  .hero-content p {
    font-size: 14.5px;
  }
}




/* ============================= */
/* LİDERLİKLER SAYFASI */
/* ============================= */

.leadership-hero {
  position: relative;
  padding: 165px 0 70px;
  overflow: hidden;
}

.leadership-container {
  width: min(1180px, 92%);
  margin: auto;
  position: relative;
  z-index: 2;
}

.leadership-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  z-index: 0;
}

.glow-left {
  width: 360px;
  height: 360px;
  background: var(--purple);
  top: 25%;
  left: 5%;
}

.glow-right {
  width: 340px;
  height: 340px;
  background: var(--orange);
  right: 6%;
  bottom: 5%;
}

.leadership-header {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.leadership-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 12px 22px;
  border-radius: 80px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  margin: 0 auto 22px;
  box-shadow:
    0 12px 35px rgba(0,0,0,0.24),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.leadership-header h1 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.leadership-header h1 span {
  background: linear-gradient(135deg, var(--white), var(--pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  color: transparent;
}

.leadership-header p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: 17px;
  line-height: 1.9;
}

.leadership-stats {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.leadership-stat-card {
  padding: 26px;
  border-radius: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.30),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.leadership-stat-card strong {
  display: block;
  font-size: 34px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}

.leadership-stat-card span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.leadership-section {
  padding: 35px 0 80px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leadership-card {
  position: relative;
  padding: 28px;
  min-height: 430px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.34),
    inset 0 1px 1px rgba(255,255,255,0.06);
  transition: 0.35s ease;
  overflow: hidden;
}

.leadership-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(123,47,247,0.18);
  filter: blur(40px);
}

.leadership-card:hover {
  transform: translateY(-10px);
  border-color: rgba(248, 87, 166, 0.42);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.42),
    0 0 50px rgba(123, 47, 247, 0.16);
}

.active-card {
  border-color: rgba(255, 122, 24, 0.34);
}

.leadership-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--orange));
  box-shadow: 0 18px 45px rgba(248, 87, 166, 0.24);
}

.leadership-icon i {
  font-size: 24px;
  color: #fff;
}

.leadership-date {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.leadership-card h2 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.leadership-card h3 {
  color: var(--orange);
  font-size: 15px;
  margin-bottom: 18px;
}

.leadership-card p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.8;
}

.leadership-experience-section {
  padding: 0 0 110px;
}

.experience-box {
  padding: 42px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.34),
    inset 0 1px 1px rgba(255,255,255,0.06);
}

.experience-box h2 {
  max-width: 850px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.experience-box p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.experience-tags span {
  padding: 11px 15px;
  border-radius: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 950px) {
  .leadership-hero {
    padding: 120px 0 60px;
  }

  .leadership-stats,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .leadership-hero {
    padding: 105px 0 45px;
  }

  .leadership-header h1 {
    font-size: 34px;
  }

  .leadership-header p {
    font-size: 15px;
  }

  .leadership-stat-card,
  .leadership-card,
  .experience-box {
    padding: 22px;
    border-radius: 24px;
  }

  .experience-box h2 {
    font-size: 28px;
  }

  .experience-box p {
    font-size: 14.5px;
  }
}
