    :root {
            --coffee-brown: #4B2E2E;
            --cream: #F5E6CC;
            --caramel: #C69C72;
            --black: #1C1C1C;
            --light-brown: #8B5A2B;
            --dark-cream: #E8D5B5;
        }
        
        /* Custom Font */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
         html{
             overflow-x: hidden;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--black);
            overflow-x: hidden;
            scroll-behavior: smooth;
            background: linear-gradient(to bottom, var(--cream) 0%, #faf3e8 100%);
        }
        
        h1, h2, h3, h4, .font-serif {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--cream);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--caramel);
            border-radius: 10px;
            border: 2px solid var(--cream);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--coffee-brown);
        }
        
        /* Navigation */
        .nav-scrolled {
            background: rgba(75, 46, 46, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--coffee-brown), var(--light-brown));
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--coffee-brown);
            border: 2px solid var(--coffee-brown);
            padding: 12px 26px;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .btn-secondary:hover {
            background: var(--coffee-brown);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(75, 46, 46, 0.2);
        }
        
        .section-padding {
            padding: 100px 0;
        }
        
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
        }
        
        .loading-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(to right, var(--caramel), var(--coffee-brown));
            width: 0%;
            z-index: 9999;
            transition: width 0.4s ease;
        }
        
        /* Hero Section */
        .hero-pattern {
            background: linear-gradient(rgba(75, 46, 46, 0.85), rgba(75, 46, 46, 0.9)), url('https://images.unsplash.com/photo-1463797221720-6b07e6426c24?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
        
        /* Video Container */
        .video-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            position: relative;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
        }
        
        .video-overlay:hover {
            opacity: 1;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }
        
        /* Team Cards */
        .team-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .team-image {
            height: 300px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.05);
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: var(--caramel);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 10px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background: white;
            border: 4px solid var(--caramel);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd)::after {
            right: -13px;
        }
        
        .timeline-item:nth-child(even)::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Values Cards */
        .value-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--caramel), var(--coffee-brown));
            transition: height 0.4s ease;
        }
        
        .value-card:hover::before {
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .value-card:hover .value-icon {
            background: var(--coffee-brown);
            color: white;
            transform: scale(1.1);
        }
        
        /* Decorative Elements */
        .coffee-bean {
            position: absolute;
            opacity: 0.03;
            z-index: 0;
            pointer-events: none;
        }
        
        .bean-1 {
            top: 20%;
            left: 5%;
            width: 150px;
            height: 150px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
        }
        
        .bean-2 {
            bottom: 10%;
            right: 8%;
            width: 120px;
            height: 120px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 15 C75 15 85 40 85 50 C85 60 75 85 50 85 C25 85 15 60 15 50 C15 40 25 15 50 15 Z" fill="%234B2E2E"/></svg>');
            background-repeat: no-repeat;
            transform: rotate(45deg);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--coffee-brown);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--caramel);
            transform: translateY(-5px);
        }
        
        /* Stats Counter */
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--coffee-brown), var(--caramel));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        
        /* Responsive Timeline */
        @media screen and (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .timeline-item:nth-child(odd)::after {
                right: auto;
            }
        }
          body.dark-mode .filter-btn {
            border-color: #C69C72;
            color: #C69C72;
        }
        
        body.dark-mode .filter-btn.active, 
        body.dark-mode .filter-btn:hover {
            background: #C69C72;
            color: #121212;
        }
         body.dark-mode .search-container {
            background: #252525;
            color: #e0e0e0;
        }
          .dark-mode-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: var(--coffee-brown);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }
        
        .dark-mode-toggle:hover {
            background: var(--dark-brown);
            transform: translateY(-3px);
        }
        
        /* Dark Mode Styles */
        body.dark-mode {
            background-color: #121212;
            color: #e0e0e0;
        }
        
        body.dark-mode .bg-white {
            background-color: #1e1e1e !important;
            color: #e0e0e0;
        }
        
        body.dark-mode .sidebar-widget {
            background-color: #252525;
            border-color: #333;
        }
        
        body.dark-mode .text-gray-600, 
        body.dark-mode .text-gray-500,
        body.dark-mode .text-gray-400 {
            color: #a0a0a0 !important;
        }
        
        body.dark-mode .blog-card {
            background-color: #252525;
        }
        
        body.dark-mode .popular-post {
            border-bottom-color: #333;
        }
        