:root {
    --primary: #008080;
    --primary-light: #00a8a8;
    --secondary: #FFC107;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #6366f1;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}

span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary);
    opacity: 0.2;
    z-index: -1;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary) !important;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: radial-gradient(circle at 90% 10%, rgba(0, 128, 128, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(255, 193, 7, 0.05) 0%, transparent 40%);
}

.hero-content {
    flex: 1;
    padding-left: 10%;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge {
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    animation: floating 6s ease-in-out infinite;
}

.glass-card img {
    max-width: 300px;
    width: 100%;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Director Section */
.director {
    padding: 100px 0;
    background: white;
}

.director-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.director-img img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.director-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.director-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.quote-card {
    margin-top: 2rem;
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    position: relative;
}

.quote-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

.achievements {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievements li {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.achievements i {
    color: var(--primary);
}

/* Agents Section */
.agents {
    padding: 100px 0;
    background: #f8fafc;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 1rem auto 4rem;
    max-width: 700px;
}

.agents-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.agent-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.agent-card:hover {
    transform: translateY(-10px);
}

.agent-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.agent-placeholder {
    margin-top: 2rem;
    padding: 2rem;
    background: #f1f5f9;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.agent-placeholder img {
    width: 60px;
    margin-bottom: 1rem;
}

.pulse-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.coming-soon {
    margin-top: 2rem;
    background: var(--dark);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
}

/* Values Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.values {
    padding: 80px 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content img {
    height: 60px;
    margin-bottom: 2rem;
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding: 0 2rem;
    }

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

    .director-grid {
        grid-template-columns: 1fr;
    }

    .agents-container {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Modal & Chat Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content.glass {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 500px;
    height: 600px;
    max-height: 90vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    display: flex;
    align-items: center;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 5px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #f8fafc;
}

.message-ai,
.message-user {
    padding: 1rem;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.95rem;
}

.message-ai {
    background: #e2e8f0;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.message-user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-input-area {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    outline: none;
    font-family: inherit;
}

.chat-input-area input:focus {
    border-color: var(--primary);
}

.chat-input-area button {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

/* Voice Immersive Overlay */
.voice-overlay {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.95) 0%, #060910 100%);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.voice-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.voice-content {
    text-align: center;
    color: white;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.avatar-container-immersive {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto 3rem;
    z-index: 1;
}

#aura-avatar-immersive {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 80px rgba(0, 128, 128, 0.5);
    transition: transform 0.3s ease;
}

.avatar-container-immersive.speaking #aura-avatar-immersive {
    transform: scale(1.05);
}

.voice-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--primary);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
    animation: aura-glow 3s infinite ease-in-out;
}

@keyframes aura-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.15;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.4;
    }
}

.voice-content h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

#voice-status {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.voice-controls {
    margin-top: 2rem;
}

.btn-danger-small {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(239, 68, 68, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.btn-danger-small:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.05);
}

/* Card Thumbnails */
.avatar-thumbnail {
    width: 200px;
    height: 200px;
    border-radius: 80%;
    border: 3px solid var(--primary);
    padding: 3px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.2);
    margin-bottom: 10px;
    overflow: hidden;
}

.avatar-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}