* {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            margin: 0;
            background: url("../logo/background.png") center center / cover no-repeat fixed;
            min-height: 100vh;
        }

        .wrapper {
            max-width: 1300px;
            margin: auto;
            padding: 40px 20px 80px;
            text-align: center;
        }

        /* HEADER */

        .title {
            font-size: 34px;
            font-weight: 700;
            color: #0b3c82;
            margin-bottom: 5px;
        }

        .title span {
            color: #0066ff;
        }

        .subtitle {
            font-size: 16px;
            color: #555;
            margin-bottom: 40px;
        }

        .divider {
            width: 90px;
            height: 5px;
            background: #f7b500;
            border-radius: 20px;
            margin: 15px auto 50px;
        }

        /* CARDS */

        .card-row {
            display: flex;
            gap: 22px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .card {
            width: 230px;
            background: white;
            border-radius: 22px;
            padding: 22px 18px 24px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.08);
            transition: .25s;
            position: relative;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.12);
        }

        .card-top {
            height: 70px;
            border-radius: 18px 18px 30px 30px;
            margin: -22px -18px 10px;
        }

        .blue-top { background: linear-gradient(135deg, #007bff, #0056d6); }
        .yellow-top { background: linear-gradient(135deg, #78323d, #8b1c40); }
        .green-top { background: linear-gradient(135deg, #12b886, #0ca678); }
        .red-top { background: linear-gradient(135deg, #00a138, #007a2a); }
        .purple-top { background: linear-gradient(135deg, #845ef7, #5f3dc4); }

        .logo-circle {
            width: 74px;
            height: 74px;
            background: white;
            border-radius: 50%;
            margin: -45px auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
        }

        .logo-circle img {
            border-radius: 55px;
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .card h3 {
            font-size: 15px;
            font-weight: 600;
            color: #222;
            margin: 10px 0 8px;
        }

        .tag {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .tag-blue { background: #e7f1ff; color: #0066ff; }
        .tag-yellow { background: #fff4d6; color: #78323d; }
        .tag-green { background: #e6fcf5; color: #099268; }
        .tag-red { background: #ffe3e3; color: #00a138; }
        .tag-purple { background: #f3f0ff; color: #5f3dc4; }

        .btn {
            display: block;
            text-decoration: none;
            padding: 10px;
            border-radius: 30px;
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

        .btn-blue { background: #0066ff; }
        .btn-yellow { background: #78323d; }
        .btn-green { background: #12b886; }
        .btn-red { background: #00a138; }
        .btn-purple { background: #6f4cff; }

        .radial-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .radial-wrapper .btn {
            width: 100%;
            border: 0;
            cursor: pointer;
            text-align: center;
        }

        /* FEATURES STRIP */

        .features {
            margin-top: 55px;
            background: white;
            border-radius: 40px;
            padding: 20px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }

        .feature {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            padding: 10px 20px;
        }

        .feature span {
            color: #0066ff;
        }

        #div2 {
            border-radius: 15px;
            width: 52px;
            height: 52px;  
        }

        /* COLUMN MENU BASE */
        .radial-menu {
            position: absolute;
            top: 50%;
            left: 105%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        /* MENU ITEM */
        .menu-item {
            position: relative;
            width: clamp(100px, 10vw, 150px);
            padding: 6px;

            border-radius: 25px;
            background: linear-gradient(135deg, #6f4cff, #8f6bff);
            color: white;
            text-decoration: none;
            font-size: 14px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);


            display: flex;
            align-items: center;
            gap: 8px;

            opacity: 0;
            transform: translateX(20px);
            transition: all 0.3s ease;
        }
        

        /* ACTIVE STATE */
        .radial-menu.active .menu-item {
            opacity: 1;
            transform: translateX(0);
        }

        /* STAGGER ANIMATION */
        .radial-menu.active .menu-item:nth-child(1) { transition-delay: 0.05s; }
        .radial-menu.active .menu-item:nth-child(2) { transition-delay: 0.1s; }
        .radial-menu.active .menu-item:nth-child(3) { transition-delay: 0.15s; }

        /* HOVER */
        .menu-item:hover {
            background: #f7b500;
            color: #000;
            transform: translateX(5px);
        }

        .radial-menu.open-left {
            left: auto;
            right: 105%;
        }

        .radial-menu.open-left .menu-item {
            transform: translateX(-20px);
        }

        .radial-menu.open-left.active .menu-item {
            transform: translateX(0);
        }

        @media (max-width: 768px) {

            .radial-menu {
                position: absolute;
                top: 50%;
                left: 105%;
                transform: translateY(-50%);
                flex-direction: column;
                gap: 8px;
                z-index: 999;
            }

            .menu-item {
                width: 140px;

                opacity: 0;
                transform: translateX(15px);
            }

            .radial-menu.active .menu-item {
                opacity: 1;
                transform: translateX(0);
            }
        }
