       html {
            scroll-behavior: smooth;
        }
        .font-serif {
            font-family: 'Playfair Display', serif;
        }
        .section-padding {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }
        @media (min-width: 640px) {
            .section-padding {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #E1C1A7;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .active-nav::after {
            width: 100%;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .service-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .gallery-item {
            overflow: hidden;
            position: relative;
        }
        .gallery-item img {
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .testimonial-card {
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background-color: white;
            border-radius: 0.75rem;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .dark .modal-content {
            background-color: #2A231F;
            color: #EFEBE8;
        }
        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid #E5E7EB;
        }
        .dark .modal-header {
            border-bottom: 1px solid #4B5563;
        }
        .modal-body {
            padding: 1.5rem;
        }
        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6B7280;
        }
        .close-modal:hover {
            color: #374151;
        }
        .dark .close-modal:hover {
            color: #D1D5DB;
        }
        .category-btn.active {
            background-color: #E1C1A7;
            color: #2A231F;
            font-weight: bold;
        }
        .category-btn:not(.active) {
            background-color: #f1f1f1;
            color: #4F4A45;
        }
        .dark .category-btn:not(.active) {
            background-color: #3a3a3a;
            color: #EFEBE8;
        }
        .filter-chip.active-filter {
            background-color: #E1C1A7;
            color: #2A231F;
            font-weight: bold;
        }
        .filter-chip:not(.active-filter) {
            background-color: #f1f1f1;
            color: #4F4A45;
        }
        .dark .filter-chip:not(.active-filter) {
            background-color: #3a3a3a;
            color: #EFEBE8;
        }
        .subcategory-filters {
            display: none;
        }
        .subcategory-filters.active {
            display: flex;
        }
        .gallery-item {
            display: block;
        }
        .gallery-item.hidden {
            display: none;
        }
        .ceo{
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }
        /* Logo styling */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }
        
        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #E1C1A7;
            line-height: 1.2;
        }
        
        .logo-text span {
            display: block;
            font-size: 0.875rem;
            font-weight: 400;
            color: #4F4A45;
        }
        
        .dark .logo-text {
            color: #E1C1A7;
        }
        
        .dark .logo-text span {
            color: #EFEBE8;
        }
        
        /* Hero logo styling */
        .hero-logo {
            max-width: 400px;
            margin: 0 auto 2rem;
        }
        
        .hero-logo-img {
            width: 100%;
            height: auto;
            filter: brightness(0) invert(1);
        }
        
        @media (max-width: 768px) {
            .logo-img {
                height: 32px;
            }
            
            .logo-text {
                font-size: 1.1rem;
            }
            
            .hero-logo {
                max-width: 300px;
            }
        }

        /* Mobile menu styles */
        #mobile-menu {
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
        }
        
        #mobile-menu.open {
            max-height: 500px;
            padding: 1rem 0;
        }