/* TeQtos Custom Styles */

/* Global Styles */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #f3f4f6; /* Light gray text for dark background */
    line-height: 1.6;
    background-color: #111827; /* Dark background */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Form Styles */
input,
textarea,
select {
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* Buttons */
button {
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bgPan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-bg-pan {
    animation: bgPan 20s ease-in-out infinite;
}

section {
    animation: fadeIn 0.6s ease;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }

    nav,
    footer {
        display: none;
    }
}

/* Global TeQtos visual system — applied across every public page. */
body.bg-gray-900,body.bg-gray-950,body.bg-gray-800{background-color:#070b18!important;background-image:linear-gradient(180deg,rgba(7,11,24,.83),rgba(7,11,24,.95)),url('../assets/images/backgrounds/teqtos-ambient.png')!important;background-size:cover!important;background-position:center top!important;background-attachment:fixed!important}
nav.bg-gray-900,footer,.bg-gray-900,.bg-gray-800,.bg-gray-950{background-color:rgba(8,13,29,.86)!important;backdrop-filter:blur(14px)}
.bg-gray-700,.platform-card{background:linear-gradient(145deg,rgba(30,41,71,.88),rgba(12,18,37,.9))!important;border-color:rgba(147,197,253,.18)!important;box-shadow:0 16px 45px rgba(0,0,0,.2)}
main,section{position:relative}.platform-btn,.bg-blue-500{background:linear-gradient(135deg,#4fd1ff,#7164f8)!important}.platform-btn:hover,.bg-blue-600:hover{filter:brightness(1.08)}
