
        :root {
            --font-size: 14px;
            --background: #ffffff;
            --foreground: oklch(0.145 0 0);
            --card: #ffffff;
            --card-foreground: oklch(0.145 0 0);
            --primary: #030213;
            --primary-foreground: oklch(1 0 0);
            --secondary: oklch(0.95 0.0058 264.53);
            --secondary-foreground: #030213;
            --muted: #ececf0;
            --muted-foreground: #717182;
            --accent: #e9ebef;
            --accent-foreground: #030213;
            --border: rgba(0, 0, 0, 0.1);
            --radius: 0.625rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: var(--font-size);
            background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 50%, #e0e7ff 100%);
            color: var(--foreground);
            line-height: 1.5;
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .hero-section {
            background: linear-gradient(90deg, #2563eb 0%, #7c3aed 50%, #4338ca 100%);
            color: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .brand-info {
            flex: 1;
        }

        .brand-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .brand-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .hero-description {
            color: rgba(255, 255, 255, 0.9);
        }

        .holiday-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1rem;
            border-radius: 0.5rem;
            text-align: right;
            min-width: 250px;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.5rem;
            padding: 1rem;
            text-align: center;
        }

        .metric-icon {
            width: 2rem;
            height: 2rem;
            margin: 0 auto 0.5rem;
            background: var(--primary);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .main-content {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .navigation {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            padding: 0.5rem;
            background: var(--muted);
            border-radius: 0.75rem;
            flex-wrap: wrap;
        }

        .nav-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 0.5rem;
            background: transparent;
            color: var(--foreground);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .nav-button.active {
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .nav-badge {
            font-size: 0.75rem;
            padding: 0.125rem 0.375rem;
            border-radius: 9999px;
            background: var(--primary);
            color: var(--primary-foreground);
        }

        .nav-button.active .nav-badge {
            background: var(--primary-foreground);
            color: var(--primary);
        }

        .content-section {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .section-description {
            color: var(--muted-foreground);
        }

        .card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .card-header {
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid var(--border);
        }

        .card-content {
            padding: 1.5rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .team-member {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: all 0.3s ease;
            max-height: 400px;
        }

        .team-member:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }

        .member-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }

        .member-info {
            padding: 1rem;
        }

        .member-name {
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .member-details {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .member-image-container{
            position: relative; 
            max-height: 275px; 
            overflow: hidden;
        }

        .badge {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 500;
            background: #10b981;
            color: white;
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
        }

        .inspiration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
        }

        .inspiration-card {
            position: relative;
            overflow: hidden;
        }

        .inspiration-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
        }

        .inspiration-content {
            position: relative;
            z-index: 10;
            padding: 2rem;
        }

        .director-section {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .director-image {
            width: 6rem;
            height: 6rem;
            border-radius: 1rem;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            flex-shrink: 0;
        }

        .quote-section {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .quote-icon {
            background: rgba(var(--primary), 0.1);
            padding: 0.75rem;
            border-radius: 0.75rem;
            flex-shrink: 0;
        }

        .quote-text {
            font-style: italic;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .quote-author {
            font-weight: 500;
            color: var(--primary);
        }

        .moments-grid {
            display: grid;
            gap: 2rem;
        }

        .moment-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
        }

        .moment-header {
            padding: 1.5rem 1.5rem 1rem;
            border-bottom: 1px solid var(--border);
        }

        .moment-title {
            font-size: 1.25rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .moment-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            flex-wrap: wrap;
        }

        .moment-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .moment-image {
            aspect-ratio: 16/9;
            border-radius: 0.75rem;
            overflow: hidden;
        }

        .moment-image img {
            width: 100%;
            height: 100%;
              object-fit:cover;
           
            transition: transform 0.3s ease;
        }

        .moment-image:hover img {
            transform: scale(1.05);
        }

        .updates-list {
            display: grid;
            gap: 1.5rem;
        }

        .update-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .update-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .update-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .update-info {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            flex: 1;
        }

        .update-icon {
            padding: 0.5rem;
            border-radius: 0.5rem;
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .update-title {
            font-weight: 500;
            font-size: 1.125rem;
            margin-bottom: 0.25rem;
        }

        .priority-badge {
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .priority-high {
            background: #fef2f2;
            color: #dc2626;
        }

        .priority-medium {
            background: #fefce8;
            color: #ca8a04;
        }

        .appreciation-card {
            position: relative;
            overflow: hidden;
        }

        .appreciation-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fecaca 100%);
        }

        .appreciation-content {
            position: relative;
            z-index: 10;
            padding: 2rem;
        }

        .appreciation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .appreciation-info {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .appreciation-icon {
            background: #fbbf24;
            color: white;
            padding: 0.75rem;
            border-radius: 0.75rem;
        }

        .appreciation-note {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 0.75rem;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .note-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .brand-logo {
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .note-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .footer {
            margin-top: 3rem;
            text-align: center;
            color: var(--muted-foreground);
        }

        @media (max-width: 768px) {
            .hero-header {
                flex-direction: column;
            }

            .navigation {
                flex-direction: column;
            }

            .nav-button {
                justify-content: center;
            }

            .inspiration-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .director-section {
                flex-direction: column;
                text-align: center;
            }
           
        }
    