     :root {
            --purple: #10343d;
            --purple-dark: #8b4bad;
            --bg: #0b0f14;
            --text: #ffffff;
            --muted: rgba(255, 255, 255, .75);
            --border: rgba(255, 255, 255, .14);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        a:hover {
            color: inherit;
            text-decoration: none;
        }

        /* ===========================
           NAVBAR
        ============================ */
        .site-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            padding: 14px 0;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .logo-badge {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .logo-badge img {
            height: 42px;
            width: auto;
            display: block;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 26px;
            border-radius: 999px;
            background: var(--purple);
            border: 2px solid var(--purple);
            font-weight: 800;
            transition: .25s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: transparent;
            color: #fff;
            border-color: var(--purple);
            transform: translateY(-1px);
        }

        /* ===========================
           HERO
        ============================ */
        .hero {
            min-height: 80vh;
            padding-top: 95px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            /* background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, .88) 0%,
                    rgba(0, 0, 0, .70) 45%,
                    rgba(0, 0, 0, .30) 75%,
                    rgba(0, 0, 0, .10) 100%),
                url("corporate-agency/images/speciality.jpeg"); */
            background-size: cover;
            background-position: center;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 980px;
        }

        .hero-title {
            font-weight: 900;
            font-size: clamp(32px, 4vw, 58px);
            line-height: 1.08;
            margin-bottom: 16px;
            text-shadow: 0 10px 35px rgba(0, 0, 0, 0.75);
        }

        .hero-subtitle {
            font-weight: 300;
            font-size: clamp(16px, 2vw, 24px);
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.88);
            margin-bottom: 18px;
            text-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
        }

        .hero-desc {
            font-size: 16px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.80);
            max-width: 850px;
            margin-bottom: 28px;
            text-shadow: 0 6px 18px rgba(0, 0, 0, 0.60);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .btn-outline-hero,
        .btn-primary-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 22px;
            border-radius: 999px;
            font-weight: 800;
            transition: .25s ease;
            min-width: 230px;
        }

        .btn-outline-hero {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, .55);
            color: #fff;
        }

        .btn-outline-hero:hover {
            border-color: var(--purple);
            background: var(--purple);
        }

        .btn-primary-hero {
            background: var(--purple);
            border: 2px solid var(--purple);
            color: #fff;
            box-shadow: 0 16px 40px rgba(183, 95, 229, .25);
        }

        .btn-primary-hero:hover {
            background: transparent;
            transform: translateY(-1px);
        }

        /* Social icons (right side) */
        .hero-social {
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hero-social a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.25);
            background: rgba(0, 0, 0, 0.35);
            transition: .25s ease;
            opacity: .85;
        }

        .hero-social a:hover {
            background: var(--purple);
            border-color: var(--purple);
            opacity: 1;
        }

        /* ===========================
           QUICK SERVICES STRIP
        ============================ */
        .quick-strip {
            padding: 45px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .strip-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 22px;
            height: 100%;
        }

        .strip-card h3 {
            font-weight: 900;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .strip-card p {
            margin: 0 0 14px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            font-size: 14px;
        }

        .strip-card a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 900;
            color: #fff;
        }

        .strip-card a i {
            color: var(--purple);
        }

        /* ===========================
           CONTACT
        ============================ */
        .section-pad {
            padding: 80px 0;
        }

        .contact-wrap {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 18px;
            padding: 26px;
        }

        .contact-title {
            font-weight: 900;
            font-size: 34px;
            margin-bottom: 12px;
        }

        .contact-card-title {
            font-weight: 800;
            color: var(--purple);
            margin-bottom: 8px;
        }

        .contact-muted {
            color: rgba(255, 255, 255, 0.75);
        }

        .form-control-clean {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #fff;
            border-radius: 12px;
            padding: 12px 14px;
            height: auto;
        }

        .form-control-clean:focus {
            box-shadow: none;
            border-color: var(--purple);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
        }

        .btn-submit {
            width: 100%;
            padding: 13px 18px;
            border-radius: 999px;
            background: var(--purple);
            border: 2px solid var(--purple);
            color: #fff;
            font-weight: 900;
            transition: .25s ease;
        }

        .btn-submit:hover {
            background: transparent;
            transform: translateY(-1px);
        }

        /* ===========================
           FOOTER
        ============================ */
        .site-footer {
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(0, 0, 0, 0.35);
        }

        .footer-icons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .footer-icons a {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.18);
            transition: .25s ease;
        }

        .footer-icons a:hover {
            background: var(--purple);
            border-color: var(--purple);
        }

        .footer-text {
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
        }

        /* ===========================
           RESPONSIVE
        ============================ */
        @media (max-width: 768px) {
            .hero-social {
                display: none;
            }

            .btn-outline-hero,
            .btn-primary-hero {
                min-width: 100%;
            }

            .hero {
                padding-top: 85px;
            }
        }

        @media (min-width: 992px) {
            .logo-badge img {
                height: 70px;
            }
        }  
        .feature {
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 18px 18px;
            height: 100%;
        }

        .feature h5 {
            margin: 0 0 10px;
            font-weight: 800;
            font-size: 18px;
            color: #fff;
        }

        .feature p {
            margin: 0;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.65;
            font-size: 15px;
        }
        /* CTA */
        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
