:root {
    --primary: #ffd700;
    /* Gold */
    --accent: #00f3ff;
    /* Neon Blue */
    --bg-dark: #0a0a0a;
    --bg-panel: #111111;
    --text-main: #ffffff;
    --text-muted: #cccccc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fix lint warning */
}

.center-text {
    text-align: center;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: var(--bg-dark);
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.section-padding {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: 0.3s;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.company-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-logos img {
    height: 35px;
    /* Proportional height */
    width: auto;
    background: rgba(255, 255, 255, 0.9);
    /* Slight white bg for visibility if logos are dark/transparent */
    padding: 2px 5px;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, rgba(10, 10, 10, 0) 50%);
    top: -50%;
    left: -50%;
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.kda-badge {
    display: inline-flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.kda-badge span {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.typewriter {
    min-height: 1.2em;
    /* Prevent jump */
    border-right: 2px solid var(--accent);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent
    }

    50% {
        border-color: var(--accent)
    }
}

.consultation-label {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--accent);
    /* Default text color neon blue */
    font-weight: 600;
    border-radius: 5px;
    /* Square with slight radius */
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

/* Specific hover colors if needed, but keeping unified for now */

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.3));
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Three Pillars */
.pillars {
    background-color: var(--bg-panel);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pillar-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.pillar-list {
    list-style: none;
    color: var(--text-muted);
}

.pillar-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pillar-list li::before {
    content: '▹';
    color: var(--accent);
    margin-right: 10px;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 50px 0;
    text-align: center;
    color: var(--text-muted);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: block;
}


/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .kda-badge {
        margin: 0 auto 20px auto;
    }
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateX(-5px) scale(1.1);
}

.social-link.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.6);
}

.social-link.tiktok:hover {
    background: #000;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.6);
    /* TikTok cyan/pink glow */
    color: #ff0050;
    /* TikTok pink accent */
    border-color: #00f2ea;
}

.social-link.youtube:hover {
    background: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.social-link.whatsapp:hover {
    background: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Mobile Adjustment for Sidebar */
@media (max-width: 768px) {
    .social-sidebar {
        right: 10px;
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Running Text Marquee */
.marquee-container {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    margin-top: 80px;
    /* Offset for fixed navbar */
    margin-bottom: -80px;
    /* Pull hero up */
    z-index: 10;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Specific adjustment for hero when marquee is present */
.hero {
    padding-top: 130px;
    /* Increased padding to accommodate marquee */
}

/* Bottom Marquee */
.bottom-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    border-bottom: none;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 10, 0.95);
    /* Slightly opaque to ensure readability over content */
    backdrop-filter: blur(10px);
    z-index: 1000;
    /* Ensure it stays above other content */
}

.marquee-content.reverse {
    animation: marquee-reverse 40s linear infinite;
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}