.glass-panel {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.spotlight-radial {
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Initial GSAP states */
.gsap-reveal {
    visibility: hidden;
}

.hero-img {
    transform: scale(1.1);
}

body {
    overflow-x: hidden;
    background-color: #0f0f0f;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Material Icons Fill */
.material-fill {
    font-variation-settings: 'FILL' 1;
}

/* Infinite Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.partner-logo {
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

.partner-logo:hover {
    opacity: 1;
    color: #ffffff;
}

/* Custom Image Hover for Insights */
.insight-card:hover .insight-img {
    transform: scale(1.05);
}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
        /* Hide default cursor */
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background-color: #ffffff;
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.2s ease;
    }

    .cursor-outline {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9998;
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    .cursor-hovering {
        width: 64px;
        height: 64px;
        background-color: rgba(255, 255, 255, 0.1);
        border-color: transparent;
    }

    .cursor-hover,
    .magnetic-btn {
        cursor: none;
        /* Prevent default pointer on hover targets */
    }
}

/* Noise Overlay */
.noise-overlay {
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Text Split line wrappers */
.line-wrapper {
    overflow: hidden;
}

/* Index Page Sections */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img-style {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.8;
}

.stats-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--surface-container-low);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stats-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.5;
}

.phil-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phil-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.9;
}

.footer-logo-footer {
    height: 2.5rem;
    width: auto;
    transform: scale(1.8);
    transform-origin: left;
}