﻿/* About page */
        .page-header {
            margin-top: 80px;
            background: linear-gradient(135deg, var(--cream) 0%, #F5E6D3 100%);
            padding: 5rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .page-header h1 {
            font-size: 3.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .page-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Story Section */
        .story-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .story-images {
            position: relative;
        }

        .story-img-main {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
        }

        .story-img-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 20px;
            border: 8px solid white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            animation: float 6s ease-in-out infinite;
        }

        .story-badge {
            position: absolute;
            top: 30px;
            left: -20px;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            z-index: 2;
        }

        .story-badge .years {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .story-badge span {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .story-content h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .story-content h2 span {
            color: var(--secondary);
            font-style: italic;
        }

        .story-content p {
            color: var(--text-light);
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .story-signature {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .signature-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent);
        }

        .signature-text strong {
            display: block;
            color: var(--dark);
            font-size: 1.1rem;
        }

        .signature-text span {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Mission Vision Values */
        .mvv-section {
            background: white;
            padding: 5rem 2rem;
        }

        .mvv-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .mvv-card {
            background: var(--cream);
            padding: 2.5rem;
            border-radius: 24px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
        }

        .mvv-card:hover::before {
            transform: scaleX(1);
        }

        .mvv-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-light), rgba(212, 175, 55, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: var(--primary);
            transition: all 0.3s;
        }

        .mvv-card:hover .mvv-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            transform: scale(1.1);
        }

        .mvv-card h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .mvv-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Timeline */
        .timeline-section {
            padding: 5rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--accent), var(--secondary));
            top: 0;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 3rem;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
            max-width: 400px;
            position: relative;
            margin: 0 2rem;
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: var(--accent);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid var(--accent);
            border-radius: 50%;
            z-index: 2;
            top: 1.5rem;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            top: 1.5rem;
        }

        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 0.35rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .timeline-content h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .timeline-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Stats */
        .stats-section {
            background: linear-gradient(135deg, var(--dark), #4A3028);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 50%;
        }

        .stats-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: var(--accent);
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        /* Certifications */
        .cert-section {
            padding: 5rem 2rem;
            background: white;
        }

        .cert-grid {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .cert-card {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: all 0.3s;
            background: var(--cream);
        }

        .cert-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border-color: var(--accent);
        }

        .cert-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-light), rgba(212, 175, 55, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .cert-card h4 {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .cert-card p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Team */
        .team-section {
            padding: 5rem 2rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
            transition: all 0.3s;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(139, 69, 19, 0.12);
        }

        .team-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
        }

        .team-info {
            padding: 1.5rem;
        }

        .team-info h4 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }

        .team-info span {
            color: var(--secondary);
            font-size: 0.9rem;
            font-weight: 500;
            display: block;
            margin-bottom: 0.75rem;
        }

        .team-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary), #3CB371);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: white;
            color: var(--secondary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        
/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .page-header h1 { font-size: 2.8rem; }
    .story-section { grid-template-columns: 1fr; gap: 3rem; }
    .story-images { order: -1; max-width: 600px; margin: 0 auto; }
    .story-img-float { right: -10px; width: 200px; height: 200px; }
    .mvv-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 60px; padding-right: 0; }
    .timeline-dot { left: 20px; transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .page-header { padding: 4rem 1.5rem 3rem; }
    .page-header h1 { font-size: 2.2rem; }
    .story-section { padding: 3rem 1.5rem; }
    .story-img-main { height: 350px; }
    .story-img-float { width: 150px; height: 150px; bottom: -15px; right: -5px; }
    .story-badge { left: 10px; padding: 1rem 1.5rem; }
    .story-badge .years { font-size: 2rem; }
    .story-content h2 { font-size: 2rem; }
    .mvv-grid, .cert-grid, .team-grid, .stats-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
}
