
        :root {
            --navy: #0A1931;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--navy);
        }

        /* Navbar Styles */
        .navbar {
            background: var(--navy) !important;
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--orange) !important;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, rgba(10, 25, 49, 0.95), rgba(255, 107, 53, 0.85)), 
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 150px 0 100px;
            color: var(--white);
            position: relative;
            margin-top: 76px;
        }

        .page-header h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 1.1rem;
        }

        .breadcrumb-item a {
            color: var(--orange);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--white);
        }

        /* Story Section */
        .story-section {
            padding: 100px 0;
            background: var(--white);
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            color: var(--navy);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--orange);
            border-radius: 3px;
        }

        .story-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 20px;
        }

        .story-img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
        }

        .story-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .value-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            height: 100%;
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--orange);
        }

        .value-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            /* transform: rotateY(360deg) scale(1.1); */
            background: linear-gradient(135deg, var(--navy), #1a3a5c);
        }

        .value-icon i {
            font-size: 2.5rem;
            color: var(--white);
        }

        .value-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .value-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }

        .timeline {
            position: relative;
            padding: 50px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--orange);
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-content {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 40px;
            width: 45%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .timeline-description {
            color: #666;
            line-height: 1.7;
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--orange);
            border-radius: 50%;
            border: 4px solid var(--white);
            top: 20px;
            box-shadow: 0 0 0 4px var(--orange);
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .team-member {
            text-align: center;
            margin-bottom: 40px;
            transition: all 0.4s ease;
        }

        .team-img-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 25px;
        }

        .team-img {
            width: 250px;
            height: 250px;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 5px solid var(--orange);
            box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
        }

        .team-member:hover .team-img {
            transform: scale(1.05);
            border-color: var(--navy);
            box-shadow: 0 15px 50px rgba(10, 25, 49, 0.4);
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-member:hover .team-img img {
            transform: scale(1.15);
        }

        .team-name {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--navy);
            margin: 15px 0 8px;
        }

        .team-position {
            color: var(--orange);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .team-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 300px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
            color: var(--white);
        }

        .stat-item {
            text-align: center;
            padding: 30px;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--orange);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
        }

        .footer-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .footer-link:hover {
            color: var(--orange);
            padding-left: 12px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 8px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .social-icon:hover {
            background: var(--orange);
            /* transform: translateY(-8px) rotate(360deg); */
            border-color: var(--white);
        }

        .social-icon i {
            color: var(--white);
            font-size: 1.2rem;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
            }

            .timeline-marker {
                left: 30px;
            }

            .team-img {
                width: 200px;
                height: 200px;
            }

            .stat-number {
                font-size: 3rem;
            }
        }