/*
Theme Name: Alt Resources Custom Theme
Theme URI: http://altresources.co.uk/
Author: Antigravity AI
Author URI: http://altresources.co.uk/
Description: A premium, modern, custom WordPress theme built for Alt Resources PLC.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: altresources-theme
*/


        :root {
            /* Color Palette */
            --bg-navy: #003b71; /* A deep purple/navy based on mockup */
            --bg-navy-lighter: #004d95;
            --text-gold: #fdb913; /* Light golden/yellow for "Streaming Company" */
            --btn-gold: #e5a40b; /* Darker gold/brown for button background */
            --accent-blue: #003b71; 
            --text-white: #ffffff;
            --text-gray: #d0d0d0;
            --border-gold: #e5a40b;
            --border-gray: #004d95;
            
            /* Navbar specific */
            --nav-bg: #F8F9FA;
            --nav-text: #2c2f3b;
            --nav-btn-bg: #003b71; /* Dark purple/navy for Investor Centre button */
            
            /* Typography */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Playfair Display', serif;
            
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--text-white);
            color: var(--bg-navy);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 400;
        }

        .gold-text {
            color: var(--text-gold);
            font-style: italic;
        }

        /* Navigation */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--nav-text);
            transition: all 0.3s ease;
        }
        
        @media (max-width: 1024px) {
            .mobile-menu-toggle {
                display: flex;
            }
            .nav-menu-wrapper {
                position: fixed;
                top: 0;
                left: -100%; /* Hidden by default */
                width: 300px;
                max-width: 80%;
                height: 100vh;
                background-color: var(--nav-bg);
                flex-direction: column;
                align-items: flex-start;
                padding: 6rem 2rem;
                box-shadow: 2px 0 15px rgba(0,0,0,0.1);
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
            }
            
            .nav-menu-wrapper.active {
                left: 0;
            }

            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
                margin-right: 0;
                width: 100%;
            }

            .nav-btn {
                margin-top: 2rem;
                width: 100%;
            }

            .search-icon {
                margin-top: 1rem;
            }

            /* Hamburger animation */
            .mobile-menu-toggle.active span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            .mobile-menu-toggle.active span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            /* Adjust navbar padding on mobile */
            .navbar {
                padding: 1.2rem 2em;
            }
        }
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--nav-bg);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        /* Inner Page Spacing */
        body.inner-page {
            padding-top: 100px;
        }

        /* Inner Page Navbar (White background like legacy) */
        body.inner-page .navbar {
            background: #ffffff;
            border-bottom: 1px solid #eaeaea;
        }
        
        body.inner-page .nav-links a {
            color: #333;
        }

        body.inner-page .nav-links a:hover {
            color: var(--text-gold);
        }

        body.inner-page .search-icon {
            color: #333;
        }

        body.inner-page .logo-container img {
            filter: brightness(0); /* Make the white logo dark if it's currently white text */
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .site-logo {
            height: 35px; /* Adjusted based on visual mock */
            width: auto;
            display: block;
        }

        .nav-menu-wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin-right: 1rem;
        }

        .nav-links a {
            color: var(--nav-text);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--btn-gold);
        }

        .search-icon {
            cursor: pointer;
            width: 18px;
            height: 18px;
            color: var(--nav-text);
        }

        .nav-btn {
            background-color: var(--nav-btn-bg);
            color: var(--text-white);
            padding: 0.7rem 1.5rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-btn:hover {
            background-color: var(--btn-gold);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 0;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 113, 200, 0.3), rgba(0, 59, 113, 0.4));
            z-index: 1;
        }

        .hero-content {
            max-width: 850px;
            color: var(--text-white);
            margin-top: 5rem;
            position: relative;
            z-index: 2;
        }

        .hero-label {
            display: inline-block;
            background-color: var(--text-gold);
            color: var(--bg-navy);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.4rem 0.8rem;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 5.5rem;
            line-height: 1.05;
            margin-bottom: 2rem;
            letter-spacing: -1px;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.25rem;
            color: #d1d5db; /* Light gray text for paragraph */
            margin-bottom: 3rem;
            max-width: 600px;
            line-height: 1.5;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border: 1px solid transparent;
            color: var(--text-white);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--btn-gold);
            border-color: var(--btn-gold);
        }

        .btn-primary:hover {
            background-color: #6a552e;
            border-color: #6a552e;
        }

        .btn-secondary {
            background-color: rgba(0, 59, 113, 0.5); /* Semi transparent dark */
            border-color: var(--text-white);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background-color: var(--text-white);
            color: var(--bg-navy);
        }

        /* Advancing Strategic Value Section */
        .advancing-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 8rem 4rem;
            background-color: var(--text-white);
            max-width: 1400px;
            margin: 0 auto;
            align-items: center;
        }

        .advancing-content h2 {
            font-size: 3.5rem;
            line-height: 1.1;
            color: var(--bg-navy);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .advancing-content p {
            font-size: 1.1rem;
            color: #5a6473; /* Muted gray for readability */
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .advancing-list {
            list-style: none;
            margin-bottom: 3rem;
        }

        .advancing-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--bg-navy);
            margin-bottom: 1.5rem;
        }

        .advancing-list svg {
            width: 24px;
            height: 24px;
            color: #B59357; /* Gold checkmark */
            flex-shrink: 0;
        }

        .advancing-link {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--bg-navy);
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            border-bottom: 2px solid #B59357; /* Gold underline */
            padding-bottom: 4px;
            transition: var(--transition);
        }

        .advancing-link:hover {
            color: #B59357;
        }

        .advancing-images {
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            height: 500px;
        }

        .advancing-images img {
            position: absolute;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .img-left {
            width: 55%;
            height: auto;
            left: 0;
            top: 0;
            z-index: 2;
        }

        .img-right {
            width: 65%;
            height: auto;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        @media (max-width: 968px) {
            .advancing-section {
                grid-template-columns: 1fr;
                padding: 4rem 2rem;
            }
            
            .advancing-images {
                height: 400px;
                margin-top: 3rem;
            }
        }

        /* Financial Resilience Section */
        .financial-section {
            background-color: var(--bg-navy-lighter);
            padding: 2em;
            color: var(--text-white);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .financial-header {
            text-align: left;
            max-width: 1400px;
            margin: 0 auto 4rem auto;
        }

        .financial-header h2 {
            font-size: 3rem;
            font-family: var(--font-heading);
            font-weight: 600;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .financial-header .underline {
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--text-gold);
            margin-top: 10px;
        }

        .financial-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto 5rem auto;
            position: relative;
            z-index: 2;
        }

        .financial-card {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 3rem 2rem;
            text-align: left;
            transition: var(--transition);
        }

        .financial-card:hover {
            background-color: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
        }

        .financial-card h4 {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .financial-card .value {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .financial-card p {
            font-size: 0.9rem;
            color: #aab2bd;
            line-height: 1.5;
        }

        .financial-footer {
            max-width: 800px;
            margin: 0 auto;
        }

        .financial-footer p {
            font-size: 1.1rem;
            color: var(--text-white);
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .btn-gold {
            background-color: var(--text-gold);
            color: var(--bg-navy);
            font-weight: 700;
            padding: 1rem 2.5rem;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-block;
            text-decoration: none;
        }

        .btn-gold:hover {
            background-color: #e2c98a;
            transform: translateY(-2px);
        }

        /* Abstract Background Chart Graphic */
        .financial-bg {
            position: absolute;
            top: 10%;
            right: 5%;
            width: 400px;
            height: 400px;
            opacity: 0.05;
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 1024px) {
            .financial-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .financial-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Core Assets Section */
        .core-assets-section {
            background-color: #F0F4F8; /* Very light cool blue/gray */
            padding: 2em;
            color: var(--bg-navy);
        }

        .assets-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            max-width: 1400px;
            margin: 0 auto 3rem auto;
        }

        .assets-header-left h2 {
            font-size: 2.5rem;
            font-family: var(--font-heading);
            color: var(--bg-navy);
            margin-bottom: 0.5rem;
        }

        .assets-header-left p {
            font-size: 0.95rem;
            color: #64748b;
            max-width: 400px;
        }

        .assets-link {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--bg-navy);
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--bg-navy);
            padding-bottom: 2px;
            transition: var(--transition);
        }

        .assets-link:hover {
            color: var(--btn-gold);
            border-bottom-color: var(--btn-gold);
        }

        .assets-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-auto-rows: 250px;
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .asset-card {
            position: relative;
            background-color: var(--bg-navy);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            text-decoration: none;
            transition: var(--transition);
        }

        .asset-card.large {
            grid-row: span 2;
            padding: 3.5rem;
        }

        .asset-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .asset-card:hover .asset-bg {
            transform: scale(1.05);
        }

        .asset-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 15, 30, 0.9) 0%, rgba(10, 15, 30, 0.2) 60%, rgba(10, 15, 30, 0) 100%);
            z-index: 2;
        }

        .asset-content {
            position: relative;
            z-index: 3;
            color: var(--text-white);
        }

        .asset-location {
            font-size: 0.65rem;
            font-weight: 700;
            color: var(--text-gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
            display: block;
        }

        .asset-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 0;
            color: var(--text-white);
        }

        .asset-card.large .asset-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .asset-desc {
            font-size: 0.95rem;
            color: #cbd5e1;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 2rem;
        }

        .asset-arrow {
            color: var(--text-white);
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .asset-card:hover .asset-arrow {
            transform: translateX(5px);
        }

                @media (max-width: 968px) {
            .assets-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
            }
            .asset-card {
                min-height: 380px;
                padding: 2rem;
            }
            .asset-card.large {
                grid-row: span 1;
                min-height: 450px;
                padding: 2rem;
            }
            .asset-card.large .asset-title {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
            .asset-desc {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
            .assets-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }
        }

        /* Company Overview Section Redesign */
        .overview-section {
            background-color: var(--bg-navy);
            padding: 2em;
            position: relative;
            overflow: hidden;
            color: var(--text-white);
        }

        /* Ambient Glows */
        .overview-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 40%;
            height: 40%;
            background: radial-gradient(circle, rgba(253, 185, 19, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .overview-section::after {
            content: '';
            position: absolute;
            bottom: -10%;
            right: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(0, 77, 149, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .overview-header {
            max-width: 1400px;
            margin: 0 auto 5rem auto;
            position: relative;
            z-index: 2;
        }

        .overview-label {
            display: inline-flex;
            align-items: center;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .overview-label::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 2px;
            background-color: var(--text-gold);
            margin-right: 15px;
        }

        .overview-header h2 {
            font-size: 4rem;
            font-family: var(--font-heading);
            color: var(--text-white);
            font-weight: 600;
            line-height: 1.1;
            max-width: 600px;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .overview-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 4rem 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .overview-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(253, 185, 19, 0.3); /* subtle gold border on hover */
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Specific card positioning for Bento style */
        .card-mission {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
        }

        .card-vision {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .card-strategy {
            grid-column: 2 / 3;
            grid-row: 1 / 3; /* Spans the full height on the right */
            background: linear-gradient(135deg, rgba(0, 59, 113, 0.4) 0%, rgba(0, 77, 149, 0.1) 100%);
            border-top: 1px solid rgba(253, 185, 19, 0.4);
        }

        .overview-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--text-gold), #e5a40b);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-navy);
            margin-bottom: 2rem;
            transform: rotate(-5deg);
            transition: transform 0.3s ease;
        }

        .overview-card:hover .overview-icon {
            transform: rotate(0deg) scale(1.05);
        }

        .overview-icon svg {
            width: 30px;
            height: 30px;
        }

        .overview-card h3 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .overview-card p {
            font-size: 1.1rem;
            color: #A3AAB8;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .strategy-list {
            list-style: none;
            margin-top: 2rem;
        }

        .strategy-list li {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2rem;
            font-size: 1.05rem;
            color: #d1d5db;
            line-height: 1.6;
            background: rgba(0,0,0,0.15);
            padding: 1.5rem 1.5rem 1.5rem 4rem;
            border-radius: 12px;
            border-left: 4px solid var(--text-gold);
        }

        .strategy-list li::before {
            content: '✦';
            position: absolute;
            left: 1.5rem;
            top: 1.5rem;
            color: var(--text-gold);
            font-size: 1.2rem;
            line-height: 1;
        }

        .strategy-list strong {
            color: var(--text-white);
            display: block;
            margin-bottom: 0.4rem;
            font-size: 1.15rem;
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
        }

        @media (max-width: 1024px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }
            .card-strategy {
                grid-column: 1 / 2;
                grid-row: 3 / 4;
            }
        }

        /* Projects/Royalty Section (From Image) */
        .royalty-section {
            background-color: var(--bg-navy);
            color: var(--text-white);
            padding: 8rem 4rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 5rem;
        }

        .section-header h2 {
            font-size: 4rem;
            max-width: 400px;
            line-height: 1.1;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .project-card {
            border-left: 1px solid var(--border-gray);
            padding-left: 2rem;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .project-card:first-child {
            border-left: none;
            padding-left: 0;
        }

        .tag {
            display: inline-block;
            border: 1px solid var(--border-gold);
            color: var(--text-gold);
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            width: max-content;
            font-weight: 500;
        }

        .stage {
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .project-title {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
        }

        .project-materials {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
        }

        .project-desc {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 3rem;
            flex-grow: 1;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .royalty-value {
            color: var(--text-gold);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .royalty-type {
            font-size: 0.7rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-left: 0.5rem;
        }

        .arrow-btn {
            width: 32px;
            height: 32px;
            border: 1px solid var(--border-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .arrow-btn:hover {
            background: var(--text-gold);
            color: var(--bg-navy);
        }

        /* Light Section - Investment Case */
        .light-section {
            background-color: var(--text-white);
            color: var(--bg-navy);
            padding: 8rem 4rem;
        }

        .light-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .light-section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .light-section p {
            color: #4a5568;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .light-section .btn {
            color: var(--bg-navy);
            border-color: var(--bg-navy);
            margin-top: 1.5rem;
        }

        .light-section .btn:hover {
            background: var(--bg-navy);
            color: var(--text-white);
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: #f8fafc;
            padding: 3rem;
        }

        .stat-item h4 {
            font-family: var(--font-body);
            font-size: 3rem;
            font-weight: 300;
            color: var(--bg-navy);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #64748b;
            margin-bottom: 0;
        }
        
        /* DigitalXGrowth Style Features */
        .dxg-badge {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            border: 1px solid rgba(253, 185, 19, 0.5);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-gold);
            margin-bottom: 1.5rem;
        }

        .dxg-badge::before, .dxg-badge::after {
            content: '+';
            margin: 0 5px;
            opacity: 0.7;
        }

        /* Investment Case DXG Redesign */
        .investment-section {
            background-color: #F8F9FA;
            padding: 2em;
            color: var(--bg-navy);
            position: relative;
        }

        .investment-grid-dxg {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .invest-card-dxg {
            background: #ffffff;
            border-radius: 24px;
            padding: 4rem 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
            z-index: 1;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .invest-card-dxg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--bg-navy);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .card-number {
            position: absolute;
            top: -10px;
            right: 15px;
            font-size: 8rem;
            font-family: var(--font-heading);
            font-weight: 800;
            color: rgba(0,0,0,0.03);
            z-index: -1;
            transition: all 0.5s ease;
            line-height: 1;
        }

        .invest-card-dxg:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 59, 113, 0.2);
        }

        .invest-card-dxg:hover::before {
            opacity: 1;
        }

        .invest-card-dxg:hover .card-number {
            color: rgba(255,255,255,0.05);
        }

        .invest-card-dxg h3 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--bg-navy);
            transition: color 0.5s ease;
        }

        .invest-card-dxg p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            transition: color 0.5s ease;
        }

        .invest-card-dxg:hover h3 {
            color: var(--text-gold);
        }

        .invest-card-dxg:hover p {
            color: #e2e8f0;
        }

        .dxg-list {
            list-style: none;
            margin-top: 2rem;
        }

        .dxg-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: #444;
            transition: color 0.5s ease;
        }

        .dxg-list li::before {
            content: '+';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--text-gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .invest-card-dxg:hover .dxg-list li {
            color: #cbd5e1;
        }

        @media (max-width: 1024px) {
            .investment-grid-dxg {
                grid-template-columns: 1fr;
            }
        }

        /* Team Section DXG Redesign */
        .team-section {
            background-color: #FFFFFF;
            padding: 2em;
            color: var(--bg-navy);
            position: relative;
        }

        .team-grid-dxg {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .team-card-dxg {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .team-card-dxg:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.1);
        }

        .team-card-dxg img {
            width: 100%;
            height: 350px;
            object-fit: contain;
            object-position: top;
        }

        .team-info-glass {
            padding: 2.5rem 2rem;
            background: #ffffff;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .team-info-glass h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            color: var(--bg-navy);
            margin-bottom: 0.3rem;
        }

        .team-info-glass h4 {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--text-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .team-bio-dxg {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
        }

        @media (max-width: 1200px) {
            .team-grid-dxg {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .team-grid-dxg {
                grid-template-columns: 1fr;
            }
        }
        
        /* Footer */
        footer {
            background-color: #040a14;
            color: var(--text-gray);
            padding: 4rem 4rem 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }
        
        .footer-col h4 {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--text-gold);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
        }

        @media (max-width: 1200px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 4rem 2rem;
            }
            .project-card:nth-child(3) {
                border-left: none;
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 3rem; }
            .section-header { flex-direction: column; align-items: flex-start; gap: 2rem; }
            .projects-grid { grid-template-columns: 1fr; }
            .project-card { border-left: none; padding-left: 0; padding-bottom: 2rem; border-bottom: 1px solid var(--border-gray); }
            .project-card:last-child { border-bottom: none; }
            .light-content-wrapper { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        /* Strategic Vision */
        .vision-section {
            background-color: #f8fafc;
            color: var(--bg-navy);
            padding: 2em;
            position: relative;
        }

        .vision-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 6rem;
            align-items: center;
        }

        .vision-heading h2 {
            font-size: 3rem;
            line-height: 1.2;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .vision-card {
            background: var(--text-white);
            padding: 3rem;
            border-top: 3px solid var(--text-gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .vision-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-blue);
        }

        .vision-card h4 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--bg-navy);
        }

        .vision-card p {
            font-size: 0.95rem;
            color: #4a5568;
            line-height: 1.6;
        }
    
        /* GLOBAL TYPOGRAPHY CONSISTENCY */
        .section-header h2, 
        .assets-header h2, 
        .overview-header h2, 
        .section-title h2 {
            font-size: 3.5rem !important;
            font-weight: 700 !important;
            line-height: 1.2 !important;
        }

        .section-header p, 
        .assets-header-left p, 
        .overview-label, 
        .section-title p {
            font-size: 1.1rem !important;
            letter-spacing: 1.5px !important;
            text-transform: uppercase !important;
        }

        @media (max-width: 768px) {
            .section-header h2, 
            .assets-header h2, 
            .overview-header h2, 
            .section-title h2 {
                font-size: 2.5rem !important;
            }
            .section-header p, 
            .assets-header-left p, 
            .overview-label, 
            .section-title p {
                font-size: 0.95rem !important;
            }
        }
        /* Contact Section */
        .contact-section {
            padding: 8rem 2rem;
            background-color: #fff;
            min-height: 60vh;
        }
        
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            background-color: #fff;
            color: #333;
            text-align: left;
        }

        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #1e3a8a; /* Dark blue to match screenshot */
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            color: #333;
            background: #fff;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1e3a8a;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .btn-send {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            padding: 1rem 4rem;
            background: #1a4269;
            color: #ffffff;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-transform: uppercase;
            margin-top: 1.5rem;
            box-shadow: 0 4px 15px rgba(26, 66, 105, 0.25);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-send::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #e5a40b; /* --btn-gold */
            z-index: -1;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .btn-send:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 164, 11, 0.35);
        }

        .btn-send:hover::before {
            width: 100%;
        }

        .contact-info {
            padding-top: 1rem;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #1e3a8a;
            font-weight: 400;
        }

        .contact-info p {
            margin: 0 0 1.5rem 0;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }

        .contact-info a {
            color: #1e3a8a;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 1024px) {
            .vision-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .advancing-section {
                flex-direction: column;
            }
            .overview-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .vision-grid {
                grid-template-columns: 1fr;
            }
            .financial-grid {
                grid-template-columns: 1fr;
            }
            .assets-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .investment-grid-dxg > p,
        .overview-grid > p,
        .team-grid-dxg > p,
        .projects-grid > p,
        .vision-grid > p,
        .financial-grid > p,
        .stats-grid > p,
        .footer-grid > p {
            display: none !important;
        }

/* ==========================================================================
   Accordion Styles (Investors Page)
   ========================================================================== */
.accordion {
    width: 100%;
    border-top: 1px solid #eaeaea;
    margin-bottom: 2rem;
}
.accordion-item {
    border-bottom: 1px solid #eaeaea;
}
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    color: #1a4269;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    font-weight: 500;
}
.accordion-header:hover {
    color: var(--btn-gold);
}
.accordion-header .icon {
    font-size: 0.8rem;
    color: #1a4269;
    transition: transform 0.3s ease, color 0.3s ease;
}
.accordion-header.active {
    color: var(--btn-gold);
}
.accordion-header.active .icon {
    transform: rotate(180deg);
    color: var(--btn-gold);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-content-inner {
    padding: 0 0 2rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
    font-family: var(--font-body);
}
.accordion-content-inner p {
    margin-bottom: 1rem;
}
.accordion-content-inner p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .accordion-header {
        font-size: 1rem;
        padding: 1.2rem 0;
    }
}

/* ==========================================================================
   Download Sections Styles (Investors Page)
   ========================================================================== */
.download-section {
    margin-top: 6rem;
    text-align: center;
}
.download-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #0000cc; /* Vibrant blue matching the screenshot */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.download-divider {
    width: 60px;
    margin: 0 auto 3rem;
    border: none;
    border-top: 1px solid #ddd;
}
.download-list {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}
.download-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa; /* Light grey background */
    padding: 1.2rem 1.5rem;
    margin-bottom: 4px; /* White gap between rows */
}
.download-title {
    color: #333;
    font-size: 1rem;
    font-family: var(--font-body);
}
.download-link {
    color: #0000cc;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}
.download-link:hover {
    text-decoration: underline;
}
.download-icon {
    margin-right: 6px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .download-section h2 {
        font-size: 1.8rem;
    }
    .download-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    .download-link {
        align-self: flex-end;
    }
}