
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #2c3e50;
            --accent-color: #27ae60;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
            color: white;
            padding: 80px 0 40px;
            margin-bottom: 50px;
        
            position: relative;
            overflow: hidden;
        }

        .page-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: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .page-header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb-item a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
        }

        .page-header .breadcrumb-item a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .page-header .breadcrumb-item.active {
            color: white;
            font-weight: 600;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: white;
        }

        /* Story Section */
        .story-section {
            padding: 60px 0;
            background: white;
        }

        .story-content h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .story-content h2 span {
            color: var(--primary-color);
        }

        .story-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .story-content .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary-color);
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin-bottom: 30px;
        }

        .story-image {
            border-radius: 0px;
            overflow: hidden;
           
            position: relative;
        }

        .story-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .story-image:hover img {
            transform: scale(1.05);
        }

        .story-image .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            padding: 20px;
            border-radius: 50%;
            width: 120px;
            height: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 600;
          
        }

        .story-image .experience-badge .years {
            font-size: 2rem;
            line-height: 1;
        }

        .story-image .experience-badge .text {
            font-size: 0.9rem;
        }

        /* Founder Quote */
        .founder-quote {
            margin-top: 40px;
            padding: 30px;
            background: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            border-radius: 0px;
          
        }

        .founder-quote i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            opacity: 0.5;
        }

        .founder-quote blockquote {
            font-size: 1.2rem;
            font-style: italic;
            margin: 15px 0;
            color: var(--text-dark);
            line-height: 1.8;
        }

        .founder-quote cite {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            font-style: normal;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary-color);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .timeline-card {
            background: white;
            padding: 35px;
            border-radius: 0px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .timeline-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-color);
        }

        .timeline-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255,107,0,0.1);
            border-color: var(--primary-color);
        }

        .timeline-year {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .timeline-content h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .timeline-content p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-color), #ff8c00);
            color: white;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        /* CTA Mini Cards */
        .cta-mini-section {
            padding: 60px 0;
            background: white;
        }

        .cta-mini-card {
            display: block;
            text-align: center;
            padding: 35px 25px;
            background: white;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }

        .cta-mini-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(255,107,0,0.1);
        }

        .cta-mini-card i {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .cta-mini-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cta-mini-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #34495e 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-cta {
            display: inline-block;
            padding: 15px 40px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-cta:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .story-content {
                text-align: center;
                margin-bottom: 30px;
            }

            .story-content h2 {
                font-size: 2rem;
            }

            .story-content .lead {
                text-align: left;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }
    