 /* Timeline Left Right Combination Styles */
        .story-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .story-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #f9a825, #1a472a);
            border-radius: 2px;
        }

        .timeline-block {
            position: relative;
            width: 50%;
            padding: 20px 40px;
            margin-bottom: 40px;
        }

        .timeline-block-left {
            left: 0;
        }

        .timeline-block-right {
            left: 50%;
        }

        .timeline-dot {
            position: absolute;
            top: 30px;
            width: 50px;
            height: 50px;
            background: #f9a825;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 0 0 5px rgba(249, 168, 37, 0.2);
        }

        .timeline-block-left .timeline-dot {
            right: -25px;
        }

        .timeline-block-right .timeline-dot {
            left: -25px;
        }

        .timeline-dot i {
            color: #fff;
            font-size: 20px;
        }

        .timeline-content-box {
            background: #fff;
            padding: 25px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }

        .timeline-content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .timeline-block-left .timeline-content-box {
            margin-right: 30px;
        }

        .timeline-block-right .timeline-content-box {
            margin-left: 30px;
        }

        .timeline-year {
            display: inline-block;
            background: linear-gradient(135deg, #f9a825, #ffc107);
            color: #fff;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .timeline-content-box h4 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #1a472a;
            font-weight: 600;
        }

        .timeline-content-box p {
            margin-bottom: 0;
            color: #555;
            line-height: 1.6;
        }

        /* Arrow for left side */
        .timeline-block-left .timeline-content-box::before {
            content: '';
            position: absolute;
            right: -15px;
            top: 30px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid #fff;
        }

        /* Arrow for right side */
        .timeline-block-right .timeline-content-box::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 30px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 15px solid #fff;
        }

        /* Founder Cards */
        .founder-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .founder-card:hover {
            transform: translateY(-5px);
        }

        .founder-social a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: #f9a825;
            color: #fff;
            border-radius: 50%;
            line-height: 36px;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .founder-social a:hover {
            background: #1a472a;
            transform: translateY(-3px);
        }

        /* Message Content */
        .message-content {
            position: relative;
            padding: 20px 0;
        }

        .quote-icon {
            font-size: 40px;
            color: #f9a825;
            opacity: 0.3;
            position: absolute;
            top: -10px;
            left: -10px;
        }

        .signature {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        /* Vision Cards */
        .vision-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .vision-card:hover {
            transform: translateY(-5px);
        }

        .vision-icon i {
            font-size: 50px;
            color: #f9a825;
            margin-bottom: 20px;
            display: inline-block;
        }

        .vision-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a472a;
        }

        .vision-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Utility Classes */
        .py-120 {
            padding: 80px 0;
        }

        .py-80 {
            padding: 60px 0;
        }

        .bg-light {
            background-color: #f8f9fa !important;
        }

        .theme-btn {
            background: #f9a825;
            border: 2px solid #f9a825;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .theme-btn:hover {
            background: transparent;
            color: #f9a825;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .story-timeline::before {
                left: 30px;
            }

            .timeline-block {
                width: 100%;
                padding-left: 70px;
                padding-right: 20px;
            }

            .timeline-block-left {
                left: 0;
            }

            .timeline-block-right {
                left: 0;
            }

            .timeline-block-left .timeline-dot,
            .timeline-block-right .timeline-dot {
                left: 5px;
                right: auto;
            }

            .timeline-block-left .timeline-content-box,
            .timeline-block-right .timeline-content-box {
                margin-left: 0;
                margin-right: 0;
            }

            .timeline-block-left .timeline-content-box::before,
            .timeline-block-right .timeline-content-box::before {
                left: -15px;
                right: auto;
                border-right: 15px solid #fff;
                border-left: none;
            }

            .py-120 {
                padding: 50px 0;
            }

            .breadcrumb-title {
                font-size: 32px !important;
            }
            
            .founder-card {
                margin-bottom: 30px;
            }
        }




        /* Leader Card Styles */
        .leader-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .leader-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .leader-img {
            height: 280px;
            overflow: hidden;
        }

        .leader-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .leader-card:hover .leader-img img {
            transform: scale(1.05);
        }

        .leader-info {
            padding: 25px;
        }

        .leader-info h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: #1a472a;
        }

        .leader-position {
            display: inline-block;
            background: #f9a825;
            color: #fff;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .leader-quote {
            color: #555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
            font-style: italic;
        }

        .leader-quote i {
            color: #f9a825;
            margin-right: 5px;
        }

        .leader-details p {
            margin-bottom: 8px;
            font-size: 13px;
            color: #666;
        }

        .leader-details i {
            width: 20px;
            color: #f9a825;
            margin-right: 8px;
        }

        .leader-social {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .leader-social a {
            display: inline-block;
            width: 32px;
            height: 32px;
            background: #f5f5f5;
            color: #1a472a;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            margin-right: 8px;
            transition: all 0.3s ease;
        }

        .leader-social a:hover {
            background: #f9a825;
            color: #fff;
        }

        /* Leadership Timeline Styles */
        .leadership-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .leadership-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #f9a825, #1a472a);
            border-radius: 2px;
        }

        .timeline-block {
            position: relative;
            width: 50%;
            padding: 20px 40px;
            margin-bottom: 40px;
        }

        .timeline-block-left {
            left: 0;
        }

        .timeline-block-right {
            left: 50%;
        }

        .timeline-dot {
            position: absolute;
            top: 30px;
            width: 50px;
            height: 50px;
            background: #f9a825;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            box-shadow: 0 0 0 5px rgba(249, 168, 37, 0.2);
        }

        .timeline-block-left .timeline-dot {
            right: -25px;
        }

        .timeline-block-right .timeline-dot {
            left: -25px;
        }

        .timeline-dot i {
            color: #fff;
            font-size: 20px;
        }

        .timeline-content-box {
            background: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            gap: 20px;
        }

        .timeline-content-box:hover {
            transform: translateY(-5px);
        }

        .timeline-block-left .timeline-content-box {
            margin-right: 30px;
        }

        .timeline-block-right .timeline-content-box {
            margin-left: 30px;
        }

        .leader-timeline-img {
            width: 100px;
            height: 100px;
            flex-shrink: 0;
        }

        .leader-timeline-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #f9a825;
        }

        .leader-timeline-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #1a472a;
        }

        .leader-role {
            display: inline-block;
            background: #f9a825;
            color: #fff;
            padding: 2px 10px;
            border-radius: 15px;
            font-size: 11px;
            margin-bottom: 10px;
        }

        .leader-timeline-info p {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .leader-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .leader-credentials span {
            font-size: 11px;
            background: #f5f5f5;
            padding: 3px 10px;
            border-radius: 15px;
            color: #666;
        }

        .leader-credentials i {
            margin-right: 5px;
            color: #f9a825;
        }

        /* Admin Card */
        .admin-card {
            background: #fff;
            padding: 30px 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .admin-card:hover {
            transform: translateY(-5px);
        }

        .admin-icon i {
            font-size: 50px;
            color: #f9a825;
            margin-bottom: 15px;
        }

        .admin-card h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #1a472a;
        }

        .admin-role {
            font-size: 13px;
            color: #f9a825;
            font-weight: 500;
            display: block;
            margin-bottom: 12px;
        }

        .admin-card p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

        .admin-qualification {
            font-size: 12px;
            color: #666;
            padding-top: 10px;
            border-top: 1px solid #eee;
        }

        /* Philosophy List */
        .philosophy-list {
            margin-top: 20px;
        }

        .philo-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .philo-item i {
            font-size: 24px;
            color: #f9a825;
            flex-shrink: 0;
        }

        .philo-item h5 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #1a472a;
        }

        .philo-item p {
            font-size: 14px;
            color: #555;
            margin-bottom: 0;
        }

        /* Arrow styles for timeline */
        .timeline-block-left .timeline-content-box::before {
            content: '';
            position: absolute;
            right: -15px;
            top: 50px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid #fff;
        }

        .timeline-block-right .timeline-content-box::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 15px solid #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .leadership-timeline::before {
                left: 30px;
            }

            .timeline-block {
                width: 100%;
                padding-left: 70px;
                padding-right: 20px;
            }

            .timeline-block-left, .timeline-block-right {
                left: 0;
            }

            .timeline-block-left .timeline-dot,
            .timeline-block-right .timeline-dot {
                left: 5px;
                right: auto;
            }

            .timeline-content-box {
                flex-direction: column;
                text-align: center;
            }

            .leader-timeline-img {
                margin: 0 auto;
            }

            .timeline-block-left .timeline-content-box,
            .timeline-block-right .timeline-content-box {
                margin-left: 0;
                margin-right: 0;
            }

            .timeline-block-left .timeline-content-box::before,
            .timeline-block-right .timeline-content-box::before {
                left: -15px;
                right: auto;
                border-right: 15px solid #fff;
                border-left: none;
                top: 70px;
            }

            .leader-card {
                margin-bottom: 20px;
            }
        }

        .py-80 {
            padding: 60px 0;
        }

        .bg-light {
            background-color: #f8f9fa !important;
        }

        .theme-btn {
            background: #f9a825;
            border: 2px solid #f9a825;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .theme-btn:hover {
            background: transparent;
            color: #f9a825;
        }

        .shadow {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        }