
        :root {
            --orange: #e87722;
            --orange-light: #f4a85a;
            --orange-dark: #c45e0e;
            --black: #0a0a0a;
            --dark: #111111;
            --mid: #1e1e1e;
            --grey: #2a2a2a;
            --text: #d4d4d4;
            --muted: #777;
            --white: #f9f5f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--black);
            color: var(--text);
            font-family: 'Barlow', sans-serif;
            font-weight: 300;
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 5vw;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(232, 119, 34, 0.15);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .nav-logo img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }

        .nav-brand {
            font-family: 'Barlow Condensed', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--white);
            line-height: 1.2;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .nav-brand span {
            display: block;
            color: var(--orange);
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-cta {
            background: var(--orange);
            color: #fff !important;
            padding: 0.6rem 1.4rem;
            border-radius: 2px;
            font-weight: 500 !important;
            transition: background 0.3s !important;
        }

        .nav-cta:hover {
            background: var(--orange-dark) !important;
            color: #fff !important;
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5vw;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(232, 119, 34, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 119, 34, 0.04) 0%, transparent 60%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(232, 119, 34, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(232, 119, 34, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-eyebrow {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            animation: fadeUp 0.8s ease both;
        }

        .hero-eyebrow span {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--orange);
            font-weight: 500;
        }

        .hero-eyebrow::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--orange);
        }

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 300;
            line-height: 1.05;
            color: var(--white);
            margin-bottom: 1.5rem;
            animation: fadeUp 0.8s 0.15s ease both;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--orange);
        }

        .hero-sub {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--muted);
            max-width: 520px;
            margin-bottom: 3rem;
            animation: fadeUp 0.8s 0.3s ease both;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            animation: fadeUp 0.8s 0.45s ease both;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
            padding: 0.9rem 2.2rem;
            border-radius: 2px;
            text-decoration: none;
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .btn-primary:hover {
            background: transparent;
            border-color: var(--orange);
            color: var(--orange);
        }

        .btn-ghost {
            color: var(--text);
            text-decoration: none;
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s;
        }

        .btn-ghost:hover {
            color: var(--orange);
        }

        .btn-ghost::after {
            content: '→';
            transition: transform 0.3s;
        }

        .btn-ghost:hover::after {
            transform: translateX(4px);
        }

        .hero-visual {
            position: absolute;
            right: 5vw;
            top: 50%;
            transform: translateY(-50%);
            width: 360px;
            height: 360px;
            animation: fadeIn 1s 0.5s ease both;
        }

        .hero-logo-ring {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .hero-logo-ring img {
            width: 260px;
            height: 260px;
            border-radius: 50%;
            object-fit: cover;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 60px rgba(232, 119, 34, 0.2), 0 0 120px rgba(232, 119, 34, 0.08);
        }

        .ring-orbit {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid rgba(232, 119, 34, 0.2);
            animation: spin 20s linear infinite;
        }

        .ring-orbit::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 10px var(--orange);
        }

        .ring-orbit-2 {
            inset: 20px;
            border: 1px solid rgba(232, 119, 34, 0.1);
            animation: spin 30s linear infinite reverse;
        }

        .ring-orbit-2::after {
            width: 5px;
            height: 5px;
            top: -2.5px;
            box-shadow: 0 0 6px var(--orange);
        }

        /* STATS */
        .stats {
            background: var(--dark);
            border-top: 1px solid rgba(232, 119, 34, 0.1);
            border-bottom: 1px solid rgba(232, 119, 34, 0.1);
            padding: 3rem 5vw;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--orange);
            line-height: 1;
            display: block;
        }

        .stat-label {
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 0.4rem;
        }

        /* SECTIONS */
        section {
            padding: 7rem 5vw;
        }

        .section-eyebrow {
            font-size: 0.7rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--orange);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .section-eyebrow::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--orange);
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 300;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .section-body {
            color: var(--muted);
            line-height: 1.8;
            max-width: 540px;
        }

        /* SERVICES */
        #services {
            background: var(--dark);
        }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1px;
            background: rgba(232, 119, 34, 0.1);
        }

        .service-card {
            background: var(--dark);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: background 0.4s;
            cursor: default;
        }

        .service-card:hover {
            background: var(--mid);
        }

        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--orange), transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(232, 119, 34, 0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            transition: background 0.4s;
        }

        .service-card:hover .service-icon {
            background: rgba(232, 119, 34, 0.2);
        }

        .service-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .service-desc {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            margin-top: 1.2rem;
        }

        .tag {
            font-size: 0.65rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--orange);
            border: 1px solid rgba(232, 119, 34, 0.3);
            padding: 0.2rem 0.6rem;
            border-radius: 1px;
        }

        /* PLATFORMS */
        #platforms {
            background: var(--black);
        }

        .platforms-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .platform-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            margin-top: 3rem;
            background: rgba(232, 119, 34, 0.08);
        }

        .platform-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.2rem 1.5rem;
            background: var(--black);
            transition: background 0.3s;
            cursor: default;
        }

        .platform-item:hover {
            background: rgba(232, 119, 34, 0.05);
        }

        .platform-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }

        .platform-name {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            flex: 1;
        }

        .platform-badge {
            font-size: 0.65rem;
            color: var(--orange);
            border: 1px solid rgba(232, 119, 34, 0.3);
            padding: 0.15rem 0.5rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .visual-box {
            position: relative;
            height: 450px;
        }

        .vb-main {
            position: absolute;
            inset: 0;
            background: var(--mid);
            border: 1px solid rgba(232, 119, 34, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 3rem;
        }

        .vb-circle {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 119, 34, 0.2) 0%, transparent 70%);
            border: 1px solid rgba(232, 119, 34, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--orange);
        }

        .vb-text {
            text-align: center;
        }

        .vb-text strong {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--white);
            display: block;
            margin-bottom: 0.3rem;
        }

        .vb-text p {
            font-size: 0.8rem;
            color: var(--muted);
        }

        .vb-accent {
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100px;
            height: 100px;
            border: 1px solid rgba(232, 119, 34, 0.2);
            z-index: -1;
        }

        .vb-accent-2 {
            position: absolute;
            bottom: -15px;
            left: -15px;
            width: 80px;
            height: 80px;
            border: 1px solid rgba(232, 119, 34, 0.15);
            z-index: -1;
        }

        /* WHY US */
        #why {
            background: var(--dark);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .why-item {
            padding: 2rem;
            border-left: 2px solid rgba(232, 119, 34, 0.2);
            transition: border-color 0.3s;
        }

        .why-item:hover {
            border-color: var(--orange);
        }

        .why-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: rgba(232, 119, 34, 0.2);
            font-weight: 600;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .why-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.75rem;
        }

        .why-text {
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.7;
        }

        /* CONTACT */
        #contact {
            background: var(--black);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 5rem;
            align-items: start;
            margin-top: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-block {
            padding: 1.5rem;
            background: var(--dark);
            border-left: 2px solid rgba(232, 119, 34, 0.3);
        }

        .contact-label {
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.5rem;
        }

        .contact-value {
            color: var(--text);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .contact-value a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-value a:hover {
            color: var(--orange);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group label {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: var(--dark);
            border: 1px solid rgba(232, 119, 34, 0.15);
            color: var(--text);
            padding: 0.9rem 1rem;
            font-family: 'Barlow', sans-serif;
            font-size: 0.88rem;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
            appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--orange);
        }

        .form-group select option {
            background: var(--dark);
        }

        .form-submit {
            margin-top: 0.5rem;
        }

        .form-submit .btn-primary {
            display: inline-block;
            border: none;
            cursor: pointer;
            font-family: 'Barlow', sans-serif;
            width: 100%;
            text-align: center;
        }

        .social-row {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid rgba(232, 119, 34, 0.3);
            color: var(--muted);
            text-decoration: none;
            font-size: 0.75rem;
            transition: all 0.3s;
        }

        .social-link:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: rgba(232, 119, 34, 0.05);
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            border-top: 1px solid rgba(232, 119, 34, 0.1);
            padding: 3rem 5vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .footer-brand img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
        }

        .footer-brand-text {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-copy {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .footer-spn {
            background: rgba(232, 119, 34, 0.1);
            border: 1px solid rgba(232, 119, 34, 0.3);
            color: var(--orange);
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.35rem 0.8rem;
        }

        /* ANIMATIONS */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ORANGE LINE DIVIDER */
        .divider {
            width: 60px;
            height: 2px;
            background: var(--orange);
            margin: 0 auto;
        }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .hero-visual {
                display: none;
            }

            .platforms-layout {
                grid-template-columns: 1fr;
            }

            .visual-box {
                display: none;
            }

            .contact-layout {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 600px) {
            section {
                padding: 4rem 6vw;
            }

            .stats {
                padding: 2rem 6vw;
            }
        }
        .error {
      color: red;
      font-family: Poppins;
      font-size: 14px;
    }

    .message-box {
      position: relative;
      margin-top: 30px;
      background: red;
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      text-align: center;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .social-row{
    display:flex;
    gap:15px;
}

.social-link{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1E3A8A;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.3s ease;
}

.social-link:hover{
    background:#F97316;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,.2);
}