@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');
        
        :root {
            --gold: #facc15;
        }
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        
        .heading-font {
            font-family: 'Playfair Display', sans-serif;
        }
        
        .hero-bg {
            background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                              url('https://images.pexels.com/photos/7594264/pexels-photo-7594264.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=1920');
            background-size: cover;
            background-position: center;
        }
        
        .nav-link {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .nav-link:hover {
            color: #facc15;
            transform: translateY(-2px);
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 50px -12px rgb(250 204 21 / 0.25);
        }
        
        .progress-bar {
            height: 4px;
            background: linear-gradient(to right, #facc15, #eab308);
            position: fixed;
            top: 0;
            left: 0;
            z-index: 50;
            transition: width 0.1s ease;
        }
        
        .gold-btn {
            background: linear-gradient(90deg, #facc15, #eab308);
            transition: all 0.3s;
        }
        
        .gold-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(250, 204, 21, 0.6);
        }
        
        .mega-menu {
            display: none;
        }
        
        .mega-menu-active {
            display: block;
        }
        .blogroll {
            font-size: small;
            text-align: center;
        }
        .blogroll span{
            font-style: italic;
        }
        .blogroll ul{
            margin-top: 10px;
        }
        .blogroll li{
            font-size: smaller;
            font-weight: bold;
            color: #facc15;
        }