<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fixed Gradient Palette - InfoFusion Hubs</title>
    <style>
        /* 1. Reset aur Basic Setting takay layout hile nahi */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: #0b024d; /* Dark Navy Background */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh; /* Screen ki poori height ke darmiyan */
            font-family: 'Segoe UI', Arial, sans-serif;
            overflow-x: hidden; /* Side scrolling ko rokne ke liye */
        }
        /* 2. Header Text */
        .brand-name {
            color: #7226ff;
            letter-spacing: 10px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 40px;
            text-transform: uppercase;
        }
        /* 3. Main Container jo layout ko kharab hone se bachata hai */
        .palette-wrapper {
            display: flex;
            gap: 15px; /* Bars ke darmiyan barabar fasla */
            padding: 20px;
            max-width: 100%;
            justify-content: center;
        }
        .bar {
            width: 90px;
            height: 520px;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        /* 4. Exact Gradients from Image */
        .g1 { background: linear-gradient(to bottom, #FFE5F1, #F042FF); color: #000; }
        .g2 { background: linear-gradient(to bottom, #FFE5F1, #F042FF, #7226FF); color: #fff; }
        .g3 { background: linear-gradient(to bottom, #87F5F5, #FFE5F1, #F042FF); color: #000; }
        .g4 { background: linear-gradient(to bottom, #7226FF, #160078, #010030); color: #fff; }
        /* 5. Typography aur Vertical Text */
        .hex {
            font-size: 11px;
            font-weight: 700;
            text-align: center;
            line-height: 1.4;
        }
        .center-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-grow: 1;
            justify-content: center;
            gap: 20px;
        }
        .line {
            width: 1.5px;
            height: 50px;
            background-color: currentColor;
            opacity: 0.3;
        }
        .title-text {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 24px;
            font-weight: 900;
            text-transform: capitalize;
            white-space: nowrap;
        }
        /* 6. Mobile Optimization (Responsive) */
        @media (max-width: 480px) {
            .palette-wrapper { gap: 8px; padding: 10px; }
            .bar { width: 75px; height: 450px; }
            .title-text { font-size: 18px; }
            .brand-name { letter-spacing: 5px; }
        }
    </style>
</head>
<body>
    ATLITUDE
        <!-- Bar 1 -->
            #FFE5F1
                Gradient 1
            #F042FF
        <!-- Bar 2 -->
            #FFE5F1<br>#F042FF
                Gradient 2
            #7226FF
        <!-- Bar 3 -->
            #87F5F5
                Gradient 3
            #FFE5F1<br>#F042FF
        <!-- Bar 4 -->
            #7226FF
                Gradient 4
            #160078<br>#010030
</body>
</html>