
        /* UNIFIED ORANGE THEME */
        :root {
            --orange-primary: #FF6B35;
            --orange-light: rgba(255, 107, 53, 0.1);
            --orange-medium: rgba(255, 107, 53, 0.3);
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafb;
        }

        .gradient-orange {
            background: linear-gradient(135deg, var(--orange-primary) 0%, rgba(255, 107, 53, 0.6) 100%);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF8C61 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .bento-card {
            background: white;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease-in-out;
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            border: 2px solid var(--orange-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--orange-light);
            pointer-events: none;
            flex-shrink: 0;
        }
        
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .number-highlight {
            font-size: clamp(4rem, 10vw, 8rem);
            font-weight: 900;
            line-height: 0.9;
            color: var(--orange-primary);
            opacity: 0.08;
            position: absolute;
            top: -20px;
            right: 20px;
            z-index: 0;
        }

        .title-main {
            font-size: 3rem !important;
            font-weight: 900 !important;
            line-height: 1.1 !important;
        }
        .title-section {
            font-size: 2.25rem !important;
            font-weight: 900 !important;
        }

        .subtitle-style-for-h5 {
            font-size: 1.25rem !important;
            font-weight: 400 !important;
            color: #6b7280 !important;
            text-align: center !important;
            margin-left: auto !important;
            margin-right: auto !important;
            max-width: 48rem !important;
        }

        .agency-title-style {
            font-size: 1.875rem !important;
            font-weight: 700 !important;
            color: #4b5563 !important;
            text-align: center !important;
            line-height: 1.2 !important;
        }

        @media (min-width: 1024px) {
            .agency-title-style {
                font-size: 2.25rem !important;
            }
        }
        
        @media (min-width: 1024px) {
            .title-main {
                font-size: 4.5rem !important;
            }
            .title-section {
                font-size: 3rem !important;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }

        .text-orange {
             color: var(--orange-primary);
        }

        /* Photo Gallery Styles */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        /* Team Culture Photo Grid - Max 3 columns */
        .team-culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 1200px) {
            .team-culture-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .photo-item {
            border-radius: 1.5rem;
            overflow: hidden;
            aspect-ratio: 16/10;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .photo-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .photo-item:hover img {
            transform: scale(1.1);
        }

        /* Hero Image */
        .hero-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 1.5rem;
        }

        /* History Section Styles */
        .history-section .title-gradient {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF8C61 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-horizontal {
            position: relative;
            padding: 2rem 0 1rem 0;
        }

        .timeline-line-horizontal {
            position: absolute;
            top: 20px;
            left: 5%;
            right: 5%;
            height: 4px;
            background: linear-gradient(to right, var(--orange-primary), rgba(255, 107, 53, 0.6));
            border-radius: 2px;
        }

        .timeline-line-horizontal::after {
            content: '';
            position: absolute;
            right: -8px;
            top: -6px;
            width: 0;
            height: 0;
            border-left: 12px solid var(--orange-primary);
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            position: relative;
            z-index: 10;
        }

        .timeline-item {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timeline-item.reveal-active {
            opacity: 1;
            transform: translateY(0);
        }

        .year-badge {
            display: inline-block;
            background: var(--orange-primary);
            color: white;
            padding: 0.375rem 1rem;
            border-radius: 1.5rem;
            font-weight: 700;
            font-size: 0.875rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            width: fit-content;
        }

        .history-card-compact {
            background: white;
            border: 1px solid #f0f0f0;
            border-radius: 1.25rem;
            padding: 1.5rem;
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
            text-align: center;
            height: auto;
            margin-bottom: 2rem;
        }

        .history-card-compact:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }

        .milestone-highlight {
            background: var(--orange-light);
            border-radius: 0.75rem;
            padding: 0.5rem 0.75rem;
            margin: 0.75rem 0;
            font-size: 0.8rem;
            color: #666;
            font-weight: 500;
        }

        .achievement-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 0.75rem;
        }

        .achievement-tag {
            background: var(--orange-light);
            color: var(--orange-primary);
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .timeline-items {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .timeline-line-horizontal {
                display: none;
            }
            
            .timeline-line-horizontal::after {
                display: none;
            }
            
            .photo-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .timeline-items {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .timeline-line-horizontal {
                display: none;
            }
            
            .timeline-line-horizontal::after {
                display: none;
            }
        }

        /* Team Section */
        .team-member {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 1.5rem;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--orange-primary);
            margin: 0 auto 1rem;
        }

        /* Fix for Font Awesome icons */
        .fas, .far, .fab, .fa {
            font-style: normal !important;
        }
    