/* ==========================================================================
   Global Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --deep-space: #0a0a0c;
    --slate-grey: #1a1a24;
    --electric-purple: #8a2be2;
    --cyan-blue: #00ffff;
    --text-light: #f4f4f5;
    --text-muted: #a1a1aa;

    /* Gradients */
    --mesh-bg: linear-gradient(135deg, rgba(10, 10, 12, 1) 0%, rgba(26, 26, 36, 1) 100%);
    --accent-gradient: linear-gradient(90deg, var(--cyan-blue) 0%, var(--electric-purple) 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-light);
    background-color: var(--deep-space);
    background-image: var(--mesh-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.text-center.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-nav {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--electric-purple);
    color: #fff;
    border: 2px solid var(--electric-purple);
}

.btn-primary:hover {
    background: transparent;
    box-shadow: 0 0 15px var(--electric-purple);
}

.btn-outline-cyan {
    background: transparent;
    border: 2px solid var(--cyan-blue);
    color: var(--cyan-blue);
}

.btn-outline-cyan:hover {
    background: var(--cyan-blue);
    color: var(--deep-space);
    box-shadow: 0 0 15px var(--cyan-blue);
}

.btn-fill-purple {
    background: var(--electric-purple);
    border: 2px solid var(--electric-purple);
    color: #fff;
}

.btn-fill-purple:hover {
    background: transparent;
    box-shadow: 0 0 15px var(--electric-purple);
}

/* ==========================================================================
   1. Navigation Bar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    line-height: 1.2;
    max-width: 350px;
}

.nav-logo-img {
    height: 70px;
}

@media (max-width: 768px) {
    .nav-logo-img {
        height: 45px;
    }
}

.nav-links {
    display: flex;
    margin-left: 20px;
    margin-right: 20px;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 40%);
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Orbital 3D Logo Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    height: 400px;
}

.hero-logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   3. Dual-Core Business Model
   ========================================================================== */
.dual-core-section {
    padding: 6rem 0;
    background: var(--slate-grey);
    position: relative;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.core-card {
    background: rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.enterprise-card .card-icon {
    color: var(--cyan-blue);
}

.academy-card .card-icon {
    color: var(--electric-purple);
}

.enterprise-card:hover {
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(0, 255, 255, 0.3);
}

.enterprise-card:hover .cyan-glow {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--cyan-blue);
}

.academy-card:hover {
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.15);
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

.academy-card:hover .purple-glow {
    background: rgba(138, 43, 226, 0.1);
    box-shadow: 0 0 20px var(--electric-purple);
}

.core-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.core-details li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.enterprise-card .core-details li i {
    color: var(--cyan-blue);
    font-size: 0.9rem;
}

.academy-card .core-details li i {
    color: var(--electric-purple);
    font-size: 0.9rem;
}

/* ==========================================================================
   4. 2026 Service Catalog (Bento Box)
   ========================================================================== */
.services-section {
    padding: 8rem 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.bento-item {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.bento-item:hover {
    background: rgba(26, 26, 36, 0.8);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
}

.bento-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.bento-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Make some boxes span differently for the bento look */
.bento-item:first-child {
    grid-column: 1 / -1;
}

/* Alternatively, let them be a standard grid, changing the structure above slightly */

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .bento-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .bento-item:nth-child(2) {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        flex-direction: column;
    }

    .bento-item:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        flex-direction: column;
    }

    .bento-item:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        flex-direction: column;
    }
}

/* ==========================================================================
   5. Leadership Section
   ========================================================================== */
.leadership-section {
    padding: 6rem 0 8rem;
    background: var(--slate-grey);
}

.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--deep-space);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.leader-card:hover {
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.15);
    transform: translateY(-10px);
}

.leader-photo {
    width: 240px;
    aspect-ratio: 3 / 4;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    background: var(--slate-grey);
    border: 3px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
    overflow: hidden;
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.leader-title {
    color: var(--cyan-blue);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.leader-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.leader-social:hover {
    color: var(--electric-purple);
}

/* ==========================================================================
   6. Footer
   ========================================================================== */
.footer {
    background: #121216;
    /* slightly darker than slate */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-contact ul li,
.footer-links ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact ul li i {
    margin-top: 4px;
    color: var(--cyan-blue);
}

.footer-links a:hover {
    color: var(--electric-purple);
    padding-left: 5px;
}

.footer-social h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--electric-purple);
    color: #fff;
    border-color: var(--electric-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 6rem 0;
    position: relative;
    background: var(--deep-space);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-quote {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: #fff;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--electric-purple);
    background: rgba(138, 43, 226, 0.05);
    border-radius: 0 12px 12px 0;
    line-height: 1.4;
    position: relative;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
    background: var(--slate-grey);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--deep-space);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-panel {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(10, 10, 12, 1) 100%);
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-details-list li i {
    color: var(--cyan-blue);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-form-panel {
    padding: 4rem 3rem;
    background: var(--deep-space);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan-blue);
    background: rgba(26, 26, 36, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.contact-form select option {
    background: var(--slate-grey);
    color: #fff;
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Custom Cursor
   ========================================================================== */
body {
    cursor: none;
}

a,
button,
input,
select,
textarea {
    cursor: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan-blue);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--electric-purple);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

/* Hover Effect */
.cursor-outline.hover-active {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 43, 226, 0.15);
    border-color: rgba(0, 255, 255, 0.6);
}

/* ==========================================================================
   Floating AI Chatbot
   ========================================================================== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    font-size: 1.8rem;
    cursor: none;
    /* using our custom cursor */
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: var(--slate-grey);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-title {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-title i {
    color: var(--cyan-blue);
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: none;
}

.chatbot-close:hover {
    color: #fff;
}

.chatbot-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-body::-webkit-scrollbar {
    width: 6px;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.chat-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    background: rgba(26, 26, 36, 0.8);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-message {
    background: var(--electric-purple);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chatbot-input-area {
    padding: 1rem;
    background: var(--slate-grey);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.chatbot-input-area input:focus {
    outline: none;
    border-color: var(--cyan-blue);
}

.chatbot-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cyan-blue);
    color: var(--deep-space);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
}

.chatbot-send:hover {
    background: #fff;
}

/* Hide custom cursor on smaller screens / touch devices */
@media (max-width: 992px) {

    body,
    a,
    button,
    input,
    select,
    textarea {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* =========================
   MOBILE RESPONSIVE FIX
   ========================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        height: auto;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    /* Navbar Fix */
    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 0.8rem;
        max-width: 200px;
        line-height: 1.1;
    }

    .nav-logo-img {
        height: 50px;
        /* reduce big logo */
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: #0a0a0c;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-nav {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo-img {
        max-width: 250px;
    }

    /* Section spacing */
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Cards & Grids */
    .core-card {
        padding: 2rem 1.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
    }

    .leadership-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 0.7rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .dual-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-panel {
        padding: 2rem;
    }

    .header-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.4s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .cta-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .leadership-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact ul li,
    .footer-links ul li {
        justify-content: center;
    }
}