        :root {
            /* Color Palette from Brand */
            --royal-blue: #0C1F54;

            --gold-light: #F7C86A;
            --gold-mid: #DA9A32;
            --gold-dark: #A06214;

            --royal-blue-dark: #081638;
            --light-bg: #F9FAFB;

            --text-dark: #1E293B;
            --text-light: #7a8698;
            --white: #FFFFFF;

            /* Typography */
            --font-main: 'Inter', sans-serif;
            --font-heading: 'Playfair Display', serif; 

            /* Spacing */
            --section-padding: 5rem 1.5rem;
            --container-width: 1200px;

            /* H colors */
            --h3-color: #FFFFFF;
        }

        ::-webkit-scrollbar {
            width: 14px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, var(--white), var(--light-bg));
            border-left: 1px solid rgba(12, 31, 84, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg,
                    var(--royal-blue),
                    var(--royal-blue-dark));
            border: 3px solid var(--white);
            border-radius: 7px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg,
                    var(--royal-blue-dark),
                    #06122c);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scrollbar-width: thin;
            scrollbar-color: var(--royal-blue) var(--white);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--royal-blue);
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
            border-radius: 2px;
        }

        h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: var(--h3-color);
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }

        .text-center {
            text-align: center;
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Layout & Container */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: var(--section-padding);
        }

        /* Header & Navigation */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(122, 31, 52, 0.08);
            position: fixed;
            width: 90%;
            left: 5%;
            top: 2%;
            z-index: 1000;
            border-radius: 50px;
            border: #0816383b 1px solid;
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-image {
            height: 50px;
            width: auto;
            margin-right: 12px;
        }

        .logo-text {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--royal-blue);
        }

        .logo-text span {
            background: linear-gradient(145deg, var(--gold-dark), var(--gold-mid));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-icon-text {
            color: var(--gold-light);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        .logo-icon-hanuman {
            position: absolute;
            left: 8px;
            width: 20px;
            height: 24px;
            background-color: var(--gold-light);
            clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 90% 100%, 10% 100%);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav li {
            margin-left: 2rem;
        }

        nav a {
            text-decoration: none;
            color: var(--gold-dark);
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a.active {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 600;
        }

        nav a.active:after {
            width: 100%;
        }

        nav a:hover {
            color: var(--text-dark);
        }

        nav a:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 3px;
            background-color: var(--gold-mid);
            transition: width 0.3s ease;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--royal-blue);
            cursor: pointer;
            z-index: 9999 !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
                radial-gradient(circle at 20% 50%, rgb(255, 0, 60), transparent 50%),
                radial-gradient(circle at 80% 20%, rgb(184, 115, 42), transparent 50%);
            background-color: var(--royal-blue-dark);
            color: var(--white);
            padding-top: 10rem;
            padding-bottom: 9rem;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 30%, rgba(246, 196, 82, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(122, 31, 52, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1,
        .hero h2 {
            text-align: center;
        }

        .hero h1,
        .hero h2,
        .hero p {
            color: var(--white);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--white), var(--gold-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero h2 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero h2:after {
            display: none;
        }

        .hero h3 {
            color: var(--white);
        }

        .hero-bullets {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
        }

        .hero-bullet {
            flex: 1;
            min-width: 250px;
            background-color: rgba(255, 255, 255, 0.08);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(247, 200, 106, 0.25);
            border-left: 5px solid var(--gold-light);
            transition: transform 0.5s ease, background-color 0.3s ease !important;
        }

        .hero-bullet:hover {
            transform: translateY(-5px) !important;
            background-color: rgba(255, 255, 255, 0.12);
        }

        .hero-bullet i {
            color: var(--gold-light);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--gold-mid), var(--gold-light));
            color: var(--royal-blue);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(184, 116, 42, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--gold-light);
            transform: translateY(-3px);
        }

        .hero-microcopy {
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* About Section */
        .about {
            background-color: var(--light-bg);
        }

        .value-pillars {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 3rem 0;
        }

        .pillar {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
            transition: transform 0.3s ease !important;
        }

        .pillar:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .pillar-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--royal-blue);
            font-size: 1.8rem;
        }

        .mission-statement {
            text-align: center;
            max-width: 800px;
            margin: 3rem auto 0;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(122, 31, 52, 0.05), rgba(184, 116, 42, 0.05));
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(122, 31, 52, 0.1);
            border-left: 5px solid var(--royal-blue);
        }

        .mission-statement p {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--royal-blue);
            font-style: italic;
        }

        /* Products Section */
        .products {
            background-color: var(--white);
        }

        .product-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            flex: 1;
            min-width: 300px;
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
            transition: transform 0.3s ease !important;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .product-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
        }

        .product-header {
            background: linear-gradient(90deg, var(--royal-blue), #5a1628);
            color: var(--white);
            padding: 2rem;
        }

        .product-header h3 {
            color: var(--white);
        }

        .product-body {
            padding: 2rem;
        }

        .product-features {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .product-features li {
            padding: 0.5rem 0 0.5rem 1.5rem;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--text-light);
            text-align: left;
        }

        .product-features li:before {
            content: '✓';
            color: var(--gold-mid);
            font-weight: bold;
            margin-right: 10px;
            position: absolute;
            left: 0;
        }

        .product-cta {
            display: inline-block;
            margin-top: 1.5rem;
            padding: 0.8rem 1.8rem;
            background-color: var(--royal-blue);
            color: var(--white);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .product-cta:hover {
            background-color: #5a1628;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(122, 31, 52, 0.2);
        }

        /* Features Grid */
        .features {
            background-color: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease !important;
            border-bottom: 5px solid var(--gold-mid);
        }

        .feature-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .feature-card h3,
        .pillar h3,
        .industry-item h3 {
            color: var(--royal-blue);
        }

        .feature-card h4 {
            margin-bottom: 1rem;
            color: var(--royal-blue);
            font-size: 1.3rem;
        }

        .feature-card p {
            font-size: 0.95rem;
        }

        .features-microcopy {
            text-align: center;
            margin-top: 3rem;
            color: var(--text-light);
            font-style: italic;
        }

        /* Industries Section */
        .industries {
            background-color: var(--white);
        }

        .industry-list {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .industry-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: var(--light-bg);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease !important;
        }

        .industry-item:hover {
            transform: translateY(-5px) !important;
            background-color: #ffffff25;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .industry-icon {
            font-size: 2.5rem;
            color: var(--royal-blue);
            margin-bottom: 1.5rem;
        }

        .industry-fit {
            max-width: 800px;
            margin: 3rem auto 0;
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(246, 196, 82, 0.1), rgba(184, 116, 42, 0.1));
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Contact Section */
        .contact {
            background-color: var(--light-bg);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-control {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: var(--font-main);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--royal-blue);
            box-shadow: 0 0 0 3px rgba(122, 31, 52, 0.1);
        }

        .contact-info {
            flex: 0 1 600px;
            min-width: 300px;
            max-width: 600px;
            background: linear-gradient(135deg, var(--royal-blue), #5a1628);
            color: var(--white);
            padding: 3rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            color: var(--gold-light);
            margin-bottom: 2rem;
        }

        .contact-details {
            margin-top: 2rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-detail i {
            font-size: 1.2rem;
            color: var(--gold-light);
            margin-right: 1rem;
            width: 30px;
        }

        .contact-detail a {
            color: inherit;       
            text-decoration: none;   
            display: inline-flex;
            align-items: center;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .contact-detail a:hover {
            color: var(--gold-light);
            transform: translateX(2px);
        }

        .contact-microcopy {
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer */
        footer {
            background-color: var(--royal-blue-dark);
            color: var(--white);
            padding: 4rem 1.5rem 2rem;
        }

        .footer-container {
            max-width: var(--container-width);
            margin: 0 auto;
        }

        /*.footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }*/

        .footer-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-logo .logo-text {
            color: var(--white);
        }

        .footer-links h4 {
            color: var(--gold-light);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-family: var(--font-main);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            position: relative;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            padding-left: 18px;
            transition: color 0.3s ease;
        }

        .footer-links a {
            position: relative;
            display: inline-block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            padding-left: 0;
            transition:
                color 0.3s ease,
                padding-left 0.3s ease,
                transform 0.3s ease;
        }

        .footer-links a::before {
            content: "‣";
            position: absolute;
            left: -16px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;

            transition:
                opacity 0.3s ease,
                left 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 10px;
            transform: translateX(2px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            left: -10px;
        }


        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--gold-mid);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .hero {
                padding-top: 8rem;
                padding-bottom: 6rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            nav ul {
                position: fixed;
                top: 515px;
                left: 5%;
                width: 90%;
                border-radius: 50px;
                background-color: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 999;
                height: auto;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            nav a.active {
                background-color: rgba(184, 116, 42, 0.1);
                padding: 0.5rem 1rem;
                border-radius: 4px;
            }

            nav ul.active {
                opacity: 1;
            }

            nav li {
                margin: 1rem 0;
            }

            h1 {
                font-size: 2.3rem;
            }

            h2 {
                font-size: 1.9rem;
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero h2 {
                font-size: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 3rem 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.7rem;
            }

            .hero {
                padding-top: 7rem;
                padding-bottom: 4rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-bullet {
                min-width: 100%;
            }
        }