/* Leaders Page Styles */
/* Base Styles */
* {
  margin: 0px;
  margin-bottom: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
:root {
    --primary:#273246;
    --primary-dark: #273246;
    --secondary: #273246;
    --text-dark: #273246;
    --text-light: #64748b;
    --background: #f4f7fa;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-light: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

body {
    background-color: #f4f7fa;
    color: #273246;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    animation: gradientShift 15s ease infinite alternate;
}

/* Keyframe Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes rotateIn {
    0% { transform: perspective(1000px) rotateY(90deg); opacity: 0; }
    100% { transform: perspective(1000px) rotateY(0); opacity: 1; }
}

@keyframes zoomIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

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

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2{
  text-align: center;
  margin-bottom: 30px;
}
/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;         /* Add this */
    overflow-y: auto; 
  }

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

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/group-people-working-out-business-plan-office.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease-in-out;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Director's Message Section */

.directors-message {
  background-color: #f9f9f9;
  color: #333;
}

.directors-message-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.directors-message-image img {
  max-width: 350px; 
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top:40px;
}

.directors-message-text {
  flex: 1;
  min-width: 280px;
}

.directors-message-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
}

.directors-message-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #444;
}
@media (max-width:992){
  .directors-message-image img {
    margin-top: 0;
    max-width: 80%;
  }

}

@media (max-width: 768px) {
  .directors-message-content {
    flex-direction: column;
    text-align: center;
  }

  .directors-message-text h2 {
    font-size: 1.5rem;
  }

  .directors-message-text p {
    font-size: 0.95rem;
  }

  .directors-message-image img {
    margin-top: 0;
    max-width: 80%;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .directors-message-text h2 {
    font-size: 1.3rem;
  }

  .directors-message-text p {
    font-size: 0.9rem;
  }

  .directors-message {
    padding: 30px 4%;
  }
}

/* Leaders Section */
/* Leaders Section */
.director-intro {
    padding: 4rem 1rem;
  }

  .director-intro .contain {
    max-width: 1200px;
    margin-inline: auto;
  }

  .intro-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  .director-intro.visible .intro-wrapper {
    opacity: 1;
    transform: none;
  }

  /* ------ Circular Image ------ */
  .director-photo {
    flex: 0 0 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ------ Text Content ------ */
  .intro-text {
    flex: 1 1 450px;
  }

  .intro-text h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
    margin-bottom: 0.5rem;
  }

  .intro-text h3 {
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
    color: #3366ff;
    margin-bottom: 1rem;
  }

  .intro-text p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
  }

  .intro-text blockquote {
    font-style: italic;
    border-left: 4px solid #3366ff;
    padding-left: 1rem;
    color: #555;
    margin: 1.5rem 0 0;
  }

  /* ------ Responsive Tweaks ------ */
  @media (max-width: 768px) {
    .intro-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .director-photo {
      margin: auto;
    }
  }

 
/* Advisory Board Section */
.advisory-board {
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
}
.advisory-board h2 {
 text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.advisory-board::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
  animation: pulse 15s infinite alternate-reverse;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.advisor-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.8);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
  opacity: 0;
  animation: zoomIn 1s ease-out forwards;
  animation-delay: calc(var(--advisor-index, 0) * 0.2s);
}

.advisor-card:nth-child(1) { --advisor-index: 1; }
.advisor-card:nth-child(2) { --advisor-index: 2; }
.advisor-card:nth-child(3) { --advisor-index: 3; }
.advisor-card:nth-child(4) { --advisor-index: 4; }
.advisor-card:nth-child(5) { --advisor-index: 5; }
.advisor-card:nth-child(6) { --advisor-index: 6; }

.advisor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.advisor-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.advisor-card:hover::before {
  transform: scaleX(1);
}

.advisor-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: var(--shadow-md);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateZ(20px);
  position: relative;
}



.advisor-card:hover .advisor-image {
  transform: translateZ(40px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(139, 92, 246, 0.2);
}



.advisor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.advisor-card:hover .advisor-image img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.05);
}

.advisor-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
  transition: all 0.4s ease;
  transform: translateZ(15px);
  
}

.advisor-card:hover h3 {
  transform: translateZ(30px);
  letter-spacing: 0.5px;
}

.advisor-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.4s ease;
  transform: translateZ(10px);
}

.advisor-card:hover p {
  transform: translateZ(20px);
  color: var(--primary-dark);
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background-color: var(--background);
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.philosophy-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    /* background: var(--gradient-primary); */
    border-radius: 2px;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.philosophy-image:hover img {
    transform: scale(1.05);
}

/* Join Team Section */
.join-team-section {
    padding: 80px 0;
    background: linear-gradient(rgba(39, 50, 70, 0.9), rgba(39, 50, 70, 0.9)), url('../images/job-training.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.join-team-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  white-space: pre-line;
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section{
      height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .directors-message-content,
    .philosophy-content {
        flex-direction: column;
    }
    
    .directors-message-image,
    .directors-message-text,
    .philosophy-text,
    .philosophy-image {
        flex: none;
        /* width: 100%; */
    }
}

@media (max-width: 768px) {
    .hero-section{
      height: 60vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .leaders-grid,
    .advisors-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-section{
      height: 60vh;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .directors-message-text h2,
    .philosophy-text h2,
    .section-title {
        font-size: 1.8rem;
    }
    
    .leaders-grid,
    .advisors-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}

@media (min-width: 2560) {
  .hero-section{
    height:60vh;
  }

}

@media (max-width:992){
  .directors-message-image img {
     max-width: 250px; 
    margin-top: auto;
    
  }

}