/* Custom Utilities */
/* Custom Utilities */
.glass-effect {
    /* Minimal Glass Style */
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    /* Stronger separation shadow */
}

.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}

.accordion-content.active {
    opacity: 1;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Duotone Icon Styling - Reversed (Blue Primary, Orange Secondary) */
.icon-duotone {
    --ph-duotone-primary: #00a1e0;
    /* Secondary Blue */
    --ph-duotone-secondary: #f59730;
    /* Brand Orange */
}

.icon-duotone.ph-duotone {
    color: var(--ph-duotone-primary);
}

.icon-duotone.ph-duotone::after {
    opacity: 1;
    color: var(--ph-duotone-secondary);
}

/* Typewriter Cursor */
.typewriter-cursor::after {
    content: '|';
    animation: cursor 1s infinite step-start;
    margin-left: 2px;
    color: #f59730;
    font-weight: 400;
}

@keyframes cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}