:root {
  --green-700: #116b3b;
  --green-600: #169a53;
  --green-500: #1bbd66;
  --green-400: #54d49a;
  --green-100: #e8fff2;
  /* A very light green, similar to btn-secondary background */
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-200: #e5e7eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family:
    'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gray-900);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(27, 189, 102, .12), transparent 60%),
    radial-gradient(1200px 600px at 110% 10%, rgba(20, 154, 83, .10), transparent 60%),
    linear-gradient(180deg, #f9fbf9, #f5fff9 40%, #f8fbf8);
}

[dir="rtl"] body,
[dir="rtl"] .section,
[dir="rtl"] .container {
  font-family: 'Noto Nastaliq Urdu', serif
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(1.2) blur(8px);
  background: rgba(255, 255, 255, .75);
  border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px
}

.header-title {
  font-weight: 700;
  font-size: clamp(16px, 3.2vw, 26px);
  text-align: center;
  color: var(--green-700);
  letter-spacing: .3px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo.left {
  justify-self: start
}

.logo.right {
  justify-self: end
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: conic-gradient(from 180deg at 50% 50%, var(--green-500), var(--green-700));
  box-shadow: 0 6px 16px rgba(27, 189, 102, .35)
}

.logo-img {
  height: 60px;
  width: auto;
  display: block
}

.logo.small .logo-img {
  height: 32px
}

.logo.small .logo-mark {
  width: 22px;
  height: 22px
}

.logo-text {
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--green-700)
}

.header-bar {
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .85)
}

.header-bar .container {
  display: flex;
  align-items: center;
  min-height: 44px;
  width: 100%;
  max-width: 96%;
}

.main-nav {
  display: flex;
  /* Make main-nav a flex container */
  width: 100%;
  /* Ensure it takes full width of its container */
  flex-shrink: 0;
  /* Prevent it from shrinking */
  /* This container's children (the ul) will handle its own justification */
  /* Remove gap and flex-wrap here, will be on ul */
}

/* Base styling for main navigation list */
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  /* Use inline-flex so content dictates width, allowing overflow */
  flex-direction: row;
  /* Ensure items are in a row */
  gap: 6px;
  /* Reduced spacing between top-level items for more compact menu */
  white-space: nowrap;
  /* Prevent wrapping */
  overflow-x: auto;
  /* Allow horizontal scrolling if items overflow */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling for iOS */
  scrollbar-width: none;
  /* Hide scrollbar for Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar for IE and Edge */
  justify-content: flex-start;
  /* Ensure content starts from the left, especially when overflowing */
}

.main-nav ul::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari, and Opera */
}

/* Styling for top-level menu items */
.main-nav>ul>li {
  position: relative;
  /* Needed for absolute positioning of dropdowns */
  padding: 0;
  /* Reset padding here, add to anchor */
}

/* Styling for top-level menu links */
.main-nav>ul>li>a {
  display: block;
  color: var(--gray-700);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 8px;
  transition: all .3s ease;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

/* Add subtle gradient background on hover */
.main-nav>ul>li>a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  box-shadow: 0 4px 12px rgba(27, 189, 102, .25);
  transform: translateY(-2px);
}

/* Add active/current page indicator */
.main-nav>ul>li>a.active {
  color: var(--green-700);
  background: rgba(27, 189, 102, .12);
  font-weight: 600;
}

/* Add dropdown arrow indicator for items with submenus */
.main-nav .has-dropdown>a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.main-nav .has-dropdown:hover>a::after {
  transform: rotate(180deg);
}

/* Navigation badge styling */
.main-nav .nav-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(27, 189, 102, .3);
  animation: badgePulse 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 2px 6px rgba(27, 189, 102, .3);
  }

  50% {
    box-shadow: 0 2px 10px rgba(27, 189, 102, .5);
  }
}

.main-nav>ul>li>a:hover .nav-badge {
  background: var(--white);
  color: var(--green-600);
}


/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .header-top {
    grid-template-columns: auto 1fr auto
  }

  .header-title {
    font-size: 16px
  }

  /* Responsive menu adjustments for screens up to 900px */
  .main-nav {
    display: flex;
    /* Make main-nav a flex container */
    width: 100%;
    /* Take full width of its container */
    justify-content: center;
    /* Center the navigation list within the main-nav */
    /* Overflow for scrolling handled by the ul below */
  }

  .main-nav ul {
    flex-wrap: nowrap;
    /* Ensure items stay in a single line */
    overflow-x: auto;
    /* Allow horizontal scrolling if items overflow */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for iOS */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    justify-content: flex-start;
    /* Ensure content starts from the left, especially when overflowing */
    margin: 0;
    /* Remove default margin to help centering */
    padding: 0;
    /* Remove default padding */
  }

  .main-nav ul::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
  }
}

@media (max-width: 640px) {

  /* The .main-nav ul handles the flex properties now */
  .contact-form .form {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 72px 0 56px
  }
}

/* Dropdown specific styles */
.main-nav .dropdown {
  display: none;
  position: absolute;
  background: linear-gradient(180deg, #ffffff, #fffef8);
  /* Buttery white gradient */
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  /* Elegant double shadow */
  z-index: 10;
  left: 0;
  top: calc(100% + 8px);
  /* Small gap between menu and dropdown */
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-radius: 12px;
  flex-direction: column;
  border: 1px solid rgba(27, 189, 102, .15);
  /* Subtle green border */
  animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav .dropdown li {
  padding: 0;
}

.main-nav .dropdown li a {
  color: var(--gray-900);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: all .25s ease;
  font-weight: 500;
  border-radius: 8px;
  margin: 4px 8px;
  font-size: 14px;
}

.main-nav .dropdown li a:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(27, 189, 102, .2);
}

/* Show the dropdown menu on hover */
.main-nav .has-dropdown:hover>.dropdown {
  display: flex;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(27, 189, 102, .25)
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(27, 189, 102, .35)
}

.btn-secondary {
  background: #e8fff2;
  color: var(--green-700);
  border: 1px solid rgba(27, 189, 102, .25)
}

.btn-outline {
  border: 1px solid var(--green-500);
  color: var(--green-700);
  background: transparent
}

.btn-outline:hover {
  background: rgba(27, 189, 102, .08)
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
  color: var(--green-700)
}

.hero-sub {
  margin: 0 0 22px;
  color: var(--gray-700)
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(0.9) contrast(0.9)
}

/* Sections */
.section {
  padding: 64px 0
}

.section-alt {
  background: linear-gradient(0deg, rgba(27, 189, 102, .04), rgba(27, 189, 102, .02))
}

.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  margin: 0 0 18px;
  color: var(--gray-900)
}

.section-text {
  color: var(--gray-700);
  max-width: 72ch
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px
}

.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(2, 6, 23, .04)
}

.link-card {
  text-decoration: none;
  color: inherit;
  display: block
}

.link-card:hover {
  box-shadow: 0 10px 26px rgba(2, 6, 23, .08);
  transform: translateY(-1px)
}

.card .icon {
  color: var(--green-600);
  margin-bottom: 10px
}

.card h3 {
  margin: 8px 0 6px;
  font-size: 18px
}

.card p {
  margin: 0;
  color: var(--gray-700)
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px
}

.project-card {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  background: var(--white)
}

.project-media {
  height: 140px;
  background:
    linear-gradient(90deg, rgba(27, 189, 102, .15) 0 10%, transparent 10% 20%, rgba(27, 189, 102, .15) 20% 30%, transparent 30% 40%, rgba(27, 189, 102, .15) 40% 50%, transparent 50% 60%, rgba(27, 189, 102, .15) 60% 70%, transparent 70% 80%, rgba(27, 189, 102, .15) 80% 90%, transparent 90% 100%),
    url('https://images.unsplash.com/photo-1542831371-29b0f74f9713?q=80&w=1200&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: saturate(.9);
}

.project-body {
  padding: 14px
}

.project-body h3 {
  margin: 6px 0 4px
}

.project-body p {
  margin: 0;
  color: var(--gray-700)
}

/* News */
.news-list {
  display: grid;
  gap: 14px
}

.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 12px
}

.news-badge {
  background: rgba(27, 189, 102, .1);
  color: var(--green-700);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600
}

.news-content h3 {
  margin: 4px 0
}

.news-content p {
  margin: 0;
  color: var(--gray-700)
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  color: var(--gray-700)
}

.contact-list li {
  margin: 6px 0
}

.socials {
  display: flex;
  gap: 10px
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f0fff6;
  color: var(--green-700);
  border: 1px solid rgba(27, 189, 102, .25);
  transition: transform .15s ease
}

.social:hover {
  transform: translateY(-2px)
}

.contact-form .form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.contact-form label {
  display: grid;
  gap: 6px
}

.contact-form label.full {
  grid-column: 1/-1
}

.contact-form input,
.contact-form textarea {
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .85);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(27, 189, 102, .12)
}

.contact-form .submit {
  justify-self: start
}

/* Footer */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: linear-gradient(180deg, #ffffff, #f7fff9)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items: start
}

.footer-nav {
  display: grid;
  gap: 8px
}

.footer-nav a {
  color: var(--gray-700);
  text-decoration: none
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* News Ticker Bar */
.news-ticker-bar {
  position: sticky;
  /* Make it fixed */
  top: 114px;
  /* Position below the header (70px + 44px) */
  z-index: 40;
  /* Ensure it's above other content but below main header */
  background: var(--green-700);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  width: 100%;
  /* Ensure it spans full width when fixed */
}

.news-ticker-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Start from the right */
  min-height: 44px;
}

.news-scroll {
  font-weight: 600;
  color: var(--white);
  /* Ensure text inside news ticker is white */
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .header-top {
    grid-template-columns: auto 1fr auto
  }

  .header-title {
    font-size: 16px
  }

  /* Responsive menu adjustments for screens up to 900px */
  .main-nav {
    display: flex;
    /* Make main-nav a flex container */
    width: 100%;
    /* Take full width of its container */
    justify-content: center;
    /* Center the navigation list within the main-nav */
    /* Overflow for scrolling handled by the ul below */
  }

  .main-nav ul {
    flex-wrap: nowrap;
    /* Ensure items stay in a single line */
    overflow-x: auto;
    /* Allow horizontal scrolling if items overflow */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for iOS */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    justify-content: flex-start;
    /* Ensure content starts from the left, especially when overflowing */
    margin: 0;
    /* Remove default margin to help centering */
    padding: 0;
    /* Remove default padding */
  }

  .main-nav ul::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari, and Opera */
  }
}

@media (max-width: 640px) {

  /* The .main-nav ul handles the flex properties now */
  .contact-form .form {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 72px 0 56px
  }
}

/* RTL minor tweaks */
[dir="rtl"] .main-nav a {
  direction: rtl
}

[dir="rtl"] .contact-form .submit {
  justify-self: end
}

/* Video Section */
#video-section {
  background: #607d8b;
  padding: 40px 0;
  color: #fff;
}

.video-section-content {
  display: flex;
  flex-direction: column;
  /* Changed to column to place video below text */
  align-items: center;
  gap: 40px;
}

#video-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

#video-section h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: normal;
}

#video-section p {
  margin-bottom: 20px;
}

#video-section ul {
  list-style: disc;
  margin-left: 20px;
}

.video-wrapper {
  flex: 1;
  text-align: center;
}

.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 30%;
  /* Adjusted for a clearer video, as requested */
  height: 0;
  margin-bottom: 15px;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#video-section .btn-primary {
  margin-top: 20px;
  background-color: #4CAF50;
  border-color: #4CAF50;
}

/* Action Section */
#action-section {
  background: #f6fff9;
  padding: 40px 0;
}

.action-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.action-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.action-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.contact-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-action-item {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.contact-action-item svg {
  color: #dc3545;
  /* Example color, adjust as needed */
  margin-bottom: 10px;
}

.contact-action-item .btn-primary {
  background-color: #28a745;
  /* Example color, adjust as needed */
  border-color: #28a745;
  /* Example color, adjust as needed */
}

.contact-action-item:nth-child(2) svg {
  color: #ffc107;
  /* Example color, adjust as needed */
}

.contact-action-item:nth-child(2) .btn-primary {
  background-color: #007bff;
  /* Example color, adjust as needed */
  border-color: #007bff;
  /* Example color, adjust as needed */
}

.contact-action-item p {
  font-size: 0.8em;
  color: #777;
  margin-top: 10px;
}

.contact-action-item img {
  height: 60px;
  /* Increased size for better visibility */
  margin-top: 10px;
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .video-section-content {
    flex-direction: column;
    text-align: center;
  }

  .video-section-content>div {
    flex: none;
    width: 100%;
  }

  .action-section-content {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  #video-section h2 {
    font-size: 2rem;
  }

  #video-section h3 {
    font-size: 2.5rem;
  }
}



/* About page styles */
body.page-about .about-hero {
  background: linear-gradient(0deg, rgba(27, 189, 102, .06), rgba(27, 189, 102, .12));
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06)
}

body.page-about .about-hero .title {
  font-size: clamp(24px, 4vw, 40px);
  margin: 0;
  color: var(--green-700);
  text-align: center
}

body.page-about .about-hero .subtitle {
  margin: 8px 0 0;
  text-align: center;
  color: var(--gray-700)
}

/* Gallery (shared styles) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  justify-items: center
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
  background: #fff
}

.gallery-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block
}

.gallery-actions {
  position: absolute;
  inset: auto 8px 8px 8px;
  display: flex;
  gap: 8px;
  justify-content: center
}

.gallery-actions a {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .92);
  color: var(--gray-700)
}

.gallery-actions a:hover {
  background: #fff
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100
}

.lightbox.open {
  display: flex
}

.lightbox-content {
  max-width: min(92vw, 1000px);
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35)
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 90vh
}

.lightbox-video {
  width: min(92vw, 1000px);
  aspect-ratio: 16/9;
  background: #000;
  position: relative
}

.lightbox-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer
}


.board-of-directors-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  /* Spacing between cards */
  flex-wrap: wrap;
  /* Allow cards to wrap on smaller screens */
  margin-top: 30px;
}

.director-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
  /* Adjust as needed */
}

.director-img {
  width: 180px;
  /* Circular image size */
  height: 180px;
  border-radius: 50%;
  /* Makes the image circular */
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
  border: 3px solid #fff;
  /* White border as seen in the image */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  margin-bottom: 15px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.director-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Nav Badge */
.nav-badge {
  background-color: #ef4444;
  /* Red color */
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  display: inline-block;
  line-height: normal;
}