﻿
/* ATAPIC Layout CSS - Complete Styling */
:root {
    --primary: #00a1a7;
    --primary-light: rgba(0, 161, 167, 0.1);
    --primary-dark: #008488;
    --secondary: #0d2e3e;
    --danger: #ea4335;
    --warning: #fbbc05;
    --light: #f8f9fa;
    --dark: #0d2e3e;
    --success: #0f9d58;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    background-color: #f0f2f5;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 0;
    color: var(--gray-800);
    line-height: 1.6;
}
/* PRIMARY ------------------------------------------------*/
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: var(--primary-d);
        border-color: var(--primary-d);
        color: var(--white);
        box-shadow: 0 0.25rem 1rem rgba(0,161,167,.35);
    }

/* SECONDARY ----------------------------------------------*/
.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        background: var(--secondary-d);
        border-color: var(--secondary-d);
        color: var(--white);
        box-shadow: 0 0.25rem 1rem rgba(13,46,62,.35);
    }

/* OPTIONAL – outlines that match the fills ---------------*/
.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background: var(--primary);
        color: var(--white);
    }

.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
}

    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus {
        background: var(--secondary);
        color: var(--white);
    }

/* Background gradients and shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 161, 167, 0.4);
    top: 10%;
    left: 5%;
    animation: float 25s infinite alternate;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(13, 46, 62, 0.3);
    bottom: 10%;
    right: 5%;
    animation: float 20s infinite alternate-reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 132, 136, 0.3);
    top: 40%;
    right: 25%;
    animation: float 18s infinite alternate;
}

/* Header Styles */
.modern-header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
}

    .navbar.scrolled {
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.98);
    }

.nav-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 35px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 16px;
    color: var(--gray-800);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary);
        background-color: var(--primary-light);
        transform: translateY(-2px);
    }

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 0.8rem;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 5px;
}

    .dropdown-item:hover {
        background-color: var(--primary-light);
        color: var(--primary);
        transform: translateX(5px);
    }

    .dropdown-item i {
        transition: all 0.3s ease;
        color: var(--gray-600);
    }

    .dropdown-item:hover i {
        color: var(--primary);
    }

.btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 161, 167, 0.3);
    }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

    .btn-outline-primary:hover {
        background: var(--primary-light);
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* Hero Section */
.hero-section {
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--secondary);
    }

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

/* Section Styling */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

/* Features Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

/* Robot Assistant */
.robot-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.robot-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .robot-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .robot-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--primary);
        z-index: -1;
        opacity: 0.4;
        animation: pulse 2s infinite;
    }

.robot-message {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 320px;
    margin-bottom: 15px;
    transform-origin: bottom right;
    animation: scaleIn 0.3s ease forwards;
    position: relative;
    display: none;
}

    .robot-message.show {
        display: block;
    }

    .robot-message::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid white;
    }

    .robot-message h5 {
        color: var(--primary);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .robot-message p {
        color: var(--gray-700);
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .robot-message .robot-mini-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .robot-message .form-control {
        border-radius: 8px;
        border: 1px solid var(--gray-300);
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .robot-message .btn {
        border-radius: 8px;
    }

.close-robot-message {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .close-robot-message:hover {
        color: var(--danger);
        transform: rotate(90deg);
    }

/* Footer Styles */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    border-radius: 30px 30px 0 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

    .footer::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
        z-index: 0;
    }

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }

        .footer-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -3px;
            left: 0;
            background-color: white;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

            .footer-links a:hover::after {
                width: 100%;
            }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.modal-header.bg-gradient-primary {
    border-bottom: none;
    padding: 20px;
}

.modal-header .modal-title {
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-body {
    padding: 25px;
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px var(--primary-light);
    }

/* AI Agents Section */
.ai-agents-section {
    background-color: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

    .ai-agents-section .section-title {
        color: white;
    }

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Agent Pods */
.agents-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.agent-pod {
    flex: 0 0 280px;
    position: relative;
    height: 320px;
}

.agent-pod-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.agent-pod:hover .agent-pod-inner {
    transform: rotateY(180deg);
}

.agent-front, .agent-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.agent-front {
    background: linear-gradient(145deg, #103140, #0b2530);
    box-shadow: inset 0 0 20px rgba(0, 161, 167, 0.15);
    border: 1px solid rgba(0, 161, 167, 0.2);
}

.agent-back {
    background: linear-gradient(145deg, #103140, #0b2530);
    transform: rotateY(180deg);
    border: 1px solid rgba(0, 161, 167, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .agent-back p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 20px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

.agent-learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

    .agent-learn-more:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .agent-learn-more:hover:after {
        width: 100%;
    }

    .agent-learn-more:hover {
        color: #4cc9ff;
    }

/* Agent Icon Styling */
.agent-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #103140, #0b2530);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(0, 161, 167, 0.2);
    border: 2px solid rgba(0, 161, 167, 0.3);
    z-index: 1;
}

    .agent-icon i {
        font-size: 2rem;
        color: var(--primary);
        text-shadow: 0 0 10px rgba(0, 161, 167, 0.5);
    }

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 161, 167, 0.2) 0%, transparent 70%);
    animation: pulse 2s infinite;
    z-index: -1;
}

/* Agent Status */
.agent-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00e676;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.status-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agent-front h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 10px 0;
    color: white;
}

/* Toast styling */
.toast-container .toast {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.toast-header {
    padding: 12px 15px;
    border-bottom: none;
}

.toast-body {
    padding: 15px;
}

/* Statistics Section */
.statistics {
    background-color: var(--dark);
    padding: 4rem 0;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Secondary Hero */
.secondary-hero {
    background-color: var(--dark);
    padding: 2rem 0;
    color: white;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: loading 2s linear infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, 40px) rotate(5deg);
    }

    100% {
        transform: translate(-40px, 20px) rotate(-5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes loading {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Container Base Styles */
.container-fluid {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-section h1 {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        position: static;
        padding: 0;
        border-radius: 0;
        display: none;
    }

    .show > .dropdown-menu {
        display: block;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
    }

    .navbar-collapse {
        background: white;
        margin-top: 15px;
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .robot-assistant {
        bottom: 20px;
        right: 20px;
    }

    .robot-message {
        max-width: 280px;
    }

    .agents-container {
        gap: 1.5rem;
    }

    .agent-pod {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 5rem 0 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .agents-container {
        gap: 1rem;
    }

    .agent-pod {
        flex: 0 0 100%;
        max-width: 280px;
        height: 280px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-auth-buttons {
        margin-top: 10px;
        flex-direction: column;
        width: 100%;
    }

        .nav-auth-buttons .btn {
            width: 100%;
            margin-right: 0 !important;
            margin-bottom: 8px;
        }

    .robot-assistant {
        bottom: 15px;
        right: 15px;
    }

    .robot-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .robot-message {
        max-width: 260px;
        right: 0;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Touch Device Support */
.touch-device .agent-pod-inner {
    transition: none;
}

.touch-device .agent-pod.touch-flip .agent-pod-inner {
    transform: rotateY(180deg);
}

/* Safari Mobile Fix */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
}

/* Mega Dropdown Styles */
.mega-dropdown {
    min-width: 600px !important;
    max-width: 700px !important;
    padding: 1.5rem !important;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    margin-top: 15px;
    background: white;
}

    .mega-dropdown .container-fluid {
        padding: 0;
    }

    .mega-dropdown .row {
        margin: 0;
        gap: 0;
    }

    .mega-dropdown .col-md-6 {
        padding: 0 15px;
    }

.dropdown-section {
    margin-bottom: 1rem;
}

    .dropdown-section:last-child {
        margin-bottom: 0;
    }

.mega-dropdown .dropdown-header {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600) !important;
    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.mega-dropdown .dropdown-item {
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-bottom: 6px;
    border: 1px solid transparent;
}

    .mega-dropdown .dropdown-item:hover {
        background-color: var(--primary-light);
        color: var(--primary);
        transform: translateX(8px);
        border-color: rgba(0, 161, 167, 0.2);
    }

    .mega-dropdown .dropdown-item i {
        transition: all 0.3s ease;
        width: 20px;
        text-align: center;
    }

    .mega-dropdown .dropdown-item:hover i {
        color: var(--primary);
        transform: scale(1.1);
    }

.mega-dropdown .dropdown-divider {
    margin: 1rem 0;
    border-color: rgba(0, 161, 167, 0.1);
    border-width: 1px;
}

/* Responsive adjustments for mega dropdown */
@media (max-width: 991.98px) {
    .mega-dropdown {
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
        position: static !important;
        transform: none !important;
    }

        .mega-dropdown .col-md-6 {
            padding: 0;
            margin-bottom: 1rem;
        }

            .mega-dropdown .col-md-6:last-child {
                margin-bottom: 0;
            }
}

/* Enhanced hover effects for desktop */
@media (min-width: 992px) {
    .dropdown:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-dropdown {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        display: block !important;
    }
}

/* Robot Logo Styling */
.robot-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes the logo white */
    transition: all 0.3s ease;
}

/* Optional: Remove filter on hover for original colors */
.robot-icon:hover .robot-logo {
    filter: none; /* Shows original logo colors on hover */
    transform: scale(1.1);
}

/* Alternative: Keep logo white and add glow effect on hover */
/*
.robot-icon:hover .robot-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}
*/
