/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}


body {
  font-family:Georgia, 'Times New Roman', Times, serif;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 64px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--gray-700); /* Ensure dropdown toggle has consistent color */
  font-weight: 600;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--green-600);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: var(--green-50);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Welcome Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: white;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  position: relative;
  height: 400px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit:contain;
  border-radius: 16px 0 0 16px;
  margin-top:100px;
}

.modal-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
  width: 50%;
  text-align: left;
  animation: fadeIn 1s ease-in 0.5s both;
}

.modal-image-overlay-right {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  color: white;
  margin-top: 2000px;
  width: 50%;
  text-align: right;
  text-align: left;
  animation: fadeIn 1s ease-in 0.8s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-text {
  padding: 2.5rem;
}

.modal-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.modal-scroll {
  max-height: 500px;
  overflow-y: auto;
  margin-bottom: 2rem;
}

.modal-scroll p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.modal-signature {
  margin-top: 1.5rem;
  font-weight: 600;
  margin-top: 200px;
}

.modal-title {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Hero Section */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position:relative;
  inset: 100;
  background: linear-gradient(to right, rgba(25, 247, 5, 0.7), rgba(33, 228, 7, 0.5), rgba(47, 233, 10, 0.7));;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 1200px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: lime ;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-in;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-in 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in 0.6s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-600);
  color: white;
}

.btn-primary:hover {
  background: var(--green-700);
  transform: scale(1.05);
}

.btn-secondary {
  background: var(--yellow-400);
  color: var(--gray-900);
}

.btn-secondary:hover {
  background: var(--yellow-500);
  transform: scale(1.05);
}

.btn-white {
  background: white;
  color: var(--gray-900);
}

.btn-white:hover {
  background: var(--gray-100);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

/* Sections */
.section {
  padding: 5rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title.white {
  color: white;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.section-text {
  font-size: 1.125rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Welcome Section */
.welcome-section {
  background: linear-gradient(to bottom, white, var(--green-50));
}

/* About Section */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.about-image {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, var(--green-400), var(--yellow-400));
  opacity: 0.2;
  filter: blur(40px);
  border-radius: 16px;
}

.about-image img {
  position: relative;
  width: 70%;
  height: 500px;
  object-fit:contain;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* Focus Section */
.focus-section {
  background: linear-gradient(to bottom, var(--green-50), white);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.focus-card {
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 2px solid;
}

.focus-card.green {
  background: linear-gradient(to bottom right, var(--green-50), white);
  border-color: var(--green-100);
}

.focus-card.yellow {
  background: linear-gradient(to bottom right, #fef9c3, white);
  border-color: #fef08a;
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.focus-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.focus-card.green .focus-icon {
  background: var(--green-100);
  color: var(--green-600);
}

.focus-card.yellow .focus-icon {
  background: #fef08a;
  color: var(--yellow-600);
}

.focus-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.focus-card p {
  color: var(--gray-700);
  line-height: 1.8;
}

/* Impact Section */
.impact-section {
  background: linear-gradient(to right, var(--green-600), var(--green-700));
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.impact-card {
  text-align: center;
}

.impact-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--yellow-400);
  margin-bottom: 0.5rem;
}

.impact-number::after {
  content: "+";
}

.impact-label {
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
}

/* Projects Section */
.projects-section {
  background: linear-gradient(to bottom, var(--green-50), white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.project-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 2px solid var(--green-100);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
  position: relative;
  height: 250px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green-600);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.project-content {
  padding: 2rem;
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.project-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-link {
  color: var(--green-600);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

.project-link:hover {
  color: var(--green-700);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, var(--yellow-400), var(--yellow-500));
}

.cta-text {
  font-size: 1.25rem;
  color: var(--gray-800);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom right, var(--green-900), var(--green-800), var(--green-900));
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 4rem 0;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(to right, var(--yellow-400), var(--yellow-500));
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li::before {
  content: "•";
  color: var(--yellow-400);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--yellow-400);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, var(--yellow-400), var(--yellow-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  transition: all 0.3s;
}

.social-links a:hover {
  transform: scale(1.1) rotate(12deg);
}

.contact-info li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--yellow-400);
  margin-top: 0.25rem;
}

.newsletter p {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--green-700);
  background: var(--green-950);
  color: white;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, var(--yellow-400), var(--yellow-500));
  color: var(--green-900);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-love {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-love i {
  color: var(--yellow-400);
  animation: pulse 1.5s infinite;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

  .modal-image {
    height: 300px;
  }

  .modal-image img {
    border-radius: 16px 16px 0 0;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .impact-number {
    font-size: 3.5rem;
  }

  .team-expanded-section {
    padding: 3rem 1rem;
  }

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

/* Team Expanded Section Styles */
.team-expanded-section {
  background: var(--gray-50);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1rem;
  text-align: center;
  transition: all 0.5s ease-in-out;
  overflow:auto;
  max-height: 0;
  opacity: 0;
}

.team-expanded-section.collapsed {
  height: 0;
  padding: 0 1rem;
  margin-top: -80px; /* Adjust based on navbar height */
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 5rem 1rem;
  
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
  margin-top: -80px; /* Adjust based on navbar height */
  z-index: 500;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}
  


.team-expanded-section.visible {
  max-height: 1000px; /* Adjust based on content height */
  opacity: 1;
  visibility: visible;
  padding: 5rem 1rem;
  margin-top: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
  transition: all 0.5s ease-in-out;
  
}

.team-member-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-member-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 1rem;
}

.team-member-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.team-member-card .team-role {
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-card .team-bio {
  color: var(--gray-700);
  line-height: 1.6;
  padding: 0 1.5rem;
}

/* Our Directors Section */
.directors-section {
  background: linear-gradient(180deg, var(--gray-50), white);
  padding: 4rem 1rem;
}

.directors-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.directors-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.directors-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.director-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 185, 129, 0.06);
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.director-photo {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--gray-100);
}

.director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.director-card:hover .director-photo img {
  transform: scale(1.06);
}

.director-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: linear-gradient(90deg, var(--yellow-400), var(--yellow-500));
  color: var(--green-900);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.director-info {
  padding: 1.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 auto;
}

.director-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
}

.director-role {
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.95rem;
}

.director-bio {
  color: var(--gray-700);
  line-height: 1.6;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  flex: 1 0 auto;
}

.director-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

.director-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .director-photo {
    height: 220px;
  }

  .director-card {
    border-radius: 12px;
  }

  .director-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }
}

/* Styles for the existing home-page directors markup */
.directors-home-section {
  background: linear-gradient(180deg, var(--gray-50), white);
  padding: 3.5rem 1rem;
}

.directors-home-section .section-title {
  margin-bottom: 0.5rem;
}

.directors-home-section .section-subtitle {
  margin-bottom: 2rem;
}

.directors-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.director-home-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  text-align: center;
  padding-bottom: 1rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  border: 1px solid rgba(16,185,129,0.06);
}

.director-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
}

.director-home-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.director-home-card:hover img {
  transform: scale(1.04);
}

.director-home-card h3 {
  font-size: 1.125rem;
  margin: 0.85rem 0 0.25rem;
  color: var(--gray-900);
}

.director-home-role {
  color: var(--green-600);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .director-home-card img {
    height: 180px;
  }
.team member{
  flex: 1110 0%! important;
  max-width: 100%! important;
  flex-basis: 100%! important;
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out; 
}
}
  .directors-home-section {
    padding: 2rem 1rem;
  }
}
