@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

.sk-ap-wrapper {
    --sk-primary: #FF6B35;
    --sk-primary-hover: #ff8c42;
    --sk-secondary: #4ade80;
    --sk-tertiary: #c084fc;
    --sk-dark: #0f172a;
    --sk-text: #475569;
    --sk-bg: #f8fafc;
    --sk-surface: #ffffff;
    
    --sk-grad-orange: linear-gradient(135deg, #FF6B35, #ff9b52);
    --sk-grad-orange-soft: linear-gradient(135deg, #fff7ed, #ffedd5);
    --sk-grad-green: linear-gradient(135deg, #22c55e, #4ade80);
    --sk-grad-green-soft: linear-gradient(135deg, #f0fdf4, #dcfce7);
    --sk-grad-purple: linear-gradient(135deg, #a855f7, #c084fc);
    --sk-grad-purple-soft: linear-gradient(135deg, #faf5ff, #f3e8ff);
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--sk-bg);
    color: var(--sk-text);
    line-height: 1.6;
    overflow: hidden;
    position: relative;
}

.sk-ap-wrapper * {
    box-sizing: border-box;
}

.sk-ap-wrapper h1,
.sk-ap-wrapper h2,
.sk-ap-wrapper h3,
.sk-ap-wrapper h4 {
    color: var(--sk-dark);
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.sk-ap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.sk-ap-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.sk-ap-section {
    padding: 60px 0;
    position: relative;
}
@media (min-width: 768px) {
    .sk-ap-section { padding: 80px 0; }
}

.sk-ap-bg-soft { background-color: #f1f5f9; }

.sk-ap-bg-dots {
    background-image: radial-gradient(var(--sk-text) 1px, transparent 1px);
    background-size: 32px 32px;
    background-color: var(--sk-bg);
    opacity: 0.95;
}

/* Gradients */
.sk-ap-gradient-orange { background: var(--sk-grad-orange); color: white; }
.sk-ap-gradient-orange-soft { background: var(--sk-grad-orange-soft); color: var(--sk-primary); }
.sk-ap-gradient-green { background: var(--sk-grad-green); color: white; }
.sk-ap-gradient-green-soft { background: var(--sk-grad-green-soft); color: #16a34a; }
.sk-ap-gradient-purple { background: var(--sk-grad-purple); color: white; }
.sk-ap-gradient-purple-soft { background: var(--sk-grad-purple-soft); color: #9333ea; }

.sk-ap-text-gradient {
    background: var(--sk-grad-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism */
.sk-ap-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.sk-ap-hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sk-ap-hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Grids */
.sk-ap-grid-2 { display: grid; gap: 24px; }
.sk-ap-grid-3 { display: grid; gap: 24px; }
.sk-ap-stats-grid { 
    display: grid; 
    gap: 16px; 
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px; /* Pull up into hero */
}
@media (min-width: 768px) {
    .sk-ap-grid-2 { grid-template-columns: 1fr 1fr; gap: 40px; }
    .sk-ap-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .sk-ap-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: -60px; }
}

/* Animations */
.sk-ap-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: skApFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes skApFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.sk-ap-stagger-1 { animation-delay: 0.1s; }
.sk-ap-stagger-2 { animation-delay: 0.2s; }
.sk-ap-stagger-3 { animation-delay: 0.3s; }
.sk-ap-stagger-4 { animation-delay: 0.4s; }
.sk-ap-stagger-5 { animation-delay: 0.5s; }

.sk-ap-pulse {
    animation: skApPulse 2s infinite;
}
@keyframes skApPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Hero Section */
.sk-ap-hero {
    padding: 100px 0 80px;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--sk-bg) 100%);
    overflow: hidden;
}
@media (min-width: 768px) {
    .sk-ap-hero { padding: 140px 0 100px; }
}

.sk-ap-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 1;
}
.sk-ap-blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}
.sk-ap-blob-1 {
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: var(--sk-tertiary);
}
.sk-ap-blob-2 {
    bottom: -50px; right: -50px;
    width: 300px; height: 300px;
    background: var(--sk-primary);
    animation-delay: -4s;
}
@media (min-width: 768px) {
    .sk-ap-blob-1 { top: -100px; left: -100px; width: 400px; height: 400px; }
    .sk-ap-blob-2 { bottom: -100px; right: -100px; width: 500px; height: 500px; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.sk-ap-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--sk-grad-orange-soft);
    color: var(--sk-primary);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sk-ap-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--sk-dark);
}
@media (min-width: 768px) { .sk-ap-hero-title { font-size: 50px; margin-bottom: 24px; } }

.sk-ap-hero-subtitle {
    font-size: 16px;
    color: var(--sk-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (min-width: 768px) { .sk-ap-hero-subtitle { font-size: 22px; line-height: 1.8; } }

/* Section Headers */
.sk-ap-section-header {
    text-align: center;
    margin-bottom: 40px;
}
@media (min-width: 768px) { .sk-ap-section-header { margin-bottom: 60px; } }

.sk-ap-subheading {
    display: block;
    color: var(--sk-primary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
@media (min-width: 768px) { .sk-ap-subheading { font-size: 14px; } }

.sk-ap-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 800;
}
@media (min-width: 768px) { .sk-ap-section-header h2 { font-size: 40px; } }

/* Stats */
.sk-ap-stats-section { padding-top: 0; }
.sk-ap-stat-card {
    padding: 24px 16px;
    text-align: center;
}
.sk-ap-stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    word-break: break-word;
}
.sk-ap-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--sk-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) { 
    .sk-ap-stat-card { padding: 32px 24px; }
    .sk-ap-stat-number { font-size: 48px; }
    .sk-ap-stat-label { font-size: 14px; }
}

/* Mission & Vision */
.sk-ap-mission-card, .sk-ap-vision-card {
    padding: 24px;
}
@media (min-width: 768px) {
    .sk-ap-mission-card, .sk-ap-vision-card { padding: 40px; }
}

.sk-ap-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.sk-ap-icon-wrapper svg { width: 28px; height: 28px; stroke-width: 2; }
@media (min-width: 768px) {
    .sk-ap-icon-wrapper { width: 64px; height: 64px; border-radius: 20px; margin-bottom: 24px; }
    .sk-ap-icon-wrapper svg { width: 32px; height: 32px; }
}

.sk-ap-mission-card h2, .sk-ap-vision-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
}
.sk-ap-mission-card p, .sk-ap-vision-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #0f172a;
}
@media (min-width: 768px) {
    .sk-ap-mission-card h2, .sk-ap-vision-card h2 { font-size: 28px; margin-bottom: 16px; }
    .sk-ap-mission-card p, .sk-ap-vision-card p { font-size: 16px; line-height: 1.8; }
}

/* Core Values */
.sk-ap-value-card {
    background: var(--sk-surface);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .sk-ap-value-card { padding: 32px; }
}

.sk-ap-value-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.sk-ap-emoji { font-size: 24px; }
@media (min-width: 768px) {
    .sk-ap-value-icon-box { width: 56px; height: 56px; margin-bottom: 20px; }
    .sk-ap-emoji { font-size: 28px; }
}

.sk-ap-value-card h3 { font-size: 18px; margin-bottom: 8px; }
.sk-ap-value-card p { font-size: 14px; margin: 0; line-height: 1.6; color: #0f172a; }
@media (min-width: 768px) {
    .sk-ap-value-card h3 { font-size: 20px; margin-bottom: 12px; }
    .sk-ap-value-card p { font-size: 15px; line-height: 1.7; }
}

/* Team */
.sk-ap-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .sk-ap-team-grid { gap: 40px; }
}

.sk-ap-team-card {
    background: var(--sk-surface);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    flex: 1 1 300px;
    max-width: 420px;
}
.sk-ap-team-header {
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
@media (min-width: 768px) {
    .sk-ap-team-header { height: 160px; }
}

.sk-ap-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(50%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border: 4px solid var(--sk-surface);
    overflow: hidden;
}
.sk-ap-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.sk-ap-team-avatar .sk-ap-emoji { font-size: 48px; }
@media (min-width: 768px) {
    .sk-ap-team-avatar { width: 140px; height: 140px; }
    .sk-ap-team-avatar .sk-ap-emoji { font-size: 64px; }
}

.sk-ap-team-body {
    padding: 70px 24px 32px;
    text-align: center;
}
@media (min-width: 768px) {
    .sk-ap-team-body { padding: 80px 32px 40px; }
}

.sk-ap-team-body h3 { font-size: 20px; margin-bottom: 4px; }
@media (min-width: 768px) { .sk-ap-team-body h3 { font-size: 22px; } }

.sk-ap-team-role {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--sk-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
@media (min-width: 768px) { .sk-ap-team-role { font-size: 14px; margin-bottom: 20px; } }

.sk-ap-team-body p { font-size: 14px; margin: 0; line-height: 1.7; color: #0f172a; }
@media (min-width: 768px) { .sk-ap-team-body p { font-size: 15px; } }

/* Timeline */
.sk-ap-timeline-wrapper {
    position: relative;
    padding: 10px 0 10px 24px;
}
@media (min-width: 768px) {
    .sk-ap-timeline-wrapper { padding: 20px 0 20px 0; }
}
.sk-ap-timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,107,53,0) 0%, rgba(255,107,53,0.3) 15%, rgba(255,107,53,0.3) 85%, rgba(255,107,53,0) 100%);
}
@media (min-width: 768px) {
    .sk-ap-timeline-line { left: 50%; transform: translateX(-50%); margin-left: -1px; }
}

.sk-ap-timeline-node {
    position: relative;
    margin-bottom: 32px;
    width: 100%;
}
@media (min-width: 768px) {
    .sk-ap-timeline-node { margin-bottom: 40px; width: 50%; }
    
    /* Child 2 (Node 1), Child 4 (Node 3) -> Left Side */
    .sk-ap-timeline-node:nth-child(even) {
        margin-left: 0;
        padding-right: 40px;
        text-align: right;
    }
    
    /* Child 3 (Node 2), Child 5 (Node 4) -> Right Side */
    .sk-ap-timeline-node:nth-child(odd) {
        margin-left: 50%;
        padding-left: 40px;
        text-align: left;
    }
}

.sk-ap-timeline-dot {
    position: absolute;
    left: -6px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sk-primary);
    z-index: 2;
}
@media (min-width: 768px) {
    /* Dot for Left Side cards */
    .sk-ap-timeline-node:nth-child(even) .sk-ap-timeline-dot { 
        left: auto; 
        right: -7px; 
    }
    /* Dot for Right Side cards */
    .sk-ap-timeline-node:nth-child(odd) .sk-ap-timeline-dot { 
        left: -7px; 
    }
}

.sk-ap-timeline-content {
    padding: 20px;
    margin-left: 16px;
    position: relative;
}
@media (min-width: 768px) {
    .sk-ap-timeline-content { padding: 24px; margin-left: 0; }
}

.sk-ap-timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: var(--sk-grad-orange-soft);
    color: var(--sk-primary);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
@media (min-width: 768px) { .sk-ap-timeline-year { font-size: 14px; margin-bottom: 12px; } }

.sk-ap-timeline-content h3 { font-size: 18px; margin-bottom: 6px; }
.sk-ap-timeline-content p { font-size: 14px; margin: 0; color: #0f172a; }
@media (min-width: 768px) {
    .sk-ap-timeline-content h3 { font-size: 20px; margin-bottom: 8px; }
    .sk-ap-timeline-content p { font-size: 15px; }
}

/* Features */
.sk-ap-features-grid {
    background: var(--sk-surface);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}
@media (min-width: 768px) { 
    .sk-ap-features-grid { padding: 64px; border-radius: 32px; } 
}

.sk-ap-feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    transition: background 0.3s ease;
}
@media (min-width: 768px) {
    .sk-ap-feature-item { flex-direction: row; padding: 24px; gap: 20px; }
}

.sk-ap-feature-item:hover {
    background: var(--sk-bg);
}
.sk-ap-feature-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--sk-grad-orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sk-primary);
}
@media (min-width: 768px) {
    .sk-ap-feature-icon-box { width: 48px; height: 48px; border-radius: 16px; }
}
.sk-ap-feature-icon-box svg { width: 20px; height: 20px; stroke-width: 2.5; }
@media (min-width: 768px) { .sk-ap-feature-icon-box svg { width: 24px; height: 24px; } }

.sk-ap-feature-info h3 { font-size: 16px; margin-bottom: 6px; }
.sk-ap-feature-info p { font-size: 14px; margin: 0; line-height: 1.5; color: #0f172a; }
@media (min-width: 768px) {
    .sk-ap-feature-info h3 { font-size: 18px; margin-bottom: 8px; }
    .sk-ap-feature-info p { font-size: 15px; line-height: 1.6; }
}
