
/* --- index.php --- */

        :root {
            --bg: #020204;
            /* Deep Black */
            --bg2: #080c14;
            --card: rgba(255, 255, 255, .02);
            --card2: rgba(255, 255, 255, .05);
            --text: #EAF0FF;
            --muted: #8892b0;
            --line: rgba(255, 255, 255, .06);
            --blue: #1d69a2;
            /* More indigo/electric */
            --blue2: #38bdf8;
            --beam: #4355ff;
            --shadow: 0 24px 60px -12px rgba(0, 0, 0, .8);
            --radius: 4px;
            /* Sharper */
            --radius2: 12px;
            --max: 1400px;
            --font-head: 'Playfair Display', serif;
            /* Serif Headers */
            --font-body: 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            position: relative;
        }

        /* Gradient Glow Background Effect */
        .gradient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 107, 255, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(67, 85, 255, 0.15) 0%, transparent 60%);
            animation: glowPulse 8s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        /* Blue Fade In Up - Ambient Bottom Glow */
        .ambientGlow {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40vh;
            background: linear-gradient(to top, rgba(79, 107, 255, 0.15), transparent);
            pointer-events: none;
            z-index: 5;
        }

        /* Popup Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content-box {
            background: var(--bg2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius2);
            padding: 40px;
            width: 100%;
            max-width: 500px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: var(--shadow);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content-box {
            transform: translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: var(--muted);
            font-size: 28px;
            cursor: pointer;
            transition: color 0.2s;
            line-height: 1;
            padding: 0;
        }

        .modal-close-btn:hover {
            color: var(--text);
        }

        .modal-header {
            margin-bottom: 24px;
            text-align: center;
        }

        .modal-header h3 {
            font-size: 24px;
            margin: 0 0 8px;
            font-weight: 600;
        }

        .modal-header p {
            color: var(--muted);
            font-size: 14px;
            margin: 0;
            line-height: 1.5;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .brand,
        .num,
        .btn {
            font-family: var(--font-head);
        }

        a {
            color: inherit;
            text-decoration: none
        }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255, 255, 255, .04);
            color: var(--muted);
            font-size: 13px;
            backdrop-filter: blur(8px);
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #fff, var(--blue));
            box-shadow: 0 0 18px rgba(47, 107, 255, .65);
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 10, 18, .55);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: .2px;
        }

        .logoMark {
            width: 150px;
            /* height: 38px; */
            /* border-radius: 12px; */
            background: transparent;
            box-shadow: none;
        }
        
        .logoMark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* border-radius: 12px; */
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 18px;
            align-items: center
        }

        nav a {
            color: var(--muted);
            font-size: 14px;
            padding: 10px 10px;
            border-radius: 12px;
            transition: all .25s ease;
        }

        nav a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, .06)
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            font-weight: 600;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
            cursor: pointer;
            user-select: none;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .09);
            border-color: rgba(255, 255, 255, .20)
        }

        .btn.primary {
            border-color: rgba(47, 107, 255, .55);
            background: linear-gradient(135deg, rgba(47, 107, 255, .95), rgba(0, 212, 255, .75));
            box-shadow: 0 16px 50px rgba(47, 107, 255, .25);
        }

        .btn.primary:hover {
            transform: translateY(-1px) scale(1.02);
            box-shadow: 0 20px 60px rgba(47, 107, 255, .4);
        }

        .hamburger {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
        }

        .mobileMenu {
            display: none;
        }

        /* Hero */
        .hero {
            position: relative;
            padding: 72px 0 38px;
            overflow: hidden;
            z-index: 10;
        }

        .gridGlow {
            position: absolute;
            inset: -120px -120px auto -120px;
            height: 520px;
            background:
                linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
            background-size: 46px 46px;
            mask-image: radial-gradient(circle at 50% 40%, black 35%, transparent 70%);
            opacity: .55;
            pointer-events: none;
        }

        .heroInner {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 40px;
            position: relative;
        }

        .hero h1 {
            margin: 24px 0 16px;
            font-size: clamp(42px, 5.5vw, 76px);
            /* Larger serif */
            line-height: 1.1;
            letter-spacing: -2px;
            font-weight: 400;
            /* Regular weight for serif elegance */
        }

        .hero h1 i {
            font-family: var(--font-head);
            font-style: italic;
            color: var(--blue);
        }

        .gradText {
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: inherit;
        }

        .hero p {
            margin: 0 auto 32px;
            color: var(--muted);
            font-size: 18px;
            line-height: 1.6;
            max-width: 60ch;
        }

        .heroActions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }

        .pill {
            border-color: var(--blue);
            background: rgba(67, 85, 255, 0.1);
            color: #bcc6ff;
            box-shadow: 0 0 20px rgba(67, 85, 255, 0.15);
        }

        .dot {
            background: var(--blue);
            box-shadow: 0 0 10px var(--blue);
        }

        .trustRow {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 18px;
            color: var(--muted);
            font-size: 13px;
            align-items: center;
        }

        .miniStat {
            display: flex;
            gap: 10px;
            align-items: center;
            padding: 10px 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 14px;
            background: rgba(255, 255, 255, .04);
        }

        .miniStat b {
            color: var(--text)
        }

        /* Hero visual card */
        .heroCard {
            border-radius: var(--radius2);
            border: 1px solid rgba(255, 255, 255, .14);
            background:
                radial-gradient(300px 200px at 25% 25%, rgba(47, 107, 255, .35), transparent 60%),
                radial-gradient(300px 200px at 85% 20%, rgba(0, 212, 255, .22), transparent 60%),
                rgba(255, 255, 255, .04);
            box-shadow: var(--shadow);
            padding: 18px;
            position: relative;
            overflow: hidden;
            transform: translateY(0);
            transition: transform .35s ease;
        }

        .heroCard:hover {
            transform: translateY(-4px)
        }

        .heroCard::after {
            content: "";
            position: absolute;
            inset: -2px;
            background: conic-gradient(from 180deg at 50% 50%,
                    rgba(47, 107, 255, .0),
                    rgba(47, 107, 255, .32),
                    rgba(0, 212, 255, .28),
                    rgba(255, 255, 255, .0));
            filter: blur(22px);
            opacity: .65;
            pointer-events: none;
        }

        .heroCardTop {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px 14px;
            border-bottom: 1px solid rgba(255, 255, 255, .10);
        }

        .badge {
            font-size: 12px;
            color: rgba(255, 255, 255, .85);
            padding: 6px 10px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
        }

        .pulse {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--muted);
            font-size: 12px;
        }

        .pulse i {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 212, 255, .9);
            box-shadow: 0 0 0 0 rgba(0, 212, 255, .6);
            animation: ping 1.6s infinite;
        }

        @keyframes ping {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, .55)
            }

            70% {
                box-shadow: 0 0 0 14px rgba(0, 212, 255, 0)
            }

            100% {
                box-shadow: 0 0 0 0 rgba(0, 212, 255, 0)
            }
        }

        .heroCardBody {
            position: relative;
            z-index: 2;
            display: grid;
            gap: 12px;
            padding: 14px 10px 10px;
        }

        .kpiGrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .kpi {
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(0, 0, 0, .16);
            padding: 12px;
        }

        .kpi .num {
            font-weight: 800;
            font-size: 18px;
            letter-spacing: -.4px;
        }

        .kpi .lbl {
            color: var(--muted);
            font-size: 12px;
            margin-top: 4px;
        }

        .progress {
            margin-top: 6px;
            height: 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .10);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .10);
        }

        .bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, rgba(47, 107, 255, .95), rgba(0, 212, 255, .90));
            border-radius: 999px;
            transition: width 1.2s ease;
        }

        .featureRow {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .chip {
            font-size: 12px;
            color: rgba(255, 255, 255, .88);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .06);
            padding: 8px 10px;
            border-radius: 999px;
        }

        /* Sections */
        section {
            padding: 100px 0;
            position: relative;
            z-index: 10;
        }

        .sectionHead {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 40px;
            gap: 12px;
        }

        .sectionHead h2 {
            margin: 0;
            font-size: clamp(32px, 3.5vw, 42px);
            letter-spacing: -1px;
            font-weight: 400;
        }

        .sectionHead p {
            margin: 0;
            color: var(--muted);
            max-width: 60ch;
            line-height: 1.6;
            font-size: 14px;
        }

        /* Services */
        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .card {
            border-radius: var(--radius2);
            border: 1px solid rgba(255, 255, 255, .14);
            background: 
                radial-gradient(200px 150px at 0% 0%, rgba(47, 107, 255, .08), transparent 60%),
                rgba(255, 255, 255, .04);
            padding: 28px;
            transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
        }

        .card:hover {
            transform: translateY(-8px) scale(1.02);
            background: 
                radial-gradient(300px 200px at 0% 0%, rgba(47, 107, 255, .15), transparent 60%),
                rgba(255, 255, 255, .08);
            border-color: rgba(47, 107, 255, .4);
            box-shadow: 0 20px 60px rgba(47, 107, 255, .25), 0 0 0 1px rgba(47, 107, 255, .1);
        }

        /* Spotlight effect */
        .card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(800px circle at var(--x, 0) var(--y, 0), rgba(255, 255, 255, 0.12), transparent 50%);
            opacity: 0;
            transition: opacity 0.35s;
            pointer-events: none;
            z-index: 1;
        }

        .card:hover::after {
            opacity: 1;
        }

        .card::before {
            content: "";
            position: absolute;
            inset: -2px;
            background: 
                radial-gradient(300px 200px at 20% 10%, rgba(47, 107, 255, .3), transparent 60%),
                radial-gradient(300px 200px at 90% 30%, rgba(0, 212, 255, .2), transparent 60%);
            opacity: 0;
            transition: opacity 0.35s;
            pointer-events: none;
            border-radius: var(--radius2);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card>* {
            position: relative;
            z-index: 2
        }

        .icon {
            width: 64px;
            height: 64px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(47, 107, 255, .25), rgba(0, 212, 255, .2));
            border: 1px solid rgba(47, 107, 255, .3);
            margin-bottom: 20px;
            box-shadow: 0 8px 24px rgba(47, 107, 255, .2);
            transition: all .35s ease;
        }

        .card:hover .icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(47, 107, 255, .4), rgba(0, 212, 255, .3));
            box-shadow: 0 12px 32px rgba(47, 107, 255, .35);
            border-color: rgba(47, 107, 255, .5);
        }

        .icon svg {
            width: 32px;
            height: 32px;
            fill: none;
            stroke: rgba(255, 255, 255, .95);
            stroke-width: 2;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2));
        }

        .card h3 {
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: -0.3px;
            color: var(--text);
        }

        .card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
            line-height: 1.7;
            flex-grow: 1;
        }

        /* Why / Process */
        .twoCol {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 16px;
            align-items: start;
        }

        .panel {
            border-radius: var(--radius2);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .04);
            padding: 18px;
        }

        .bullets {
            display: grid;
            gap: 10px;
            margin-top: 12px
        }

        .bullet {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 12px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(0, 0, 0, .14);
        }

        .check {
            width: 22px;
            height: 22px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(47, 107, 255, .95), rgba(0, 212, 255, .78));
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            box-shadow: 0 10px 26px rgba(47, 107, 255, .22);
        }

        .check svg {
            width: 14px;
            height: 14px;
            stroke: #06102a;
            stroke-width: 3;
            fill: none
        }

        .bullet b {
            display: block;
            margin: 0 0 2px
        }

        .bullet span {
            display: block;
            color: var(--muted);
            font-size: 13px;
            line-height: 1.55
        }

        .steps {
            display: grid;
            gap: 10px;
            margin-top: 10px
        }

        .step {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            align-items: center;
            padding: 12px 14px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(0, 0, 0, .14);
        }

        .step .left {
            display: flex;
            gap: 12px;
            align-items: center
        }

        .step .num {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .06);
            display: grid;
            place-items: center;
            font-weight: 800;
        }

        .step .txt b {
            display: block
        }

        .step .txt small {
            display: block;
            color: var(--muted);
            font-size: 12px;
            margin-top: 2px
        }

        .step .tag {
            font-size: 12px;
            color: rgba(255, 255, 255, .9);
            border: 1px solid rgba(255, 255, 255, .12);
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .05)
        }

        /* Testimonials */
        .quotes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        .quote {
            border-radius: var(--radius2);
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .04);
            padding: 18px;
            position: relative;
            overflow: hidden;
        }

        .quote::before {
            content: "";
            position: absolute;
            inset: -2px;
            background: radial-gradient(260px 160px at 20% 30%, rgba(47, 107, 255, .18), transparent 60%);
            opacity: .9;
            pointer-events: none;
        }

        .quote>* {
            position: relative;
            z-index: 2
        }

        .quote p {
            margin: 0;
            color: rgba(255, 255, 255, .86);
            line-height: 1.65;
            font-size: 14px
        }

        .quote .who {
            margin-top: 12px;
            color: var(--muted);
            font-size: 13px
        }

        .stars {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, .9);
            letter-spacing: 1px
        }

        /* Contact */
        .contactGrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            align-items: stretch;
        }

        form {
            display: grid;
            gap: 10px;
        }

        .field {
            display: grid;
            gap: 8px;
        }

        label {
            font-size: 13px;
            color: rgba(255, 255, 255, .85)
        }

        input,
        textarea {
            width: 100%;
            padding: 12px 12px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(0, 0, 0, .18);
            color: var(--text);
            outline: none;
            transition: border-color .2s ease, background .2s ease;
        }

        input:focus,
        textarea:focus {
            border-color: rgba(47, 107, 255, .55);
            background: rgba(0, 0, 0, .28);
        }

        textarea {
            min-height: 120px;
            resize: vertical
        }

        .note {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.6;
            margin: 0;
        }

        .toast {
            margin-top: 10px;
            padding: 12px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .05);
            display: none;
        }

        .contactPanel {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            gap: 24px;
            padding: 32px !important;
        }

        .contactBrand {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
            letter-spacing: -0.5px;
        }

        .contactDesc {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 24px;
            max-width: 34ch;
        }

        .contactList {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 14px;
        }

        .contactList li {
            display: flex;
            gap: 12px;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
        }

        .contactList li svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: var(--blue2);
            stroke-width: 2.5;
            flex-shrink: 0;
        }

        footer {
            padding: 26px 0 34px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: var(--muted);
            font-size: 13px;
            position: relative;
            z-index: 10;
        }

        .foot {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center
        }

        .links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .links a {
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04)
        }

        .links a:hover {
            background: rgba(255, 255, 255, .07)
        }

        footer a:hover {
            color: var(--text);
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            filter: blur(12px);
            /* Start blurred */
            transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.reveal-left {
            transform: translateX(-30px);
        }

        .reveal.reveal-right {
            transform: translateX(30px);
        }

        .reveal.show {
            opacity: 1;
            transform: translate(0, 0);
            filter: blur(0);
            /* Focus to sharp */
        }

        /* Stagger delays handled by JSIntersectionObserver now */


        /* Responsive */
        @media (max-width: 980px) {
            .heroInner {
                grid-template-columns: 1fr;
                gap: 16px
            }

            .cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .quotes {
                grid-template-columns: 1fr
            }

            .twoCol {
                grid-template-columns: 1fr
            }

            .contactGrid {
                grid-template-columns: 1fr
            }

            nav ul {
                display: none
            }

            .hamburger {
                display: inline-grid;
                place-items: center
            }

            .mobileMenu {
                display: none;
                padding: 10px 0 16px;
            }

            .mobileMenu.show {
                display: block
            }

            .mobileMenu a {
                display: block;
                padding: 12px 12px;
                border-radius: 14px;
                color: var(--muted);
                border: 1px solid rgba(255, 255, 255, .10);
                background: rgba(255, 255, 255, .04);
                margin-top: 10px;
            }

            .mobileMenu a:hover {
                color: var(--text);
                background: rgba(255, 255, 255, .07)
            }
        }

        @media (max-width: 520px) {
            .cards {
                grid-template-columns: 1fr
            }

            .kpiGrid {
                grid-template-columns: 1fr
            }
        }
    
/* --- portfolio.php --- */

        :root {
            --bg: #020204;
            --bg2: #080c14;
            --card: rgba(255, 255, 255, .02);
            --card2: rgba(255, 255, 255, .05);
            --text: #EAF0FF;
            --muted: #8892b0;
            --line: rgba(255, 255, 255, .06);
            --blue: #1d69a2;
            --blue2: #38bdf8;
            --beam: #4355ff;
            --shadow: 0 24px 60px -12px rgba(0, 0, 0, .8);
            --radius: 4px;
            --radius2: 12px;
            --max: 1400px;
            --font-head: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            position: relative;
        }

        .gradient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 107, 255, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(67, 85, 255, 0.15) 0%, transparent 60%);
            animation: glowPulse 8s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .ambientGlow {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40vh;
            background: linear-gradient(to top, rgba(79, 107, 255, 0.15), transparent);
            pointer-events: none;
            z-index: 5;
        }

        h1, h2, h3, h4, h5, h6, .brand, .num, .btn {
            font-family: var(--font-head);
        }

        a {
            color: inherit;
            text-decoration: none
        }
        
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 10, 18, .55);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: .2px;
        }

        .logoMark {
            width: 150px;
            border-radius: 12px;
            background: transparent;
            box-shadow: none;
        }
        
        .logoMark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }
        
        nav ul {
            display: flex;
            gap: 32px;
            font-size: 14px;
            font-weight: 500;
        }
        
        nav a {
            color: var(--muted);
            transition: color .2s ease
        }
        
        nav a:hover {
            color: var(--text)
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            font-weight: 600;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
            cursor: pointer;
            user-select: none;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .09);
            border-color: rgba(255, 255, 255, .20)
        }
        
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 24px;
            cursor: pointer;
            padding: 0;
        }

        .mobileMenu {
            display: none;
            padding: 10px 0 16px;
        }

        .mobileMenu.show {
            display: block
        }

        .mobileMenu a {
            display: block;
            padding: 12px 12px;
            border-radius: 14px;
            color: var(--muted);
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            margin-top: 10px;
        }

        .mobileMenu a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, .07)
        }

        .content-page {
            position: relative;
            z-index: 10;
            padding: 80px 0 100px;
            text-align: center;
        }

        .content-page h1 {
            font-size: clamp(36px, 4vw, 52px);
            margin: 0 0 16px;
            font-weight: 400;
            letter-spacing: -1px;
        }

        .content-page p {
            color: var(--muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        /* Portfolio specific styles */
        .filter-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--muted);
            padding: 10px 20px;
            border-radius: 99px;
            cursor: pointer;
            font-size: 14px;
            font-family: var(--font-body);
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: rgba(255,255,255,0.1);
            color: var(--text);
            border-color: rgba(255,255,255,0.2);
        }
        
        .filter-btn.active {
            box-shadow: 0 0 15px rgba(47, 107, 255, 0.3);
            border-color: rgba(47, 107, 255, 0.5);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .portfolio-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            aspect-ratio: 4/3;
            transition: transform 0.3s ease, border-color 0.3s ease;
            cursor: pointer;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.2);
        }
        
        .portfolio-item img, .portfolio-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.05);
        }
        
        .item-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .item-overlay {
            opacity: 1;
        }
        
        .item-info h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 500;
            text-align: left;
        }
        
        .item-info span {
            color: var(--blue2);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-top: 4px;
            text-align: left;
        }
        
        /* Modal for images */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .modal.show {
            display: flex;
            opacity: 1;
        }
        
        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            cursor: pointer;
            line-height: 1;
        }

        footer {
            padding: 26px 0 34px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: var(--muted);
            font-size: 13px;
            position: relative;
            z-index: 10;
        }

        .foot {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center
        }

        .links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .links a {
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            transition: all 0.2s;
        }

        .links a:hover {
            background: rgba(255, 255, 255, .07);
            color: var(--text);
        }

        @media (max-width: 980px) {
            .content-page {
                padding: 60px 0 80px;
            }
        }

/* ==========================================================================
   Premium Services & Bundles Layouts
   ========================================================================== */

/* --- Hero Sections --- */
.services-hero {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.services-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.services-hero p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
}

/* --- Browse Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 107, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(47, 107, 255, 0.1);
    color: var(--blue2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.service-card h2 {
    font-size: 22px;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* --- Premium Bundles Layout --- */
.bundles-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}
.bundles-main {
    flex: 1 1 60%;
    min-width: 300px;
}
.bundles-sidebar {
    flex: 1 1 30%;
    min-width: 300px;
}
.bundles-call-banner {
    background: rgba(47, 107, 255, 0.1);
    border: 1px solid rgba(47, 107, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
.bundles-call-banner span {
    font-size: 16px;
    font-weight: 500;
}
.bundles-call-banner a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}
.pricing-table-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow-x: auto;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-table th, .pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pricing-table th {
    background: rgba(255,255,255,0.02);
    text-align: center;
}
.pricing-table td:not(:first-child) {
    text-align: center;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}
.bundle-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--blue2);
    margin-bottom: 5px;
}
.bundle-sub {
    display: block;
    font-size: 18px;
    font-weight: 500;
}
.check {
    color: var(--blue2);
    font-weight: bold;
}
.add-on {
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
}
.table-section-title {
    background: rgba(255,255,255,0.02);
    font-weight: 600;
    text-align: left !important;
    padding: 15px 20px !important;
}

.sticky-contact-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 100px;
}
.sticky-contact-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}
.contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--blue2);
}
.contact-list a {
    color: white;
    text-decoration: none;
}
.sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding: 14px 20px;
}
.sidebar-btn.primary {
    background: var(--blue2);
    color: white;
    border: none;
}

/* ==========================================================================
   Mobile Responsive Fixes
   ========================================================================== */
@media (max-width: 980px) {
    /* Mega Menu Mobile Fix */
    .has-dropdown:hover .mega-menu {
        display: flex;
        flex-direction: column;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        min-width: 100%;
        padding: 15px;
        gap: 20px;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
    }
    
    .mega-divider {
        display: none;
    }
    
    /* Layout Stacking Fixes */
    .service-detail-layout, 
    .bundles-layout {
        flex-direction: column;
    }
    
    .service-detail-left, 
    .service-detail-right, 
    .bundles-main, 
    .bundles-sidebar {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100vw;
    }
    
    .services-grid, 
    .market-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Bundles Page Specific Fixes */
    .bundles-call-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .bundles-call-banner span {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .pricing-table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table th, .pricing-table td {
        padding: 12px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .pricing-table td:first-child {
        min-width: 180px;
    }
}
    
/* --- Marketplace Page --- */
.marketplace-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}
.marketplace-main {
    flex: 1 1 65%;
    min-width: 320px;
}
.marketplace-sidebar {
    flex: 1 1 30%;
    min-width: 300px;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}
.section-header h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.market-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.market-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 107, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.market-card-top {
    height: 140px;
    background: linear-gradient(135deg, rgba(29, 105, 162, 0.15), rgba(67, 85, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--blue2);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.market-card-body {
    padding: 20px;
    flex-grow: 1;
}
.market-card-body h3 {
    font-size: 18px;
    margin: 0 0 8px;
    font-weight: 500;
}
.market-card-body p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.market-card-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.online-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.online-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: var(--text);
    display: block;
    transition: background 0.2s, border-color 0.2s;
}
.online-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}
.online-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(47, 107, 255, 0.1);
    color: var(--blue2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.online-card h3 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 500;
}
.online-card p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.partner-sidebar {
    position: sticky;
    top: 120px;
}
.partner-sidebar p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.partner-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.partner-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}
.partner-item:hover {
    background: rgba(255,255,255,0.05);
}
.partner-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
}
.partner-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}
.partner-info span {
    font-size: 12px;
    color: var(--blue2);
}
@media (max-width: 980px) {
    .marketplace-layout {
        flex-direction: column;
    }
}
/* --- Service Detail Page --- */
.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}
.service-detail-left {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left !important;
}
.service-detail-left p {
    text-align: left !important;
}
.service-detail-right {
    flex: 1 1 45%;
    min-width: 300px;
}
.service-feature {
    display: flex;
    margin-bottom: 30px;
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.service-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(47, 107, 255, 0.1);
    color: var(--blue2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    margin-right: 20px;
}
.service-feature h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
}
.service-feature p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}
/* --- Premium Bundles Page --- */
.bundles-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}
.bundles-main {
    flex: 1 1 65%;
    min-width: 320px;
}
.bundles-sidebar {
    flex: 1 1 30%;
    min-width: 300px;
}
.bundles-call-banner {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 16px;
}
.bundles-call-banner a {
    color: var(--blue2);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}
.pricing-table-wrapper {
    overflow-x: auto;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.pricing-table th, .pricing-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.pricing-table th {
    background: rgba(255,255,255,0.03);
    font-weight: 500;
}
.pricing-table th:first-child, .pricing-table td:first-child {
    text-align: left;
    width: 50%;
}
.pricing-table th .bundle-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    display: block;
}
.pricing-table th .bundle-sub {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}
.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}
.pricing-table td .check {
    color: #00ba4a;
    font-size: 20px;
    font-weight: bold;
}
.pricing-table td .add-on {
    font-size: 13px;
    color: var(--muted);
}
.table-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue2);
    padding: 30px 24px 16px !important;
    text-align: left !important;
    border-bottom: none !important;
    background: transparent !important;
}

.sticky-contact-card {
    position: sticky;
    top: 120px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}
.sticky-contact-card h3 {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 500;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text);
    font-size: 15px;
}
.contact-list li svg {
    color: var(--blue2);
    width: 20px;
    height: 20px;
}
.contact-list a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover {
    color: var(--blue2);
}
.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 15px;
    padding: 14px 20px;
}
.sidebar-btn.primary {
    background: linear-gradient(135deg, var(--beam), var(--blue2));
    color: #fff;
    border: none;
}
@media (max-width: 980px) {
    .bundles-layout {
        flex-direction: column;
    }
}
/* --- Browse Services Page --- */
.services-hero {
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    z-index: 10;
}
.services-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin: 0 0 20px;
    font-weight: 500;
}
.services-hero p {
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 20px 100px;
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.service-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 107, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.service-card-top {
    height: 180px;
    background: linear-gradient(135deg, rgba(29, 105, 162, 0.15), rgba(67, 85, 255, 0.1));
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 60%);
}
.service-icon {
    font-size: 56px;
    color: var(--blue2);
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(56,189,248,0.4));
}
.service-card-body {
    padding: 30px 24px;
    flex-grow: 1;
}
.service-card-body h2 {
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 500;
}
.service-card-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.service-card-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.service-card-footer .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 8px;
}
.service-card-footer .link-details {
    color: var(--blue2);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.service-card-footer .link-details:hover {
    color: #fff;
}
/* --- Mega Menu --- */
.has-dropdown {
    position: relative;
}
.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.caret {
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 2px;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1a2332;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 200;
    width: max-content;
    pointer-events: none;
}
.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.mega-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 220px;
}
.mega-heading {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.mega-heading .highlight {
    background: rgba(255,255,255,0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.mega-col a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
}
.mega-col a:hover {
    color: var(--blue2);
    background: transparent;
}
.mega-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.new-badge-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.badge-new {
    background: #00ba4a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
}
.mobile-sub {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    margin-top: 8px;
    gap: 8px;
}
.mobile-sub.open {
    display: flex;
}

        @media (max-width: 980px) {
            nav ul {
                display: none
            }

            .hamburger {
                display: inline-grid;
                place-items: center
            }
        }
        
        @media (max-width: 600px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
        }
    
/* --- privacy-policy.php --- */

        :root {
            --bg: #020204;
            --bg2: #080c14;
            --card: rgba(255, 255, 255, .02);
            --card2: rgba(255, 255, 255, .05);
            --text: #EAF0FF;
            --muted: #8892b0;
            --line: rgba(255, 255, 255, .06);
            --blue: #1d69a2;
            --blue2: #38bdf8;
            --beam: #4355ff;
            --shadow: 0 24px 60px -12px rgba(0, 0, 0, .8);
            --radius: 4px;
            --radius2: 12px;
            --max: 1400px;
            --font-head: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            position: relative;
        }

        .gradient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 107, 255, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(67, 85, 255, 0.15) 0%, transparent 60%);
            animation: glowPulse 8s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .ambientGlow {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40vh;
            background: linear-gradient(to top, rgba(79, 107, 255, 0.15), transparent);
            pointer-events: none;
            z-index: 5;
        }

        h1, h2, h3, h4, h5, h6, .brand, .num, .btn {
            font-family: var(--font-head);
        }

        a {
            color: inherit;
            text-decoration: none
        }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 10, 18, .55);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: .2px;
        }

        .logoMark {
            width: 150px;
            border-radius: 12px;
            background: transparent;
            box-shadow: none;
        }
        
        .logoMark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* border-radius: 12px; */
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            font-weight: 600;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
            cursor: pointer;
            user-select: none;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .09);
            border-color: rgba(255, 255, 255, .20)
        }

        .content-page {
            position: relative;
            z-index: 10;
            padding: 80px 0 100px;
        }

        .content-page h1 {
            font-size: clamp(36px, 4vw, 52px);
            margin: 0 0 16px;
            font-weight: 400;
            letter-spacing: -1px;
        }

        .content-page .last-updated {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 40px;
        }

        .content-section {
            margin-bottom: 48px;
        }

        .content-section h2 {
            font-size: clamp(24px, 2.5vw, 32px);
            margin: 0 0 20px;
            font-weight: 400;
            letter-spacing: -0.5px;
            color: var(--text);
        }

        .content-section h3 {
            font-size: clamp(18px, 1.8vw, 22px);
            margin: 32px 0 16px;
            font-weight: 500;
            color: var(--text);
        }

        .content-section p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 20px;
        }

        .content-section ul, .content-section ol {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 20px;
            padding-left: 24px;
        }

        .content-section li {
            margin-bottom: 12px;
        }

        .highlight-box {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--radius2);
            padding: 24px;
            margin: 32px 0;
        }

        .highlight-box strong {
            color: var(--text);
            display: block;
            margin-bottom: 12px;
            font-size: 16px;
        }

        footer {
            padding: 26px 0 34px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: var(--muted);
            font-size: 13px;
            position: relative;
            z-index: 10;
        }

        .foot {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center
        }

        .links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .links a {
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            transition: all 0.2s;
        }

        .links a:hover {
            background: rgba(255, 255, 255, .07);
            color: var(--text);
        }

        @media (max-width: 980px) {
            .content-page {
                padding: 60px 0 80px;
            }
        }
    
/* --- terms-and-conditions.php --- */

        :root {
            --bg: #020204;
            --bg2: #080c14;
            --card: rgba(255, 255, 255, .02);
            --card2: rgba(255, 255, 255, .05);
            --text: #EAF0FF;
            --muted: #8892b0;
            --line: rgba(255, 255, 255, .06);
            --blue: #1d69a2;
            --blue2: #38bdf8;
            --beam: #4355ff;
            --shadow: 0 24px 60px -12px rgba(0, 0, 0, .8);
            --radius: 4px;
            --radius2: 12px;
            --max: 1400px;
            --font-head: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            color: var(--text);
            background-color: var(--bg);
            overflow-x: hidden;
            position: relative;
        }

        .gradient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: 
                radial-gradient(circle at 20% 30%, rgba(79, 107, 255, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(67, 85, 255, 0.15) 0%, transparent 60%);
            animation: glowPulse 8s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            0% {
                opacity: 0.6;
                transform: scale(1);
            }
            100% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .ambientGlow {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40vh;
            background: linear-gradient(to top, rgba(79, 107, 255, 0.15), transparent);
            pointer-events: none;
            z-index: 5;
        }

        h1, h2, h3, h4, h5, h6, .brand, .num, .btn {
            font-family: var(--font-head);
        }

        a {
            color: inherit;
            text-decoration: none
        }

        .wrap {
            max-width: var(--max);
            margin: 0 auto;
            padding: 0 20px
        }

        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 10, 18, .55);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            letter-spacing: .2px;
        }

        .logoMark {
            width: 150px;
            border-radius: 12px;
            background: transparent;
            box-shadow: none;
        }
        
        .logoMark img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* border-radius: 12px; */
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, .14);
            background: rgba(255, 255, 255, .06);
            color: var(--text);
            font-weight: 600;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
            cursor: pointer;
            user-select: none;
        }

        .btn:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .09);
            border-color: rgba(255, 255, 255, .20)
        }

        .content-page {
            position: relative;
            z-index: 10;
            padding: 80px 0 100px;
        }

        .content-page h1 {
            font-size: clamp(36px, 4vw, 52px);
            margin: 0 0 16px;
            font-weight: 400;
            letter-spacing: -1px;
        }

        .content-page .last-updated {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 40px;
        }

        .content-section {
            margin-bottom: 48px;
        }

        .content-section h2 {
            font-size: clamp(24px, 2.5vw, 32px);
            margin: 0 0 20px;
            font-weight: 400;
            letter-spacing: -0.5px;
            color: var(--text);
        }

        .content-section h3 {
            font-size: clamp(18px, 1.8vw, 22px);
            margin: 32px 0 16px;
            font-weight: 500;
            color: var(--text);
        }

        .content-section p {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 20px;
        }

        .content-section ul, .content-section ol {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.8;
            margin: 0 0 20px;
            padding-left: 24px;
        }

        .content-section li {
            margin-bottom: 12px;
        }

        .highlight-box {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: var(--radius2);
            padding: 24px;
            margin: 32px 0;
        }

        .highlight-box strong {
            color: var(--text);
            display: block;
            margin-bottom: 12px;
            font-size: 16px;
        }

        footer {
            padding: 26px 0 34px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: var(--muted);
            font-size: 13px;
            position: relative;
            z-index: 10;
        }

        .foot {
            display: flex;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center
        }

        .links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap
        }

        .links a {
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, .10);
            background: rgba(255, 255, 255, .04);
            transition: all 0.2s;
        }

        .links a:hover {
            background: rgba(255, 255, 255, .07);
            color: var(--text);
        }

        @media (max-width: 980px) {
            .content-page {
                padding: 60px 0 80px;
            }
        }
    