.royal {
            background: #124f84;
            color: #f8f9fa;
            padding: 3rem 0 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .royal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #fff;
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .royal-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .royal-grid {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .royal-column {
            flex: 1;
            min-width: 200px;
        }

        .royal-column {
            text-align: left;
        }

        .royal-column h3 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .company-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .logo-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
        }

        .company-logo h3 {
            color: #ffd700;
            font-size: 1.4rem;
            margin-bottom: 0;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .royal-column h3::after {
            /* content: ''; */
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ffffff;
        }

        .royal-column:first-child h3::after {
            display: none;
        }

        .company-description {
            color: #ffffff;
            font-size: 0.9rem;
            line-height: 1.6;
            text-align: left;
            margin-top: 0.5rem;
        }

        .royal-column ul {
            list-style: none;
        }

        .royal-column ul li {
            margin-bottom: 0.5rem;
            text-transform: capitalize;
        }

        .royal-column ul li a {
            color: #e9ecef;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .royal-column ul li a:hover {
            color: #ff0000;
            transform: translateX(5px);
        }

        .royal-column ul li a::before {
            content: '▸';
            margin-right: 0.5rem;
            transition: opacity 0.3s ease;
        }

        .royal-column ul li a:hover::before {
            opacity: 1;
        }

        .royal-social {
            text-align: center;
            margin-bottom: 2rem;
        }

        .royal-social h3 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid #ffd700;
            border-radius: 50%;
            color: #ffd700;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #ffd700;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            color: #1a1a2e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .royal-bottom {
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            padding-top: 1.5rem;
            text-align: center;
        }

        .royal-bottom p {
            color: #adb5bd;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .royal-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .royal {
                padding: 2rem 0 1rem 0;
            }

            .royal-grid {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .royal-column {
                text-align: center;
                flex: none;
            }

            .company-logo {
                align-items: center;
            }

            .company-description {
                text-align: center;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .royal-logo {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }
        }

        @media (max-width: 480px) {
            .royal-container {
                padding: 0 0.5rem;
            }

            .royal-grid {
                gap: 1rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }


        

