* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
}

/* NAVBAR */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #374151;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: #1d4ed8;
}

.nav-call {
  background: #dc2626;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.director-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
  color: white;
  text-align: center;
}

.director-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* PROFILE SECTION */
.director-section {
  padding: 80px 20px;
}

.director-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.director-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (max-width: 900px) {
  .director-image img {
    margin: auto;
  }
}

/* Premium hover effect */
.director-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}


.director-content h2 {
  font-size: 32px;
  margin-bottom: 6px;
}

.director-content h4 {
  color: #1d4ed8;
  margin-bottom: 20px;
}

.director-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.director-points {
  margin: 20px 0;
}

.director-points li {
  list-style: none;
  margin-bottom: 10px;
  font-weight: 500;
}

.director-cta {
  margin-top: 30px;
}

.btn-primary {
  background: #1d4ed8;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-right: 10px;
}

.btn-outline {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* VISION */
.vision-section {
  background: #ffffff;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.vision-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vision-card h3 {
  margin-bottom: 12px;
  color: #1d4ed8;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .director-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.director-image {
  position: relative;
  display: inline-block;
}

/* Director Badge */
/* Gold Circular Director Badge */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #d97706);
  color: #1f2937;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.55);
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

/* Micro luxury animation */
.badge {
  animation: badgePop 1s ease-out forwards;
}

@keyframes badgePop {
  from {
    transform: scale(0.75);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}

