/* Founder's Message Section - Theme Color #26c976 */

.spk-founder-message-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.spk-founder-message-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.spk-founder-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-founder-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #26c976;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.spk-founder-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #26c976 0%, #ff8a5c 100%);
}

.spk-founder-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333333;
    margin-top: 20px;
}

.spk-founder-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

/* Founder Image Section */
.spk-founder-image-wrapper {
    position: relative;
}

.spk-founder-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spk-founder-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.spk-founder-image-main:hover img {
    transform: scale(1.05);
}

.spk-founder-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #26c976 0%, #ff8a5c 100%);
    border-radius: 20px;
    z-index: -1;
}

.spk-founder-quote-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: #26c976;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(241, 97, 38, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    max-width: 200px;
}

/* Founder Message Content */
.spk-founder-message-content {
    position: relative;
}

.spk-founder-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #26c976;
    margin-bottom: 30px;
    padding-left: 30px;
    border-left: 4px solid #26c976;
    line-height: 1.8;
    font-weight: 500;
}

.spk-founder-paragraph {
    font-size: 18px;
    color: #666666;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.spk-founder-paragraph:first-of-type {
    font-size: 19px;
    color: #333333;
}

.spk-founder-highlight {
    background: linear-gradient(120deg, rgba(241, 97, 38, 0.1) 0%, rgba(241, 97, 38, 0.05) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #26c976;
    margin: 30px 0;
}

.spk-founder-highlight p {
    font-size: 18px;
    color: #333333;
    line-height: 1.9;
    margin: 0;
}

.spk-founder-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.spk-founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 5px;
}

.spk-founder-designation {
    font-size: 1.1rem;
    color: #26c976;
    font-weight: 500;
}

/* Decorative Elements */
.spk-founder-decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #26c976 0%, #ff8a5c 100%);
    margin: 20px 0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .spk-founder-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spk-founder-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .spk-founder-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .spk-founder-message-section {
        padding: 60px 0;
    }

    .spk-founder-title {
        font-size: 1.8rem;
    }

    .spk-founder-quote {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .spk-founder-paragraph {
        font-size: 16px;
    }

    .spk-founder-highlight p {
        font-size: 16px;
    }
}

/* Animation Classes for GSAP */
.spk-fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.spk-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
}

.spk-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
}

.spk-scale-in {
    opacity: 0;
    transform: scale(0.95);
}