:root {
    --color-bg: #ffffff;
    --color-bg-light: #f4faff;
    --color-text: #070653;
    --color-text-muted: #64748b;
    --color-primary: #00E5FF;
    --color-primary-glow: rgba(0, 229, 255, 0.4);
    --color-secondary: #090a83;
    --color-white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 141, 250, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 141, 250, 0.08);
    border-radius: 16px;
}

.glow-text {

    color: var(--color-secondary);
}

.button-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% auto;
    color: var(--color-white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.5s ease;
    box-shadow: 0 4px 15px rgba(0, 141, 250, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.button-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 229, 255, 0.6);
    filter: brightness(1.1);
}

.button-outline {
    background: transparent;
    color: var(--color-secondary);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.button-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 141, 250, 0.4);
    filter: brightness(1.05);
}

/* Layouts */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 141, 250, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    color: var(--color-text);
}

.nav-link:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.click-ripple {
    position: absolute;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-primary-glow);
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.glow-orb.top-right {
    top: -200px;
    right: -200px;
}

.glow-orb.bottom-left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 141, 250, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 700;
}

.title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--color-text);
}

.title .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.about-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.stat-item span {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
    color: var(--color-secondary);
    font-weight: 800;
}

/* Mockup UI */
.hero-image-area {
    position: relative;
    perspective: 1000px;
}

.main-dashboard-mockup {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: var(--transition);
    background: #ffffff;
    border: 1px solid rgba(0, 141, 250, 0.2);
    box-shadow: 0 40px 100px rgba(0, 141, 250, 0.15);
}

.main-dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-header {
    height: 30px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    border-bottom: 1px solid #cbd5e1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-body {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 25%;
    border-right: 1px solid #cbd5e1;
    background: #f8fafc;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-sidebar::after {
    content: '';
    width: 80%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 4px;
}

.mockup-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-card {
    height: 30%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 8px;
    border: 1px solid #7dd3fc;
    position: relative;
    overflow: hidden;
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    width: 40%;
    height: 6px;
    background: rgba(0, 141, 250, 0.4);
    border-radius: 3px;
    transform: translateY(-50%);
}

.mockup-chart {
    flex: 1;
    background: linear-gradient(180deg, #bae6fd 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #7dd3fc;
    border-bottom: none;
    position: relative;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 60%;
    background: repeating-linear-gradient(90deg, #008DFA, #008DFA 10px, transparent 10px, transparent 20px);
    opacity: 0.3;
}

.floating-card {
    position: absolute;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid rgba(0, 141, 250, 0.1);
    box-shadow: 0 10px 30px rgba(0, 141, 250, 0.1);
    color: var(--color-text);
    border-radius: 12px;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: 5px;
    animation-delay: 2s;
}

.icon-glow {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Solutions */
.solutions {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 141, 250, 0.1);
    border-color: var(--color-secondary);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #eff6ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-secondary);
    border: 1px solid #dbeafe;
    transition: var(--transition);
}

.solution-card:hover .icon-box {
    background: var(--color-secondary);
    color: var(--color-white);
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text);
}

.solution-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid #eef2f6;
    background: transparent;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 30px;
}

.mt-8 {
    margin-top: 60px;
}

.mt-2 {
    margin-top: 10px;
}

.text-muted {
    color: var(--color-text-muted);
}

.footer h2 {
    font-size: 2.5rem;
    color: var(--color-text);
}

.button-lg {
    padding: 16px 35px;
    font-size: 1.2rem;
}

/* Scroll Animated Background */
.scroll-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Responsive Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-secondary);
}

/* Responsive Styles */
/* Typography Scaling */
.title {
    font-size: clamp(2.2rem, 8vw, 4rem);
}

.subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.panda-follow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
}

.panda-follow>div {
    pointer-events: auto;
}

/* Visibility Helpers */
.show-only-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .show-only-mobile {
        display: flex !important;
    }
}

/* Responsive Styles */

/* TABLETS (Under 992px) */
@media (max-width: 992px) {
    .hero-content {
        gap: 30px;
    }

    .title {
        font-size: 3.2rem;
    }
}

/* MOBILE (Under 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        display: flex;
        position: fixed;
        padding-top: 20px;
        border-radius: 20px 0 0 20px;
        top: 0;
        right: -100%;
        width: 60%;
        height: 60vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: top;
        align-items: center;
        gap: 35px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-links.open {
        right: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
        gap: 50px;
    }

    .hero-buttons,
    .about-btn {
        justify-content: center;
        gap: 15px;
    }

    .stats {
        justify-content: center;
        gap: 20px;
    }

    .stat-item span {
        font-size: 1.6rem;
    }

    .hero-image-area {
        transform: scale(1);
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .main-dashboard-mockup {
        transform: none !important;
        /* Flatten on mobile */
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .grid-cards {
        grid-template-columns: 1fr;
    }

    .panda-follow {
        bottom: 10px;
        right: 10px;
    }
}

/* SMALL MOBILE (Under 480px) */
@media (max-width: 480px) {

    .hero-buttons,
    .about-btn {
        flex-direction: column;
    }

    .button-primary,
    .button-outline {
        width: 100%;
    }

    .hero-image-area {
        display: none;
        /* Hide complex mockup on tiny screens to save space */
    }

    .footer-links p {
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .header-logo {
        height: 32px;
    }
}

/* Smoke Trail Effect */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
}

.smoke-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    filter: blur(12px);
    border-radius: 50%;
}

/* Background Waves & Neon Lines */
.background-waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    height: 2px;
    width: 300px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    filter: blur(1px);
}

.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15vh;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.parallax>use {
    animation: move-forever 15s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.about-card {
    padding: 40px;
    text-align: center;
}

.ethics-card {
    padding: 40px;
    border: 1px solid rgba(255, 68, 68, 0.1);
}

.ethics-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.ethics-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.ethics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.ethics-list li {
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eef2f6;
    color: var(--color-text);
}

.ban-icon {
    color: #ff4444;
}

.ethics-note {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid #eef2f6;
    padding-top: 20px;
}

/* Mobile Adjustments for About */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .ethics-list {
        flex-direction: column;
        gap: 10px;
    }

    .ethics-list li {
        width: 100%;
    }
}

/* Products/Pricing Section */
.products-section {
    padding: 60px 0;
    background: transparent;
}

.section-subtitle {
    font-size: 2.2rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2px;
    /* Border thickness */
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
}

.pricing-card-inner,
.team-card-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 18px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.team-card-inner {
    padding: 10px 5px;
}

.anime-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            var(--color-primary),
            transparent,
            var(--color-secondary),
            transparent);
    animation: rotate-border 4s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: 0.3s;
}

.pricing-card:hover.anime-border::before,
.pricing-card.featured.anime-border::before,
.team-card:hover.anime-border::before {
    opacity: 1;
}

@keyframes rotate-border {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card.featured {
    transform: scale(1.05);
    z-index: 5;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px var(--color-primary-glow);
    z-index: 10;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.local-price {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 5px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--color-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.w-full {
    width: 100%;
    text-align: center;
}

.mt-auto {
    margin-top: auto;
}

/* Mobile Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid #eef2f6;
    background: white;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 229, 255, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
}

.category-tag {
    background: white;
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Mobile Portfolio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-container-wrapper {
    position: relative;
    padding: 0 60px;
}

.team-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.team-scroll-btn:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.team-scroll-btn.left {
    left: 0;
}

.team-scroll-btn.right {
    right: 0;
}

@media (max-width: 992px) {
    .team-scroll-btn {
        display: none;
    }

    .team-container-wrapper {
        padding: 0;
    }
}

.team-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: rgba(0, 229, 255, 0.05);
    border-radius: 10px;
}

.team-grid::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

.team-card {
    text-align: center;
    padding: 2px 2px;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
    border-radius: 19px;
    flex: 0 0 300px;
    scroll-snap-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-photo-container {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-photo {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.member-role {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.member-social-line {
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.click-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-primary-glow);
    pointer-events: none;
    z-index: 10001;
}

/* Utilities */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 2rem; }
.p-6 { padding: 3rem; }
.p-8 { padding: 4rem; }

.pt-20 { padding-top: 5rem; }
.pb-20 { padding-bottom: 5rem; }

.m-0 { margin: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2.5rem; }
.mt-8 { margin-top: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 2rem; }
.gap-8 { gap: 3rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }

/* More About Page Styles Re-refinement */
.more-about-page {
    position: relative;
    z-index: 1;
}

.about-content-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.more-about-page h2 {
    color: var(--color-secondary);
    font-size: 2.5rem;
    margin-bottom: 25px;
    border-left: 6px solid var(--color-primary);
    padding-left: 25px;
    font-weight: 800;
}

.more-about-page h3 {
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-size: 1.8rem;
    font-weight: 700;
}

.more-about-page p {
    font-size: 1.15rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.9;
}

.accent-line {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 5px;
}

.vision-mission-row,
.values-team-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.icon-badge {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.25);
    transition: var(--transition);
}

.icon-badge:hover {
    transform: rotate(10deg) scale(1.1);
}

.icon-badge.primary {
    background: linear-gradient(135deg, var(--color-primary), #00b8d4);
    color: white;
}

.icon-badge.secondary {
    background: linear-gradient(135deg, var(--color-secondary), #0d0f8d);
    color: white;
}

.custom-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(0, 141, 250, 0.05);
    transition: var(--transition);
}

.custom-list li:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 141, 250, 0.05);
}

.icon-cyan {
    color: var(--color-primary);
    font-size: 1.3rem;
}

.feature-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feat-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    transition: var(--transition);
}

.feat-item:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}

.feat-item svg {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.feat-item span {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-secondary);
    text-align: center;
}

.highlight-border {
    border: 2px solid var(--color-primary) !important;
    background: rgba(0, 229, 255, 0.05) !important;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1) !important;
}

.final-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(0, 229, 255, 0.05));
    border: 1px solid var(--color-primary);
}

.final-cta h2 {
    border: none;
    padding-left: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .vision-mission-row,
    .values-team-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .more-about-page h2 {
        font-size: 2rem;
        padding-left: 15px;
    }

    .p-5 { padding: 1.5rem; }
    .p-6 { padding: 2rem; }
    
    .feat-item {
        padding: 20px;
    }
}

/* --- VANILLA JS EFFECTS & SCROLL REVEALS --- */

/* Scroll Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Neon Lines animation definitions */
.neon-line {
    opacity: 0;
    left: -300px;
}

.neon-line:nth-child(1) { top: 12%; animation: neon-line-animation 8s linear infinite; animation-delay: 0s; }
.neon-line:nth-child(2) { top: 24%; animation: neon-line-animation 10s linear infinite; animation-delay: 1.5s; }
.neon-line:nth-child(3) { top: 36%; animation: neon-line-animation 12s linear infinite; animation-delay: 3s; }
.neon-line:nth-child(4) { top: 48%; animation: neon-line-animation 14s linear infinite; animation-delay: 4.5s; }
.neon-line:nth-child(5) { top: 60%; animation: neon-line-animation 16s linear infinite; animation-delay: 6s; }
.neon-line:nth-child(6) { top: 72%; animation: neon-line-animation 18s linear infinite; animation-delay: 7.5s; }
.neon-line:nth-child(7) { top: 84%; animation: neon-line-animation 20s linear infinite; animation-delay: 9s; }
.neon-line:nth-child(8) { top: 96%; animation: neon-line-animation 22s linear infinite; animation-delay: 10.5s; }

@keyframes neon-line-animation {
    0% {
        left: -300px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Smoke particles animation */
.smoke-particle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    filter: blur(12px);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: smoke-particle-animation 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes smoke-particle-animation {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.5);
    }
}

/* Click Ripple animation */
.click-ripple {
    position: absolute;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--color-primary-glow);
    pointer-events: none;
    z-index: 10001;
    animation: click-ripple-animation 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes click-ripple-animation {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3.5);
    }
}

/* Portfolio Filtering layout transition */
.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.hidden-animate {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}