 /* Hero Section */
    .about-hero {
      background: linear-gradient(rgba(0, 84, 180, 0.8), rgba(0, 51, 102, 0.8)), 
                  url('../assets/MAFINA/mafina-images-pack/img4.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      padding: 8rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .about-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      animation: fadeInUp 1s ease-out;
    }
    
    .about-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto 2rem;
      animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .scroll-down {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      cursor: pointer;
    }
    
/* Leadership Intro */
.leadership-intro {
    padding: 6rem 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Executive Team */
.executive-team {
    padding: 6rem 0;
    background: #f9f9f9;
}

.executive-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.executive-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.executive-card.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.executive-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.executive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.executive-image:hover .executive-overlay {
    opacity: 1;
}

.executive-image:hover img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.executive-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.position {
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
}

.key-achievements {
    margin: 1.5rem 0;
}

.key-achievements li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.key-achievements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.btn-read-more {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    position: relative;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}

.btn-read-more:hover {
    background-color: rgba(0, 100, 200, 0.1);
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-read-more:active {
    transform: translateY(0);
}

.btn-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.btn-read-more:hover::after {
    transform: translateX(3px);
}

/* Expanded state */
.btn-read-more.expanded::after {
    content: '↑';
}

/* Alternative version with underline animation */
.btn-read-more.underline-style {
    padding: 0.5rem 0;
    padding-bottom: 0.2rem;
}

.btn-read-more.underline-style::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.btn-read-more.underline-style:hover::before {
    width: 100%;
}

.btn-read-more.underline-style:hover {
    background-color: transparent;
}

/* Leadership Principles */
.principles-section {
    padding: 6rem 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.principle-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.principle-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.principle-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Board Section */
.board-section {
    padding: 6rem 0;
    background: #f9f9f9;
}

.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.board-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.board-member.scale-hover:hover {
    transform: translateY(-10px);
}

.board-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.board-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.affiliation {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: orange;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
}

.timeline-item.left {
    left: 0;
    animation: slideInLeft 1s forwards;
}

.timeline-item.right {
    left: 50%;
    animation: slideInRight 1s forwards;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: orange;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item.left::after {
    right: -12px;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-year {
    position: absolute;
    top: -20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.timeline-title {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
  background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 51, 102, 0.9)), 
                  url('../assets/MAFINA/mafina-images-pack/img4.jpg') no-repeat center center;
      background-size: cover;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.cta-buttons a:first-child {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-buttons a:first-child:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 100, 200, 0.2);
}

/* Secondary Button */
.cta-buttons a:last-child {
    background-color:transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-buttons a:last-child:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 100, 200, 0.2);
}

/* Active State */
.cta-buttons a:active {
    transform: translateY(1px);
}

/* Icons */
.cta-buttons a i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-buttons a:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons a {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}
/* Animations */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        transform: translateX(-100px);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
    from {
        transform: translateX(100px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .executive-card {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item.left::after, 
    .timeline-item.right::after {
        left: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .executive-image {
        height: 300px;
    }
}


 @media (max-width: 768px) {
      .about-hero h1 {
        font-size: 2.5rem;
      }
      
      .about-hero p {
        font-size: 1rem;
      }
    }