:root {
            --bg-light: #ffffff;
            --bg-gray: #f8fafc;
            --primary: #422772;
            --primary-soft: #321d54;
            --primary-light: #563b8a;
            --secondary: #E52579;
            --accent: #88C1EF;
            --text-main: #212121;
            --text-muted: #2d3748;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --success: #10b981;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: #ffffff !important;
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header */
        

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px; height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            display: flex; justify-content: center; align-items: center;
            font-size: 1.1rem;
        }

        .logo-text h1 { font-size: 1.8rem; font-weight: 700; line-height: 1.2; color: #212121; text-shadow: none; letter-spacing: 1.5px; }
        .logo-text p { font-size: 0.85rem; color: #212121; font-weight: 700; letter-spacing: 0.5px; }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #212121;
            text-shadow: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px; left: 0; width: 0; height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

        .auth-btns { display: flex; gap: 1rem; }
        .btn { padding: 0.6rem 1.5rem; border-radius: 30px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: 1px solid transparent; }
        
        .auth-btns .btn-outline {
            background: transparent;
            border: 2px solid #212121;
            color: #212121;
            font-weight: 700;
        }

        .auth-btns .btn-outline:hover {
            background: #212121;
            color: white;
            border-color: #212121;
        }

        .btn-solid {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(109, 40, 217, 0.2);
        }

        .btn-solid:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Services Hero Section */
        .services-hero {
            padding: 20px 5% 5px;
            text-align: left;
            background: #ffffff !important;
            position: relative;
            overflow: hidden;
        }

        .services-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
            animation: slideUp 0.8s backwards;
        }

        .text-gradient-purple {
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            color: transparent !important;
            display: inline-block;
        }

        .services-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            margin: 0;
            white-space: nowrap;
            animation: slideUp 0.8s 0.2s backwards;
        }

        /* Floating particles */
        .particles-container {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .particle {
            position: absolute;
            background: rgba(49, 0, 74, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(100vh) scale(0); opacity: 0; }
            50% { opacity: 1; }
            100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
        }

        /* Quick Access Section */
        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5% 2rem;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem !important;
        }

        .section-header h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.3rem;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Glassmorphism Cards for Categories */
        .quick-access-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-bottom: 4.5rem !important;
        }

        .category-card {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 0.8rem 0.5rem;
            text-align: center;
            box-shadow: 0 8px 32px rgba(49, 0, 74, 0.08), inset 0 1px 0 rgba(255,255,255,0.9);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* Shimmer sweep effect */
        .category-card::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 60%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
            transform: skewX(-20deg);
            transition: none;
        }
        .category-card:hover::before {
            left: 150%;
            transition: left 0.6s ease;
        }

        /* Colored bottom glow border on hover */
        .category-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 10%; width: 80%; height: 3px;
            border-radius: 0 0 16px 16px;
            background: linear-gradient(90deg, #88C1EF, #E52579, #3b82f6);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .category-card:hover::after { opacity: 1; }

        .category-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 16px 36px rgba(49, 0, 74, 0.12), inset 0 1px 0 rgba(255,255,255,0.95);
            border-color: rgba(49, 0, 74, 0.25);
            background: rgba(255, 255, 255, 0.85);
        }

        .cat-icon-wrapper {
            width: 36px; height: 36px;
            margin: 0 auto 0.4rem;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.05rem; color: white;
            position: relative;
            z-index: 2;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
        }
        
        .category-card:hover .cat-icon-wrapper {
            transform: scale(1.1) rotate(6deg);
            filter: brightness(1.1);
        }

        /* Specific Icon Colors */
        .bg-blue { background: rgba(59, 130, 246, 0.15) !important; color: #3b82f6 !important; box-shadow: none; }
        .bg-pink { background: rgba(236, 72, 153, 0.15) !important; color: #ec4899 !important; box-shadow: none; }
        .bg-teal { background: rgba(20, 184, 166, 0.15) !important; color: #14b8a6 !important; box-shadow: none; }
        .bg-orange { background: rgba(249, 115, 22, 0.15) !important; color: #f97316 !important; box-shadow: none; }
        .bg-purple { background: rgba(139, 92, 246, 0.15) !important; color: #8b5cf6 !important; box-shadow: none; }
        .bg-red { background: rgba(244, 63, 94, 0.15) !important; color: #f43f5e !important; box-shadow: none; }

        .category-card h3 {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.15rem;
            letter-spacing: 0.03em;
            position: relative; z-index: 2;
        }

        .category-card p {
            font-size: 0.72rem;
            color: var(--text-muted);
            font-weight: 430;
            line-height: 1.35;
            position: relative; z-index: 2;
        }

        /* Dynamic mesh background for documents area to make glassmorphism pop */
        .documents-wrapper {
            position: relative;
            padding: 0 !important;
            background: none !important;
            border-radius: 0;
            overflow: visible;
            border: none !important;
            box-shadow: none !important;
            margin-top: 1rem;
        }

        .documents-wrapper::before {
            display: none !important;
        }

        /* Document List Grid */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .doc-card {
            background: #ffffff;
            border: 1px solid rgba(66, 39, 114, 0.22);
            border-radius: 20px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .doc-card::after {
            display: none !important;
        }

        .doc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(66, 39, 114, 0.1);
            border-color: rgba(66, 39, 114, 0.25);
            background: #ffffff;
        }

        .doc-info {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex: 1;
        }

        .doc-icon {
            width: 48px;
            height: 48px;
            background: rgba(66, 39, 114, 0.05) !important;
            color: #422772 !important;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(66, 39, 114, 0.03);
            transition: var(--transition);
        }

        .doc-card:hover .doc-icon {
            background: var(--primary) !important;
            color: white !important;
            transform: scale(1.08);
            box-shadow: 0 4px 15px rgba(66, 39, 114, 0.25);
        }

        .doc-details h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 0.2rem;
            line-height: 1.4;
        }

        .doc-details p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .download-btn {
            width: 38px; height: 38px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--primary);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
            text-decoration: none;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .doc-card:hover .download-btn {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(49, 0, 74, 0.3);
        }

        /* Footer */
        
        
        
        
        
        
        
        
        
        
        

        /* Animations */
        @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); margin-bottom: 4px; }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 5rem !important;
            flex-wrap: wrap;
        }

        .filter-tab {
            padding: 0.6rem 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--primary);
            border-radius: 30px;
            font-weight: 400;
            font-size: 0.9rem;
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-tab:hover, .filter-tab.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(49, 0, 74, 0.2);
            font-weight: 700;
        }

        @media (max-width: 1024px) {
            .documents-grid { grid-template-columns: repeat(2, 1fr); }
            .documents-wrapper { padding: 2rem; }
            
        }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .documents-grid { grid-template-columns: 1fr; }
            .documents-wrapper { padding: 1.5rem; }
            
            .services-title { font-size: 3rem; }
        }
    
        /* Top Utility Bar */
        .top-utility-bar {
            background: #422772 !important;
            border-bottom: none !important;
            color: white;
            font-size: 0.8rem;
            padding: 0.4rem 5%;
            z-index: 1002;
            position: relative;
        }
        .utility-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .utility-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .utility-right button, .utility-right select {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }
        .utility-right button:hover, .utility-right select:hover {
            background: rgba(255,255,255,0.3);
        }
        .utility-right select option {
            color: #333;
        }
        .utility-right .divider {
            width: 1px;
            height: 15px;
            background: rgba(255,255,255,0.3);
            margin: 0 5px;
        }
        
        /* Shimmer Shining Card Effect for Header & Footer */
        
        
        

    
        .auth-btns .btn-solid {
            background: #212121 !important;
            color: white !important;
            border: 2px solid #212121 !important;
            font-weight: 700 !important;
            box-shadow: none !important;
        }
        .auth-btns .btn-solid:hover {
            background: #422772 !important;
            border-color: #422772 !important;
            color: white !important;
        }
    
    
        /* Footer Text Color Fix */
        
        
        
        
        
        
        
        
        /* Add a subtle white glow so the dark text is still readable at the top where the background is dark purple */
        
        