
        :root {
            --bg: #0c0f1a;
            --surface: #14182a;
            --primary: #ff4d6d;
            --secondary: #6c7cff;
            --text: #f2f3f7;
            --muted: #b8bccd;
            --border: rgba(255, 255, 255, .08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            background: linear-gradient(180deg, #0a0d18, #0f1426);
            color: var(--text);
            line-height: 1.7;
        }

        .container {
            max-width: 1180px;
            margin: auto;
            padding: 24px;
        }

        /* HEADER */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 26px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .brand img {
            height: 64px;
            /* INCREASED LOGO SIZE */
            padding: 14px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 16px;
        }

        .brand span {
            font-size: 22px;
            font-weight: 600;
            letter-spacing: .4px;
        }

        .cta {
            padding: 14px 34px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #000;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: .3s;
        }

        .cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 36px rgba(255, 77, 109, .35);
        }

        /* HERO */
        .hero {
            margin: 90px 0 120px;
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 60px;
            align-items: center;
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 56px);
            line-height: 1.15;
            margin-bottom: 22px;
        }

        .hero p {
            font-size: 18px;
            color: var(--muted);
            max-width: 560px;
        }

        .hero-image {
            height: 420px;
            border-radius: 28px;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15)),
                url('../assets/images/hitechcity.jpg') center/cover;
            box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
        }

        .hero-box {
            margin-top: 36px;
            background: linear-gradient(180deg, #171b33, #11142a);
            border: 1px solid var(--border);
            border-radius: 26px;
            padding: 40px;
        }

        .hero-box h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .hero-box ul {
            list-style: none;
        }

        .hero-box li {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            color: var(--muted);
        }

        .section {
            margin-bottom: 120px;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .section-desc {
            color: var(--muted);
            max-width: 680px;
            margin-bottom: 50px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .card {
            background: linear-gradient(180deg, #161a31, #10132a);
            border: 1px solid var(--border);
            border-radius: 26px;
            padding: 36px;
            transition: .3s;
        }

        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 18px;
            margin-bottom: 18px;
        }

        .card h3 {
            font-size: 21px;
            margin-bottom: 12px;
        }

        .card p {
            color: var(--muted);
        }

        .locations {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .locations span {
            padding: 8px 18px;
            border-radius: 20px;
            background: #14182a;
            border: 1px solid var(--border);
            font-size: 14px;
            color: var(--muted);
        }


        .final {
            background: linear-gradient(135deg, #ff4d6d, #6c7cff);
            color: #000;
            padding: 90px 30px;
            border-radius: 34px;
            text-align: center;
        }

        .final h2 {
            font-size: 40px;
            margin-bottom: 18px;
        }

        .final p {
            max-width: 640px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        .final a {
            background: #000;
            color: #fff;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            color: #9aa0b4;
            font-size: 14px;
        }

        @media(max-width:900px) {
            .hero {
                grid-template-columns: 1fr;
                margin: 60px 0 90px;
            }

            .hero-image {
                height: 300px
            }

            .hero-box {
                padding: 30px
            }

            .final h2 {
                font-size: 30px
            }
        }
  