/* Home Page Specific Styles */

/* Hero Section Skew adjustment for small screens */
@media (max-width: 1023px) {
    .absolute.top-0.right-0.w-1\/2 {
        display: none;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Service Card Hover Effect */
.service-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03); /* Expand size slightly and float upwards */
    border-color: #00cfff; /* Border highlight on all 4 sides in brand cyan */
    box-shadow: 0 20px 40px rgba(0, 207, 255, 0.12); /* Ambient premium shadow */
}

/* FAQ Accordion Styling */
.faq-item.active {
    border-color: rgba(0, 207, 255, 0.45);
    box-shadow: 0 4px 20px rgba(0, 207, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

/* Dashboard Tab & Viewfinder styling */
.hero-tab-btn {
    color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}
.hero-tab-btn.active {
    color: #00cfff !important;
    background: rgba(0, 207, 255, 0.12) !important;
    border-color: rgba(0, 207, 255, 0.25) !important;
    box-shadow: 0 0 15px rgba(0, 207, 255, 0.08);
}
.hero-panel {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-panel.hidden {
    display: none;
    opacity: 0;
    transform: translateY(10px);
}
.hero-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes scanLaser {
    0% {
        top: 0%;
    }
    50% {
        top: 100%;
    }
    100% {
        top: 0%;
    }
}
.scan-laser-line {
    animation: scanLaser 3s infinite linear;
}
