        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 8px;
        }

        .timeline-container {
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        /* Vision & Mission Section */
        .vision-mission {
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-title h2 {
            font-size: 4rem;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 16px;
            letter-spacing: -0.025em;
        }

        .section-divider {
            width: 128px;
            height: 4px;
            background-color: #1e40af;
            margin: 0 auto;
            border-radius: 9999px;
            animation: bounce 2s infinite;
        }

        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vision-card, .mission-card {
            position: relative;
            text-align: center;
            opacity: 0;
            transition: all 0.7s ease-out;
        }

        .vision-card {
            animation: slideInLeft 1s ease-out 0.3s forwards;
        }

        .mission-card {
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        .card-header {
            margin-bottom: 16px;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border: 4px solid #1e40af;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all 0.7s ease;
        }

        .mission-card .icon-circle {
            border-color: #1e3a8a;
        }

        .vision-card:hover .icon-circle {
            transform: rotate(180deg);
            border-color: #1d4ed8;
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
        }

        .mission-card:hover .icon-circle {
            transform: rotate(180deg);
            border-color: #1e40af;
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
        }

        .icon {
            width: 40px;
            height: 40px;
            transition: transform 0.5s ease;
        }

        .vision-card:hover .icon,
        .mission-card:hover .icon {
            transform: scale(1.25);
        }

        .card-title {
            font-size: 2.25rem;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 8px;
            transition: color 0.5s ease;
        }

        .vision-card:hover .card-title {
            color: #1e40af;
        }

        .mission-card:hover .card-title {
            color: #1e3a8a;
        }

        .card-underline {
            width: 64px;
            height: 4px;
            background-color: #1e40af;
            margin: 0 auto;
            border-radius: 9999px;
            transition: all 0.5s ease;
        }

        .mission-card .card-underline {
            background-color: #1e3a8a;
        }

        .vision-card:hover .card-underline,
        .mission-card:hover .card-underline {
            width: 96px;
        }

        .vision-card:hover .card-image {
            transform: rotate(1deg);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
        }

        .mission-card:hover .card-image {
            transform: rotate(-1deg);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
        }

        .vision-card:hover .card-image img,
        .mission-card:hover .card-image img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .vision-card:hover .image-border,
        .mission-card:hover .image-border {
            border-color: rgba(30, 64, 175, 0.4);
        }

        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(30, 58, 138, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .vision-card:hover .image-overlay,
        .mission-card:hover .image-overlay {
            opacity: 1;
        }

        .card-text {
            color: #475569;
            line-height: 1.6;
            font-size: 1.125rem;
            font-weight: 500;
            transition: color 0.3s ease;
            text-align: justify;
        }

        .vision-card:hover .card-text,
        .mission-card:hover .card-text {
            color: #1e293b;
        }

        /* Services Section */
        .services {
            position: relative;
            overflow: hidden;
            padding: 10px 0;

        }

        /* Values Section */
        .values {
            position: relative;
            overflow: hidden;
            padding: 10px 0 50px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .value-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .value-card:nth-child(1) { animation-delay: 0.6s; }
        .value-card:nth-child(2) { animation-delay: 0.8s; margin-top: 32px; }
        .value-card:nth-child(3) { animation-delay: 1s; }

        .value-card-inner {
            background: white;
            border: 1px solid #dbeafe;
            padding: 24px;
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.7s ease;
        }

        .value-card:hover .value-card-inner {
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
        }

        .value-card:nth-child(1):hover .value-card-inner { transform: translateY(-32px) rotate(3deg) scale(1.05); }
        .value-card:nth-child(2):hover .value-card-inner { transform: translateY(-48px) rotate(-2deg) scale(1.05); }
        .value-card:nth-child(3):hover .value-card-inner { transform: translateY(-32px) rotate(-3deg) scale(1.05); }

        .card-bg-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .value-card:hover .card-bg-overlay {
            opacity: 1;
        }

        .value-icon-container {
            width: 112px;
            height: 112px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            transition: all 0.5s ease;
            position: relative;
            z-index: 10;
        }

        .value-card:nth-child(1) .value-icon-container { background: linear-gradient(135deg, #1e40af, #1e3a8a); }
        .value-card:nth-child(2) .value-icon-container { background: linear-gradient(135deg, #1e3a8a, #1e293b); }
        .value-card:nth-child(3) .value-icon-container { background: linear-gradient(135deg, #1e293b, #0f172a); }

        .value-card:hover .value-icon-container {
            transform: scale(1.1);
            box-shadow: 0 35px 70px rgba(30, 64, 175, 0.4);
        }

        .value-card:nth-child(1):hover .value-icon-container { transform: scale(1.1) rotate(12deg); }
        .value-card:nth-child(2):hover .value-icon-container { transform: scale(1.1) rotate(-12deg); }
        .value-card:nth-child(3):hover .value-icon-container { transform: scale(1.1) rotate(12deg); }

        .value-icon {
            width: 56px;
            height: 56px;
            color: white;
            transition: transform 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.25);
        }

        .value-title {
            font-size: 1.875rem;
            font-weight: 900;
            color: #1e293b;
            margin-bottom: 16px;
            letter-spacing: -0.025em;
            transition: color 0.5s ease;
            position: relative;
            z-index: 10;
        }

        .value-card:nth-child(1):hover .value-title { color: #1e40af; }
        .value-card:nth-child(2):hover .value-title { color: #1e3a8a; }
        .value-card:nth-child(3):hover .value-title { color: #1e293b; }

        .value-underline {
            width: 64px;
            height: 4px;
            margin: 0 auto 16px;
            border-radius: 9999px;
            transition: all 0.5s ease;
        }

        .value-card:nth-child(1) .value-underline { background-color: #1e40af; }
        .value-card:nth-child(2) .value-underline { background-color: #1e3a8a; }
        .value-card:nth-child(3) .value-underline { background-color: #1e293b; }

        .value-card:hover .value-underline {
            width: 96px;
        }

        .value-card:nth-child(1):hover .value-underline { background-color: #1d4ed8; }
        .value-card:nth-child(2):hover .value-underline { background-color: #1e40af; }
        .value-card:nth-child(3):hover .value-underline { background-color: #475569; }

        .value-description {
            color: #64748b;
            line-height: 1.6;
            font-size: 1.125rem;
            transition: color 0.3s ease;
            position: relative;
            z-index: 10;
            text-align: justify;
        }

        .value-card:hover .value-description {
            color: #475569;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
            40%, 43% { transform: translateY(-8px); }
            70% { transform: translateY(-4px); }
            90% { transform: translateY(-2px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }

            .vision-mission-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .value-card:nth-child(2) {
                margin-top: 0;
            }
        }

        
        :root {
            --color-primary: #1e3a8a;
            --color-secondary: #2d7a8a;
            --color-bg: #f5e6d3;
            --color-text: #1a1a1a;
            --color-text-light: #666;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --radius-base: 12px;
            --radius-full: 9999px;
        } 

        .timelinecontainer {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header with animated gradient */
        .header {
            text-align: center;
            margin-bottom: var(--space-32);
            animation: fadeInDown 0.8s ease-out;
        }

        .header h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #d4745f 0%, #2d7a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }

        .header p {
            font-size: 1.1rem;
            color: #8b6f47;
            font-weight: 500;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        /* Timeline wrapper */
        .timeline-wrapper {
            position: relative;
            padding: var(--space-32) 0;
            overflow-x: auto;
            scroll-behavior: smooth;
            margin-bottom: var(--space-32);
        }

        .timeline-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .timeline-wrapper::-webkit-scrollbar-track {
            background: rgba(212, 116, 95, 0.1);
            border-radius: 10px;
        }

        .timeline-wrapper::-webkit-scrollbar-thumb {
            background: linear-gradient(to right, #d4745f, #2d7a8a);
            border-radius: 10px;
        }

        .timeline {
            display: flex;
            gap: var(--space-24);
            padding-bottom: var(--space-16);
            position: relative;
        }

        /* Animated timeline line */
 

        .timeline-item {
            flex: 0 0 190px;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: slideIn 0.6s ease-out both;
        }

        .timeline-item:nth-child(odd) {
            animation: slideInLeft 0.6s ease-out both;
        }

        .timeline-item:nth-child(even) {
            animation: slideInRight 0.6s ease-out both;
        }


        /* Using CSS to simulate the nth-child delay */
        .timeline-item:nth-child(1) { animation-delay: 0.08s; }
        .timeline-item:nth-child(2) { animation-delay: 0.16s; }
        .timeline-item:nth-child(3) { animation-delay: 0.24s; }
        .timeline-item:nth-child(4) { animation-delay: 0.32s; }
        .timeline-item:nth-child(5) { animation-delay: 0.40s; }
        .timeline-item:nth-child(6) { animation-delay: 0.48s; }
        .timeline-item:nth-child(7) { animation-delay: 0.56s; }
        .timeline-item:nth-child(8) { animation-delay: 0.64s; }
        .timeline-item:nth-child(9) { animation-delay: 0.72s; }
        .timeline-item:nth-child(10) { animation-delay: 0.80s; }
        .timeline-item:nth-child(11) { animation-delay: 0.88s; }
        .timeline-item:nth-child(12) { animation-delay: 0.96s; }
        .timeline-item:nth-child(13) { animation-delay: 1.04s; }
        .timeline-item:nth-child(14) { animation-delay: 1.12s; }
        .timeline-item:nth-child(15) { animation-delay: 1.20s; }
        .timeline-item:nth-child(16) { animation-delay: 1.28s; }
        .timeline-item:nth-child(17) { animation-delay: 1.36s; }
        .timeline-item:nth-child(18) { animation-delay: 1.44s; }
        .timeline-item:nth-child(19) { animation-delay: 1.52s; }
        .timeline-item:nth-child(20) { animation-delay: 1.60s; }
        .timeline-item:nth-child(21) { animation-delay: 1.68s; }
        .timeline-item:nth-child(22) { animation-delay: 1.76s; }
        .timeline-item:nth-child(23) { animation-delay: 1.84s; }
        .timeline-item:nth-child(24) { animation-delay: 1.92s; }
        .timeline-item:nth-child(25) { animation-delay: 2.00s; }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px) rotateY(10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px) rotateY(-10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }

        /* Timeline marker */
        .timeline-marker {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            margin: 0 auto 12px;
            border-radius: var(--radius-full);
            background: white;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .timeline-item:nth-child(odd) .timeline-marker {
            border: 3px solid var(--color-primary);
            color: var(--color-primary);
            background: linear-gradient(135deg, rgba(212, 116, 95, 0.1), transparent);
        }

        .timeline-item:nth-child(even) .timeline-marker {
            border: 3px solid var(--color-secondary);
            color: var(--color-secondary);
            background: linear-gradient(135deg, rgba(45, 122, 138, 0.1), transparent);
        }

        .timeline-marker::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            from {
                left: -100%;
            }
            to {
                left: 100%;
            }
        }

        .timeline-marker:hover {
            transform: scale(1.2) translateY(-8px);
            box-shadow: 0 8px 25px rgba(212, 116, 95, 0.3);
        }

        /* Timeline content card */
        .timeline-content {
            background: white;
            border-radius: var(--radius-base);
            padding: var(--space-16);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            min-height: 100px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
        }

        .timeline-content:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            border-color: var(--color-primary);
        }

        .timeline-content:hover::before {
            transform: scaleX(1);
        }

        .timeline-year {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .timeline-milestone {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--color-text);
            font-weight: 500;
        }

        .milestone-list {
            font-size: 0.85rem;
            color: var(--color-text-light);
            margin-top: 12px;
            display: none;
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .timeline-content.expanded .milestone-list {
            display: block;
            max-height: 100px;
            animation: expandContent 0.4s ease;
        }

        @keyframes expandContent {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .expand-indicator {
            margin-top: auto;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-secondary);
            transition: all 0.3s ease;
        }

        .timeline-item:nth-child(odd) .expand-indicator {
            color: var(--color-primary);
        }

        .timeline-content.expanded .expand-indicator {
            transform: rotateZ(180deg);
        }

        /* Stats section */
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-24);
            padding: var(--space-32);
            border-top: 3px solid rgba(212, 116, 95, 0.2);
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .stat-card {
            background: linear-gradient(135deg, white 0%, rgba(245, 230, 211, 0.3) 100%);
            padding: var(--space-32);
            border-radius: var(--radius-base);
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 116, 95, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 30px rgba(212, 116, 95, 0.2);
            border-color: var(--color-primary);
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            font-variant-numeric: tabular-nums;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--color-text);
            font-weight: 600;
            letter-spacing: 0.02em;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-hint {
            text-align: center;
            font-size: 0.9rem;
            color: #999;
            margin-top: var(--space-16);
            font-style: italic;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .timeline-item {
                flex: 0 0 240px;
            }

            .timeline-marker {
                width: 60px;
                height: 60px;
                font-size: 1rem;
            }

            .timeline-content {
                padding: var(--space-16);
                min-height: 140px;
            }

            .timeline-year {
                font-size: 1.3rem;
            }

            .stats-section {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-16);
                padding: var(--space-24);
            }

            .stat-number {
                font-size: 2rem;
            }
        }



         .parallax-bg {
            position: absolute;
            inset: 0;
            opacity: 0.1;
            background: radial-gradient(circle at 20% 50%, #1e3a8a 0%, transparent 50%), 
                        radial-gradient(circle at 80% 20%, #1e40af 0%, transparent 50%);
            transition: transform 0.1s ease-out;
        }

        .timeline-container .parallax-bg {
                background: radial-gradient(circle at 30% 70%, #1e40af 0%, transparent 50%), 
                            radial-gradient(circle at 70% 30%, #1e3a8a 0%, transparent 50%);
                opacity: 0.1;
        }

        .vision-mission .parallax-bg {
                background: radial-gradient(circle at 70% 30%, #1e40af 0%, transparent 50%), 
                            radial-gradient(circle at 30% 70%, #1e3a8a 0%, transparent 50%);
                opacity: 0.1;
        }

        .services .parallax-bg {
                background: radial-gradient(circle at 30% 70%, #1e40af 0%, transparent 50%), 
                            radial-gradient(circle at 70% 30%, #1e3a8a 0%, transparent 50%);
                opacity: 0.1;
        }

        .values .parallax-bg {
                background: radial-gradient(circle at 70% 30%, #1e40af 0%, transparent 50%), 
                            radial-gradient(circle at 30% 0%, #1e3a8a 0%, transparent 50%);
                opacity: 0.1;
        }
