/* ========== ABOUT SECTION ========== */
#about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 255, 0.95));
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.founder-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid var(--periwinkle-pale);
    position: relative;
    overflow: hidden;
}

.founder-section:hover {
    box-shadow: 0 20px 40px rgba(150, 142, 176, 0.2);
}

.founder-image-wrapper {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    position: relative;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 1.2s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.founder-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(200, 106, 165, 0.1), transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.founder-section:hover .founder-image-wrapper::before {
    opacity: 1;
}

.founder-image-wrapper.animated {
    opacity: 1;
    transform: scale(1) translateX(0) translateY(0);
}

.founder-image-wrapper.animated:hover {
    transform: scale(1.02) translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(200, 106, 165, 0.3));
}

.founder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--floral-pink);
    box-shadow: 0 8px 20px rgba(200, 106, 165, 0.3);
    position: relative;
    background: var(--white);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 33%;
    transition: transform 0.8s ease;
    display: block;
}

.founder-image-wrapper.animated:hover .founder-image img {
    transform: scale(1.05);
}

.founder-content {
    flex: 1;
    opacity: 0;
    transform: translateX(60px) translateY(10px);
    transition: all 1s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.founder-content.animated {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition: all 1s cubic-bezier(0.2, 0.9, 0.3, 1.1) 0.2s;
}

.founder-name {
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--plum-deep), var(--fuchsia-muted), var(--floral-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    transition-delay: 0.3s;
}

.founder-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--leaf-green);
    margin-bottom: 25px;
    font-size: 1.15rem;
    font-style: italic;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    transition-delay: 0.4s;
}

.founder-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--leaf-green), var(--sage-green));
    border-radius: 2px;
}

.founder-bio p {
    margin-bottom: 15px;
    text-align: justify;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

.founder-bio p:nth-child(1) { transition-delay: 0.5s; }
.founder-bio p:nth-child(2) { transition-delay: 0.6s; }
.founder-bio p:nth-child(3) { transition-delay: 0.7s; }

.founder-quote {
    font-style: italic;
    padding: 20px 25px;
    border-left: 4px solid var(--golden-yellow);
    background: linear-gradient(to right, rgba(227, 199, 74, 0.08), rgba(227, 199, 74, 0.02));
    border-radius: 0 20px 20px 0;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    transition-delay: 0.8s;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 8rem;
    color: var(--golden-yellow);
    opacity: 0.1;
    font-family: serif;
}

.founder-quote p {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.founder-content.animated .founder-name,
.founder-content.animated .founder-title,
.founder-content.animated .founder-bio p,
.founder-content.animated .founder-quote {
    opacity: 1;
    transform: translateY(0);
}

.founder-section:hover .founder-quote {
    border-left-width: 6px;
    background: linear-gradient(to right, rgba(227, 199, 74, 0.12), rgba(227, 199, 74, 0.02));
}

.mission-section {
    text-align: center;
    background: linear-gradient(135deg, var(--leaf-green), var(--moss-green));
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 80px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(111, 143, 106, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(111, 143, 106, 0.4);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--golden-yellow), var(--olive-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(227, 199, 74, 0.3);
    transition: transform 0.3s ease;
}

.mission-section:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-title {
    margin-bottom: 20px;
    color: var(--white);
}

.mission-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.credentials-section {
    background: linear-gradient(135deg, rgba(227, 199, 74, 0.1), rgba(201, 168, 58, 0.2));
    border-radius: 15px;
    padding: 50px;
    border: 2px solid var(--golden-yellow);
}

.credentials-title {
    text-align: center;
    margin-bottom: 40px;
}

.credentials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.credential-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    border: 1px solid var(--periwinkle-pale);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(150, 142, 176, 0.2);
    border-color: var(--floral-pink);
}

.credential-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.credential-item:hover .credential-icon {
    transform: scale(1.1) rotate(5deg);
}

.credential-item:nth-child(1) .credential-icon { background: linear-gradient(135deg, var(--plum-deep), var(--fuchsia-muted)); }
.credential-item:nth-child(2) .credential-icon { background: linear-gradient(135deg, var(--violet-dusty), var(--grape-muted)); }
.credential-item:nth-child(3) .credential-icon { background: linear-gradient(135deg, var(--leaf-green), var(--sage-green)); }

.credential-title {
    margin-bottom: 10px;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ========== FOUNDER REGISTRATION STYLES ========== */
.founder-registration {
    background: linear-gradient(135deg, rgba(200, 106, 165, 0.08), rgba(143, 130, 170, 0.08));
    border-left: 4px solid var(--floral-pink);
    padding: 15px 20px !important;
    margin: 20px 0 25px !important;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.founder-registration:hover {
    border-left-width: 6px;
    background: linear-gradient(135deg, rgba(200, 106, 165, 0.12), rgba(143, 130, 170, 0.12));
    box-shadow: 0 4px 12px rgba(200, 106, 165, 0.1);
}

.founder-registration p {
    margin-bottom: 8px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.founder-registration p:last-child {
    margin-bottom: 0;
}

.founder-registration i {
    color: var(--floral-pink);
    width: 20px;
    font-size: 1rem;
}

.founder-registration strong {
    color: var(--plum-deep);
    min-width: 130px;
    display: inline-block;
    font-weight: 600;
}

/* Animate on scroll for registration */
.founder-content.animated .founder-registration {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease forwards 0.45s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-registration {
        text-align: left;
        padding: 12px 15px !important;
    }
    
    .founder-registration p {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .founder-registration strong {
        min-width: auto;
        margin-right: 5px;
    }
    
    .founder-registration i {
        width: 18px;
    }
}

@media (max-width: 576px) {
    .founder-registration p {
        font-size: 0.9rem;
    }
}