:root {
            --primary-blue: #1a365d;
            --accent-gold: #d4af37;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #343a40;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, .navbar-brand {
            font-weight: 700;
            color: var(--primary-blue);
        }
        .bg-primary-blue {
            background-color: var(--primary-blue) !important;
        }
        .text-accent-gold {
            color: var(--accent-gold) !important;
        }
        .border-accent-gold {
            border-color: var(--accent-gold) !important;
        }
        .btn-gold {
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            font-weight: 600;
            padding: 0.75rem 2rem;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            color: white;
            padding: 10rem 0;
        }
        .section-padding {
            padding: 5rem 0;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .product-img {
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card-hover:hover .product-img {
            transform: scale(1.05);
        }
        .nav-link {
            font-weight: 600;
            color: var(--primary-blue) !important;
            margin: 0 0.5rem;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .navbar-scrolled {
            background-color: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .footer {
            background-color: var(--primary-blue);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: var(--accent-gold);
        }
        .flink {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 12px 20px;
            color: #ddd !important;
            display: inline-block;
            margin: 5px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .flink:hover {
            background: rgba(255,255,255,0.1);
            color: white !important;
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-gold);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 2px solid var(--accent-gold);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-gold);
            display: block;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0;
            }
            .section-padding {
                padding: 3rem 0;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
