* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0e1117, #000);
    color: #fff;
}

/* ACCESSIBLE SEO H1 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* APPLY LINK */
.apply-link {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
    color: #00d4ff;
    text-decoration: none;
    z-index: 10;
}

.apply-link:hover {
    text-decoration: underline;
}

/* CENTER */
.center-area {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO */
.logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

/* CIRCLE TEXT */
.text-circle svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.text-circle text {
    fill: #00d4ff;
    font-size: 17px;
    letter-spacing: 3px;
}

/* PHONE */
.phone-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0e1117;
    box-shadow:
        8px 8px 18px rgba(0,0,0,0.7),
        -8px -8px 18px rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-icon i {
    font-size: 58px;
    color: #00d4ff;
}

/* INFO ICON */
.info {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.info i {
    font-size: 20px;
    color: #aaa;
}

/* TOOLTIP */
.tooltip {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,15,15,0.95);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 14px;
    width: 210px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.tooltip strong {
    color: #00d4ff;
    display: block;
    margin-bottom: 6px;
}

.tooltip ul {
    list-style: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ACTIVE (MOBILE TAP) */
.tooltip.active {
    opacity: 1;
    pointer-events: auto;
}

/* ANIMATION */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MOBILE TWEAKS */
@media (max-width: 480px) {
    .logo-wrapper {
        width: 230px;
        height: 230px;
    }

    .phone-icon {
        width: 110px;
        height: 110px;
    }

    .phone-icon i {
        font-size: 48px;
    }

    .apply-link {
        font-size: 0.8rem;
    }
}


/* VISUALLY HIDDEN (SEO) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* APPLY LINK */
.apply-link {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #00d4ff;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 10;
}

.apply-link:hover {
    text-decoration: underline;
}

/* CENTER AREA */
.center-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO WRAPPER */
.logo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

/* CIRCULAR TEXT */
.text-circle svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.text-circle text {
    fill: #00d4ff;
    font-size: 17px;
    letter-spacing: 3px;
}

/* PHONE ICON */
.phone-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0e1117;
    box-shadow:
        8px 8px 18px rgba(0,0,0,0.7),
        -8px -8px 18px rgba(255,255,255,0.05);

    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.phone-icon i {
    font-size: 58px;
    color: #00d4ff;
    transition: 0.25s ease;
}

/* PHONE HOVER & CLICK */
.phone-icon:hover {
    transform: scale(1.08);
    box-shadow:
        inset 6px 6px 14px rgba(0,0,0,0.6),
        inset -6px -6px 14px rgba(255,255,255,0.08);
}

.phone-icon:hover i {
    transform: rotate(-8deg);
}

.phone-icon:active {
    transform: scale(0.96);
}

/* INFO ICON */
/*.info {*/
/*    position: absolute;*/
/*    right: -15px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    cursor: pointer;*/
/*}*/

/*.info i {*/
/*    font-size: 20px;*/
/*    color: #aaa;*/
/*}*/

/* TOOLTIP */
/*.tooltip {*/
/*    position: absolute;*/
/*    right: 32px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: rgba(15,15,15,0.95);*/
/*    border: 1px solid rgba(255,255,255,0.15);*/
/*    padding: 14px;*/
/*    width: 210px;*/
/*    border-radius: 10px;*/
/*    opacity: 0;*/
/*    pointer-events: none;*/
/*    transition: 0.3s ease;*/
/*}*/

/*.tooltip strong {*/
/*    color: #00d4ff;*/
/*    display: block;*/
/*    margin-bottom: 6px;*/
/*}*/

/*.tooltip ul {*/
/*    list-style: none;*/
/*    font-size: 0.9rem;*/
/*    line-height: 1.5;*/
/*}*/



/* INFO ICON (RIGHT EDGE OF LOGO) */
.info {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.info i {
    font-size: 16px;
    color: #9aa0a6;
    transition: color 0.25s ease;
}

.info:hover i {
    color: #00d4ff;
}

/* TOOLTIP (FIXED TO RIGHT SIDE OF LOGO) */
.tooltip {
    position: absolute;
    left: calc(100% + 24px);   /* OUTSIDE logo-wrapper */
    top: 50%;
    transform: translateY(-50%) scale(0.96);
    width: 220px;
    background: rgba(18,18,18,0.96);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 14px 16px;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    z-index: 10;
}

/* Tooltip arrow */
.tooltip::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: rgba(18,18,18,0.96);
    transform: translateY(-50%) rotate(45deg);
    border-left: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Tooltip text */
.tooltip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #00d4ff;
}

.tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* ACTIVE */
.tooltip.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}




/* TOOLTIP ACTIVE (MOBILE) */
.tooltip.active {
    opacity: 1;
    pointer-events: auto;
}

/* ROTATION */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MOBILE */
@media (max-width: 480px) {
    .logo-wrapper {
        width: 230px;
        height: 230px;
    }

    .phone-icon {
        width: 110px;
        height: 110px;
    }

    .phone-icon i {
        font-size: 48px;
    }
}
