
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root {
    --primary: #00ff88;
    --secondary: #0066ff;
    --accent: #ff0066;
    --dark: #0a0a0f;
    --glass: rgba(255, 255, 255, 0.1);
    --glow: 0 0 50px rgba(0, 255, 136, 0.5);
    --primary-dark: #00cc6a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 102, 0.2) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#main-header.header-hide {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--primary);
    object-fit: cover;
}

.logo:hover {
    color: #fff;
    text-shadow: 0 0 20px var(--primary);
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    text-shadow: 0 0 10px var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary), transparent, var(--secondary), transparent);
    animation: rotate 20s linear infinite;
    opacity: 0.1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(0, 255, 136, 0.8)); }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover::after {
    width: 200px;
    height: 200px;
}

.cta-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.6),
        0 0 0 2px rgba(0, 255, 136, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
}

.cta-button:active {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.1s ease;
}

.section {
    padding: 100px 0;
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: cardRotate 20s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover::after {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-20px) scale(1.01);
    box-shadow: 
        0 40px 100px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
}

.glass-card > * {
    position: relative;
    z-index: 2;
}

@keyframes cardRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateY(0) scale(1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    transform: rotate(-45deg) scale(0);
}

.feature-card:hover::before {
    width: 400px;
    height: 400px;
}

.feature-card:hover::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1.5);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    opacity: 1;
}

.knowledge-scroll-container,
.social-scroll-container,
.staff-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.knowledge-scroll-track {
    display: flex;
    animation: scrollHorizontal 35s linear infinite;
    gap: 30px;
    width: max-content;
}

.social-scroll-track {
    display: flex;
    animation: scrollHorizontal 32s linear infinite;
    gap: 30px;
    width: max-content;
}

.staff-scroll-track {
    display: flex;
    animation: scrollHorizontal 38s linear infinite;
    gap: 30px;
    width: max-content;
}

.knowledge-scroll-track:hover,
.social-scroll-track:hover,
.staff-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.knowledge-scroll-track .feature-card,
.social-scroll-track .feature-card {
    flex: 0 0 350px;
    min-height: 350px;
}

.staff-card {
    flex: 0 0 300px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    transform: translateY(0) scale(1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.staff-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    transform: rotate(-45deg) scale(0);
}

.staff-card:hover::before {
    width: 400px;
    height: 400px;
}

.staff-card:hover::after {
    opacity: 1;
    transform: rotate(-45deg) scale(1.5);
}

.staff-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.3),
        0 0 0 1px rgba(0, 255, 136, 0.2);
}

.staff-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.staff-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.staff-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.staff-card:hover h3 {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.btn {
    display: inline-block;
    padding: 16px 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 25px;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 16px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.5);
}

.role-badge, .ig-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 5px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ig-badge {
    background: rgba(255, 0, 102, 0.2);
    color: var(--accent);
    border-color: rgba(255, 0, 102, 0.3);
    text-decoration: none;
}

.role-badge:hover, .ig-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.ig-badge:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.3);
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: bounce 3s infinite, glow 2s ease-in-out infinite alternate;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

@media (max-width: 1024px) {
    nav ul {
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-card {
        flex: 0 0 280px;
        min-height: 260px;
    }

    .knowledge-scroll-track .feature-card,
    .social-scroll-track .feature-card {
        flex: 0 0 320px;
        min-height: 330px;
    }

    .staff-scroll-track {
        animation-duration: 32s;
    }

    .social-scroll-track {
        animation-duration: 28s;
    }

    .knowledge-scroll-track {
        animation-duration: 30s;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    nav a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .header-container {
        padding: 12px 15px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .staff-card {
        flex: 0 0 250px;
        min-height: 240px;
        padding: 25px 20px;
    }

    .knowledge-scroll-track .feature-card,
    .social-scroll-track .feature-card {
        flex: 0 0 280px;
        min-height: 300px;
    }

    .staff-scroll-track {
        animation-duration: 27s;
        gap: 20px;
    }

    .social-scroll-track {
        animation-duration: 23s;
        gap: 20px;
    }

    .knowledge-scroll-track {
        animation-duration: 25s;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }

    .staff-card {
        flex: 0 0 220px;
        min-height: 220px;
        padding: 20px 15px;
    }

    .social-scroll-track .feature-card {
        flex: 0 0 250px;
        min-height: 280px;
    }

    .staff-scroll-track {
        animation-duration: 18s;
        gap: 15px;
    }

    .social-scroll-track {
        animation-duration: 15s;
        gap: 15px;
    }

    .staff-card .feature-icon {
        font-size: 2.5rem;
    }

    .staff-card h3 {
        font-size: 1.1rem;
    }
}
