/* Modern About Page Styles with Theme Color #26c976 */

:root {
    --primary-orange: #26c976;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.spk-about-modern-wrapper {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section with Diagonal Split */
.spk-about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    overflow: hidden;
}

.spk-about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 97, 38, 0.05) 0%, rgba(241, 97, 38, 0.1) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

.spk-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.spk-about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.spk-about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.spk-about-hero-content h1 .spk-highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.spk-about-hero-content h1 .spk-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.spk-about-hero-content h1 .spk-highlight.spk-animated::after {
    transform: scaleX(1);
}

.spk-about-hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.spk-about-hero-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spk-about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.spk-about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(241, 97, 38, 0.2);
}

.spk-about-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.spk-about-image-card:first-child {
    grid-column: 1 / -1;
}

.spk-about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 3rem;
    box-shadow: 0 5px 20px rgba(241, 97, 38, 0.4);
}

.spk-about-badge span {
    display: block;
    font-size: 18px;
    opacity: 0.9;
    margin-top: 5px;
}

/* Features Section with Icon Cards */
.spk-about-features-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.spk-about-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.spk-about-section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.spk-about-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.spk-about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.spk-about-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spk-about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 97, 38, 0.05) 0%, rgba(241, 97, 38, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.spk-about-feature-card:hover::before {
    opacity: 1;
}

.spk-about-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 50px rgba(241, 97, 38, 0.15);
}

.spk-about-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8a5c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.spk-about-feature-card:hover .spk-about-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.spk-about-feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.spk-about-feature-content {
    position: relative;
    z-index: 1;
}

.spk-about-feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.spk-about-feature-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Vision & Mission Section with Asymmetric Layout */
.spk-about-vision-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.spk-about-vision-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-about-vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.spk-about-vision-image-wrapper {
    position: relative;
}

.spk-about-vision-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.spk-about-vision-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.spk-about-vision-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.spk-about-vision-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-orange);
}

.spk-about-vision-play-btn i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-left: 5px;
    transition: color 0.3s ease;
}

.spk-about-vision-play-btn:hover i {
    color: var(--white);
}

.spk-about-vision-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8a5c 100%);
    border-radius: 30px;
    z-index: -1;
}

.spk-about-vision-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.spk-about-vision-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Motto Section */
.spk-about-motto-section {
    padding: 100px 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spk-about-motto-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241, 97, 38, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-about-motto-content {
    position: relative;
    z-index: 1;
}

.spk-about-motto-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.spk-about-motto-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.spk-about-motto-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Committee Section */
.spk-about-committee-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0fff7 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.spk-about-committee-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 201, 118, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.spk-about-committee-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.spk-about-committee-header {
    background: linear-gradient(135deg, #26c976 0%, #1fa85e 100%);
    padding: 70px 60px;
    border-radius: 30px;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(38, 201, 118, 0.3);
    position: relative;
    overflow: hidden;
}

.spk-about-committee-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.spk-about-committee-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.spk-about-committee-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.spk-about-committee-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.spk-about-committee-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 3px solid #e8f8f0;
    position: relative;
    overflow: hidden;
}

.spk-about-committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 201, 118, 0.08) 0%, rgba(38, 201, 118, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.spk-about-committee-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #26c976 0%, #1fa85e 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.spk-about-committee-card:hover::before {
    opacity: 1;
}

.spk-about-committee-card:hover::after {
    transform: scaleY(1);
}

.spk-about-committee-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #26c976;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(38, 201, 118, 0.25);
}

.spk-about-committee-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.spk-about-committee-card:hover h3 {
    color: #26c976;
}

.spk-about-committee-card p {
    font-size: 1.25rem;
    color: #26c976;
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Section */
.spk-about-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.spk-about-stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.spk-about-stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.spk-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.spk-about-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spk-about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, #ff8a5c 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spk-about-stat-card:hover::before {
    transform: scaleX(1);
}

.spk-about-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 50px rgba(241, 97, 38, 0.15);
}

.spk-about-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.spk-about-stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.spk-about-stat-sublabel {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .spk-about-hero-grid,
    .spk-about-vision-grid,
    .spk-about-committee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spk-about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spk-about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spk-about-hero-content h1 {
        font-size: 2.5rem;
    }

    .spk-about-section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .spk-about-features-grid,
    .spk-about-stats-grid,
    .spk-about-committee-members {
        grid-template-columns: 1fr;
    }

    .spk-about-hero-content h1 {
        font-size: 2rem;
    }

    .spk-about-section-title {
        font-size: 1.8rem;
    }

    .spk-about-motto-title {
        font-size: 2rem;
    }

    .spk-about-hero-images {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.spk-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.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.9);
}