/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #0d1b2a;
            --secondary: #1b3a4b;
            --accent: #416788;
            --gold: #c8a951;
            --light: #f8f9fa;
            --dark: #0a141b;
            --text: #2c3e50;
            --text-light: #5d6d7e;
            --border: #e0e0e0;
            --shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
            --radius: 4px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text);
            background-color: #ffffff;
            font-weight: 300;
            overflow-x: hidden;
        }
        
        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader-content {
            text-align: center;
        }
        
        .loader-logo {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 2rem;
            animation: loaderPulse 2s infinite;
        }
        
        .loader-bar {
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .loader-progress {
            width: 0%;
            height: 100%;
            background: var(--gold);
            animation: loading 1.5s ease-in-out forwards;
        }
        
        @keyframes loading {
            to { width: 100%; }
        }
        
        @keyframes loaderPulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }
        
        /* Typography */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        h1 {
            font-size: 3.5rem;
            text-align: center;
            margin: 4rem 0 2rem;
            position: relative;
            padding-bottom: 1.5rem;
            color: var(--primary);
        }
        
        h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
            animation: lineExpand 1.2s ease-out;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-top: 3.5rem;
            position: relative;
            padding-left: 1.5rem;
            border-left: 4px solid var(--gold);
            color: var(--primary);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-top: 2.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--accent);
            animation: lineExpand 0.8s ease-out 0.3s both;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text);
        }
        
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }
        
        a:hover {
            color: var(--primary);
        }
        
        a:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s ease;
        }
        
        a:hover:after {
            width: 100%;
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        /* Header & Navigation */
        header {
            background: var(--gradient);
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(13, 27, 42, 0.1);
            transform: translateY(0);
            transition: transform 0.4s ease;
        }
        
        header.hidden {
            transform: translateY(-100%);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            position: relative;
        }
        
        /* Logo Animation */
        .logo-container {
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            display: flex;
            align-items: center;
            letter-spacing: 1px;
        }
        
        .logo-main {
            animation: logoReveal 1s ease-out;
        }
        
        .logo-accent {
            color: var(--gold);
            margin: 0 8px;
            font-weight: 800;
            position: relative;
        }
        
        .logo-accent:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--gold);
            bottom: -4px;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            animation: accentLine 1.2s ease-out 0.5s forwards;
        }
        
        .logo-subtitle {
            font-size: 0.7rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 4px;
            opacity: 0.8;
            color: white;
        }
        
        @keyframes logoReveal {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes accentLine {
            from { transform: scaleX(0); transform-origin: right; }
            to { transform: scaleX(1); transform-origin: left; }
        }
        
        @keyframes lineExpand {
            from { width: 0; }
            to { width: 100px; }
        }
        
        /* ===========================================
           MAIN NAVIGATION REDESIGN
           =========================================== */

        /* Desktop Main Navigation - Enhanced */
        .main-nav {
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
        }

        .main-nav::-webkit-scrollbar {
            height: 4px;
        }

        .main-nav::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 2px;
        }

        .main-nav::-webkit-scrollbar-thumb {
            background-color: var(--gold);
            border-radius: 2px;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 20px; /* Reduced gap for more items */
            position: relative;
            flex-wrap: nowrap;
            min-width: min-content;
        }

        .main-nav a {
            color: white;
            font-weight: 400;
            font-size: 0.9rem; /* Slightly smaller font */
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 12px 4px; /* Reduced padding */
            position: relative;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;

        }

        /* Elegant underline animation */
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .main-nav a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .main-nav a:hover::after {
            width: calc(100% - 8px);
            opacity: 1;
        }

        /* Active state */
        .main-nav a.active {
            color: var(--gold);
        }

        .main-nav a.active::after {
            width: calc(100% - 8px);
            opacity: 1;
        }

        /* Menu toggle button redesign */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .menu-toggle span {
            font-size: 1.8rem;
            line-height: 1;
            display: block;
            transition: transform 0.3s ease;
        }

        /* ===========================================
           MOBILE NAVIGATION - REDESIGNED
           =========================================== */
        @media (max-width: 992px) {
            .menu-toggle {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(13, 27, 42, 0.98);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                padding: 100px 30px 40px;
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                display: flex;
                flex-direction: column;
                overflow: hidden;
                box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
                overflow-x: hidden !important; /* Override desktop scroll */
            }
            
            .main-nav::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, 
                    rgba(13, 27, 42, 0.9) 0%, 
                    rgba(27, 58, 75, 0.9) 50%, 
                    rgba(65, 103, 136, 0.7) 100%);
                z-index: -1;
            }
            
            .main-nav.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                align-items: stretch;
                width: 100%;
                max-height: calc(100vh - 140px);
                overflow-y: auto;
                overflow-x: hidden;
                padding: 0 0 20px 0;
                scrollbar-width: thin;
                scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
                animation: menuSlideIn 0.6s ease-out 0.2s both;
            }
            
            @keyframes menuSlideIn {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .main-nav ul::-webkit-scrollbar {
                width: 4px;
            }
            
            .main-nav ul::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 2px;
            }
            
            .main-nav ul::-webkit-scrollbar-thumb {
                background-color: var(--gold);
                border-radius: 2px;
            }
            
            .main-nav li {
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                opacity: 0;
                transform: translateX(-20px);
                animation: menuItemReveal 0.5s ease-out forwards;
            }
            
            @keyframes menuItemReveal {
                to {
                    opacity: 1;
                    transform: translateX(0);
                }
            }
            
            /* Staggered animation for menu items */
            .main-nav.active li:nth-child(1) { animation-delay: 0.2s; }
            .main-nav.active li:nth-child(2) { animation-delay: 0.25s; }
            .main-nav.active li:nth-child(3) { animation-delay: 0.3s; }
            .main-nav.active li:nth-child(4) { animation-delay: 0.35s; }
            .main-nav.active li:nth-child(5) { animation-delay: 0.4s; }
            .main-nav.active li:nth-child(6) { animation-delay: 0.45s; }
            .main-nav.active li:nth-child(7) { animation-delay: 0.5s; }
            .main-nav.active li:nth-child(8) { animation-delay: 0.55s; }
            .main-nav.active li:nth-child(9) { animation-delay: 0.6s; }
            .main-nav.active li:nth-child(10) { animation-delay: 0.65s; }
            .main-nav.active li:nth-child(11) { animation-delay: 0.7s; }
            .main-nav.active li:nth-child(12) { animation-delay: 0.75s; }
            .main-nav.active li:nth-child(13) { animation-delay: 0.8s; }
            .main-nav.active li:nth-child(14) { animation-delay: 0.85s; }
            .main-nav.active li:nth-child(15) { animation-delay: 0.9s; }
            
            .main-nav a {
                display: flex;
                align-items: center;
                padding: 22px 20px;
                font-size: 1.1rem;
                position: relative;
                transition: all 0.3s ease;
                color: rgba(255, 255, 255, 0.9);
                width: 100%;
            }
            
            .main-nav a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 4px;
                background: var(--gold);
                transform: scaleY(0);
                transform-origin: top;
                transition: transform 0.3s ease;
            }
            
            .main-nav a::after {
                display: none; /* Hide the desktop underline on mobile */
            }
            
            .main-nav a:hover,
            .main-nav a:focus {
                background-color: rgba(255, 255, 255, 0.05);
                color: var(--gold);
                padding-left: 30px;
                transform: none;
            }
            
            .main-nav a:hover::before,
            .main-nav a:focus::before {
                transform: scaleY(1);
            }
            
            /* Menu close animation for toggle button */
            .menu-toggle.active span {
                transform: rotate(45deg);
            }
            
            /* Mobile menu footer */
            .mobile-menu-footer {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 20px 30px;
                background: rgba(0, 0, 0, 0.2);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                opacity: 0;
                animation: fadeInUp 0.5s ease-out 1s forwards;
            }
            
            .mobile-menu-footer p {
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.9rem;
                margin: 0;
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* Remove old mobile indicator */
            .mobile-menu-indicator {
                display: none !important;
            }
        }

        /* Tablet adjustments */
        @media (max-width: 768px) {
            .main-nav ul {
                max-height: calc(100vh - 120px);
            }
            
            .main-nav a {
                padding: 20px 15px;
                font-size: 1rem;
            }
        }

        /* Small mobile adjustments */
        @media (max-width: 576px) {
            .main-nav {
                padding: 90px 20px 30px;
            }
            
            .main-nav ul {
                max-height: calc(100vh - 100px);
            }
            
            .main-nav a {
                padding: 18px 15px;
                font-size: 0.95rem;
            }
            
            .mobile-menu-footer {
                padding: 15px 20px;
            }
        }

        /* Accessibility improvements */
        .main-nav a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
            border-radius: 4px;
        }

        /* Menu toggle animation states */
        .menu-toggle:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(13, 27, 42, 0.92), rgba(27, 58, 75, 0.92)), url('/assets/heroimage.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 180px 20px 100px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(200, 169, 81, 0.1) 0%, transparent 50%);
            animation: gradientShift 8s infinite alternate;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero h2 {
            color: white;
            border: none;
            font-size: 3.5rem;
            margin-bottom: 30px;
            padding-left: 0;
            animation: fadeInUp 1s ease-out 0.2s both;
        }
        
        .hero h2:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
            animation: lineExpand 1s ease-out 0.5s both;
        }
        
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            animation: fadeInUp 1s ease-out 0.4s both;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            background: transparent;
            color: #30912d;
            padding: 16px 36px;
            border-radius: var(--radius);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: 2px solid var(--gold);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            font-size: 0.9rem;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover {
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(200, 169, 81, 0.3);
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        .btn-accent {
            background: var(--gold);
            color: var(--primary);
            border-color: var(--gold);
        }
        
        .btn-accent:before {
            background: white;
        }
        
        .btn-accent:hover {
            color: var(--primary);
        }
        
        /* Fix for animation visibility issue */
		.bgotext, .content-section, .block-table {
		    opacity: 1 !important;
		    visibility: visible !important;
		}
        
        /* Content Sections */
        .content-section {
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 50px;
            margin-bottom: 60px;
            animation: fadeIn 1.2s ease-out;
            position: relative;
            overflow: hidden;
        }
        
        .content-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gold);
            transform: translateY(100%);
            animation: sectionReveal 0.8s ease-out 0.3s forwards;
        }
        
        /* Text Block Styles */
        .bgotext {
            background-color: var(--light);
            border-left: 4px solid var(--accent);
            padding: 40px;
            margin: 40px 0;
            border-radius: 0 var(--radius) var(--radius) 0;
            animation: slideInRight 0.8s ease-out;
            position: relative;
        }
        
        .bgotext:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, transparent 50%, rgba(65, 103, 136, 0.05) 50%);
        }
        
        .bgotext-dark {
            background: var(--gradient);
            color: white;
            border-left: 4px solid var(--gold);
        }
        
        .bgotext-dark h2 {
            color: white !important;
            border-left-color: var(--gold) !important;
        }
        
        .bgotext-dark h3 {
            color: white !important;
        }
        
        .bgotext-dark h3:after {
            background: var(--gold) !important;
        }
        
        .bgotext-dark h4 {
            color: white !important;
        }
        
        .bgotext-dark h4:after {
            background: var(--gold) !important;
        }
        
        .bgotext-dark p {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        .bgotext-dark:before {
            background: linear-gradient(45deg, transparent 50%, rgba(200, 169, 81, 0.05) 50%);
        }
        
        .bgotext-dark ul li, 
        .bgotext-dark ol li {
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        /* List Styles */
        ul, ol {
            margin: 25px 0 25px 40px;
        }
        
        ul li, ol li {
            margin-bottom: 12px;
            padding-left: 10px;
            position: relative;
            font-size: 1.1rem;
            color: var(--text);
        }
        
        /* Animated List Items */
        .styled-list {
            list-style: none;
            margin-left: 0;
        }
        
        .styled-list li {
            background-color: white;
            padding: 20px 25px;
            margin-bottom: 15px;
            border-radius: var(--radius);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid transparent;
            transition: var(--transition);
            transform: translateX(-20px);
            opacity: 0;
            animation: listItemReveal 0.6s ease-out forwards;
            counter-increment: item;
            position: relative;
            overflow: hidden;
            color: var(--text);
        }
        
        .styled-list li:before {
            content: counter(item);
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 4rem;
            font-weight: 700;
            opacity: 0.1;
            font-family: 'Playfair Display', serif;
        }
        
        .styled-list li:nth-child(1) { animation-delay: 0.1s; }
        .styled-list li:nth-child(2) { animation-delay: 0.3s; }
        .styled-list li:nth-child(3) { animation-delay: 0.5s; }
        .styled-list li:nth-child(4) { animation-delay: 0.7s; }
        .styled-list li:nth-child(5) { animation-delay: 0.9s; }
        
        .styled-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-left-color: var(--gold);
        }
        
        .styled-list-dark li {
            background-color: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.9) !important;
            border-left: 4px solid transparent;
        }
        
        .styled-list-dark li:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-left-color: var(--gold);
        }
        
        /* Table Styles */
        .block-table {
            overflow-x: auto;
            margin: 35px 0;
            border-radius: var(--radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            animation: tableReveal 0.8s ease-out;
        }
        
        .block-table:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            font-size: 0.95rem;
        }
        
        th {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            background-color: var(--secondary);
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
            color: var(--text);
        }
        
        tr {
            transition: var(--transition);
        }
        
        tr:nth-child(even) {
            background-color: var(--light);
        }
        
        tr:hover {
            background-color: rgba(65, 103, 136, 0.05);
        }
        
        /* Table in dark sections */
        .bgotext-dark table {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .bgotext-dark th {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .bgotext-dark td {
            color: rgba(255, 255, 255, 0.9);
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }
        
        .bgotext-dark tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.03);
        }
        
        .bgotext-dark tr:hover {
            background-color: rgba(255, 255, 255, 0.08);
        }
        
        /* Main Content Layout */
        main {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 40px 0;
        }
        
        .main-content {
            flex: 1;
            min-width: 300px;
        }
        
        aside {
            width: 320px;
            min-width: 280px;
        }
        
        /* Sidebar Styles */
        .sidebar-widget {
            background-color: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 35px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .sidebar-widget:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
        }
        
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: var(--primary);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .sidebar-widget h3:after {
            width: 40px;
        }
        
        .sidebar-widget p, 
        .sidebar-widget li {
            color: var(--text);
        }
        
        /* Sidebar Links */
        .sidebar-links {
            list-style: none;
            margin-left: 0;
        }
        
        .sidebar-links li {
            margin-bottom: 12px;
            padding-left: 0;
        }
        
        .sidebar-links a {
            color: var(--accent);
            font-weight: 400;
            position: relative;
            padding-left: 0;
            display: block;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }
        
        .sidebar-links a:after {
            background: var(--gold);
            bottom: -1px;
        }
        
        .sidebar-links a:hover {
            color: var(--primary);
            padding-left: 8px;
            border-bottom-color: var(--gold);
        }
        
        /* Sidebar styled list */
        .sidebar-styled-list {
            list-style: none;
            margin-left: 0;
        }
        
        .sidebar-styled-list li {
            background-color: var(--light);
            padding: 15px 20px;
            margin-bottom: 12px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent);
            transition: var(--transition);
            color: var(--text);
            font-size: 1rem;
        }
        
        .sidebar-styled-list li:hover {
            transform: translateX(5px);
            border-left-color: var(--gold);
            background-color: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        /* Footer */
        footer {
            background: var(--gradient);
            color: white;
            padding: 70px 0 30px;
            margin-top: 80px;
            position: relative;
        }
        
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
            padding-left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a:after {
            background: var(--gold);
            bottom: -3px;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: var(--gold);
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(13, 27, 42, 0.2);
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border: none;
            transform: scale(0.8);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        
        .back-to-top:hover {
            background: white;
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 12px 30px rgba(13, 27, 42, 0.3);
        }
        
        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes sectionReveal {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }
        
        @keyframes listItemReveal {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes tableReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes gradientShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-10px) translateY(-10px); }
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 3rem;
            }
            
            /* Adjust navigation for medium screens */
            .main-nav ul {
                gap: 15px;
            }
            
            .main-nav a {
                font-size: 0.85rem;
                padding: 12px 2px;
            }
        }
        
        @media (max-width: 992px) {
            .content-section, .bgotext {
                padding: 35px;
            }
        }
        
        @media (max-width: 768px) {
            main {
                flex-direction: column;
            }
            
            aside {
                width: 100%;
            }
            
            .hero {
                padding: 150px 20px 80px;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            h1 {
                font-size: 2.5rem;
                margin: 3rem 0 1.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .logo {
                font-size: 1.6rem;
            }
            
            .back-to-top {
                bottom: 25px;
                right: 25px;
                width: 55px;
                height: 55px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.7rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
            
            .content-section, .bgotext {
                padding: 25px;
            }
            
            .btn {
                padding: 14px 28px;
                font-size: 0.85rem;
            }
            
            .hero {
                padding: 130px 20px 60px;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .header-container {
                padding: 15px 20px;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
        
        /* Performance Optimizations */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .main-nav {
                background: rgba(10, 20, 27, 0.98);
            }
            
            .main-nav::before {
                background: linear-gradient(135deg, 
                    rgba(10, 20, 27, 0.95) 0%, 
                    rgba(20, 40, 55, 0.95) 50%, 
                    rgba(40, 70, 95, 0.8) 100%);
            }
        }